diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md new file mode 100644 index 00000000..a1884f6d --- /dev/null +++ b/.github/CHANGELOG.md @@ -0,0 +1,4 @@ +# Changelog + +## August 2023 +- refactor: Repo structural overhaul (date to be added) \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6f5c954b..46fa71a3 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -6,21 +6,6 @@ Thank you for your interest in contributing to the B78X Heavy project. Before yo > Keep in mind this list is not set in stone, and Asobo may unlock more of the files to allow 3rd party changes. -### Possible projects/changes ✅ -* All display frontends (Except EFB) -* Autopilot logic -* Custom Sounds (Engines, Cockpit, Switches, etc.) -* Flight Model and Behavior -* Lighting -* System Connections (e.g. Hydraulic systems affect on 3d model animations and flight behavior) - - -### Unable to alter/add due to encryption ❌ -* Forking into a separate aircraft from the default -* Alterations to the 3D model (e.g. EFB) -* Non-existing Animations -* Cockpit Textures/Text - ## Setup To get started, you'll need to download @@ -31,45 +16,25 @@ and install the following: 2. After installing an IDE you will need to install [node.js](https://nodejs.org/en/) and [git](https://git-scm.com/downloads) -3. Open the Command Prompt (Terminal for Mac users) and run the following two separately: -`npm install -g npm`, `npm install -g gulp-cli` - ->Q: "What is Gulp and why do I need it?"

->A: The B78XH isn't one Javascript application but rather a collection of applications working in sync.
->Normally you would need to run the following to build the aircraft in the simulator: - -* `npm run rollup HDSDK` -* `npm run rollup HDLogger` -* `npm run rollup HDFMC` -* `npm run build` - ->Gulp allows us to bundle these tasks into one command to make this task less tedious: +3. Open the B78XH [repository](https://github.com/Heavy-Division/B78XH.git) and create a fork (upper right corner) -* `gulp buildB78XH` + > It is highly recommended to use git bash as your default terminal -4. Open the B78XH [repository](https://github.com/Heavy-Division/B78XH.git) and create a fork (upper right corner) - - -5. Open the terminal in your IDE and type the following:
+4. Open the terminal in your IDE and type the following:
`git clone ` -6. In the terminal, create a new branch based off the ***main*** with a clear name of what you are changing. (e.g. adding sound files for engines):
+5. In the terminal, create a new branch based off the ***main*** with a clear name of what you are changing. (e.g. adding sound files for engines):
`git branch engine-custom-sounds main` -7. Run the following in the terminal:
-`npm i` ->Installs all of the required packages to run the mod - -8. If working on displays such as the FMC you will need to download the [msfs web developer kit](https://github.com/dga711/msfs-webui-devkit) and extract the zipfile to your community folder.

- -9. Once you've installed the web dev kit, download the [Core html_ui file](https://cdn.discordapp.com/attachments/915345919690555412/966878170479476806/Core.zip) and extract it to the following directory: - -B78XH/html_ui/Pages/VCockpit - -11. Remove/delete the current version of the B78XH in your community folder if you haven't already and use a [symbolic link program](https://schinagl.priv.at/nt/hardlinkshellext/HardLinkShellExt_X64.exe) to link the B78XH folder you are developing to your community folder. In the IDE terminal, run `gulp buildDEV`. Once the manifest is created, enter the src directory by typing `cd src` then build the aircraft by typing `gulp monitor`. Once you're done you can open the sim, and you're all set to begin developing the 787-10 Heavy! +6. Run the following in the terminal:
+ - `npm i` + - `cd src` + - `npm i` + - `cd ..` +7. Make your changes in the 'src' files or base aircraft package, and run `npm build:b78xh` # Pull Requests We welcome pull requests with fixes and improvements to the project. diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..801e18a7 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +open_collective: heavy-division-simulations \ No newline at end of file diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml index 04660882..3ccacec7 100644 --- a/.github/workflows/discord.yml +++ b/.github/workflows/discord.yml @@ -1,10 +1,10 @@ on: push: branches: - - 'main' + - 'experimental' jobs: - disord_message: + discord_message: runs-on: ubuntu-latest name: discord commits steps: @@ -22,6 +22,6 @@ jobs: uses: Sniddl/discord-commits@v1.3 with: webhook: ${{ secrets.DISCORD_WEBHOOK }} - message: "Successful commit to **{{ github.context.payload.repository.owner.name }}/{{ github.context.payload.repository.name}}**.\nDiff: {{ github.context.payload.compare }}" + message: "**EXPERIMENTAL BRANCH**: Successful commit to **{{ github.context.payload.repository.owner.name }}/{{ github.context.payload.repository.name}}**.\nDiff: {{ github.context.payload.compare }}" embed: '{ "title": "{{ commit.title }}", "description": "{{ commit.description }}", "url": "{{ commit.url }}", "author": { "name": "{{ commit.author.name }} ({{ commit.author.username }})", "icon_url": "https://avatars.io/gravatar/{{ commit.author.email }}"} }' - last-commit-only: false + last-commit-only: false \ No newline at end of file diff --git a/.gitignore b/.gitignore index a8d57486..200efe33 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,10 @@ todo.yml /src/dist/ /src/build /src/node_modules -/html_ui/Pages/VCockpit/Core \ No newline at end of file +/src/base/hd-aircraft-b78xh/html_ui/Pages/VCockpit/Core +/src/base/hd-aircraft-b78x/*.locPak +/src/base/hd-aircraft-b78x/manifest.json +/src/base/hd-aircraft-b78x/layout.json +/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/b78xh.wasm +*.wasm +/out diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..1e1edf10 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "wasm"] + path = src/wasm + url = https://github.com/Heavy-Division/B78XH-wasm.git diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..7d576baa --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "windowsSdkVersion": "10.0.19041.0", + "compilerPath": "cl.exe", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "windows-msvc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..5c7247b4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,7 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..71a09368 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,68 @@ +{ + "files.associations": { + "cmath": "cpp", + "algorithm": "cpp", + "cctype": "cpp", + "chrono": "cpp", + "codecvt": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "deque": "cpp", + "exception": "cpp", + "filesystem": "cpp", + "fstream": "cpp", + "functional": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "ios": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "istream": "cpp", + "iterator": "cpp", + "limits": "cpp", + "list": "cpp", + "locale": "cpp", + "map": "cpp", + "memory": "cpp", + "new": "cpp", + "ostream": "cpp", + "queue": "cpp", + "ratio": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "string": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "thread": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "typeinfo": "cpp", + "unordered_map": "cpp", + "utility": "cpp", + "variant": "cpp", + "vector": "cpp", + "xfacet": "cpp", + "xhash": "cpp", + "xiosbase": "cpp", + "xlocale": "cpp", + "xlocbuf": "cpp", + "xlocinfo": "cpp", + "xlocmes": "cpp", + "xlocmon": "cpp", + "xlocnum": "cpp", + "xloctime": "cpp", + "xmemory": "cpp", + "xmemory0": "cpp", + "xstddef": "cpp", + "xstring": "cpp", + "xtr1common": "cpp", + "xtree": "cpp", + "xutility": "cpp" + } +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..2f5a1f9a --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,29 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: clang++.exe build active file", + "command": "C:\\Program Files\\LLVM\\bin\\clang++.exe", + "args": [ + "-fcolor-diagnostics", + "-fansi-escape-codes", + "-g", + "${file}", + "-o", + "${fileDirname}\\${fileBasenameNoExtension}.exe" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 292d9f6c..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,19 +0,0 @@ -# Changelog - -## [Unreleased] - -### Added - - VNAV CLB CRZ altitude is highlighted by magenta when CRZ altitude is commanded by FMC - - Option to permanently hide Heavy managers from FMC - - Support for leveling off during climb - - Whenever the airplane is leveled off because of MCP altitude during climb phase, setting new altitude in the MCP altitude window and pushing the altitude selector continues the climb. - -### Changed - - Altitude intervention overrides CRZ altitude only when MCP altitude window is set above CRZ altitude - - Aircraft switch to "VNAV ALT" mode and level off at MCP window altitude when the altitude is set to a value below CRZ altitude - -### Removed - - Removed strings from VNAV CRZ page - "pause @ TOD" and so on - - Removed ASOBO implementation of overriding CRZ Altitude by MCP altitude knob without pushing altitude intervention - -[unreleased]: https://github.com/Heavy-Division/B78XHL/compare/v.0.1.3...main \ No newline at end of file diff --git a/DOCS/images/map/default/ICON_MAP_AIRPORT.png b/DOCS/images/map/default/ICON_MAP_AIRPORT.png deleted file mode 100644 index 38f2c578..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_AIRPORT.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_INTERSECTION.png b/DOCS/images/map/default/ICON_MAP_INTERSECTION.png deleted file mode 100644 index 38044beb..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_INTERSECTION.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN.png b/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN.png deleted file mode 100644 index 6c2f8264..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png b/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png deleted file mode 100644 index 073f22eb..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_VOR.png b/DOCS/images/map/default/ICON_MAP_VOR.png deleted file mode 100644 index 9683f237..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_VOR.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_VOR_DME.png b/DOCS/images/map/default/ICON_MAP_VOR_DME.png deleted file mode 100644 index 00d914f6..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_VOR_DME.png and /dev/null differ diff --git a/DOCS/images/map/default/ICON_MAP_VOR_TACAN.png b/DOCS/images/map/default/ICON_MAP_VOR_TACAN.png deleted file mode 100644 index 00d914f6..00000000 Binary files a/DOCS/images/map/default/ICON_MAP_VOR_TACAN.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_AIRPORT.png b/DOCS/images/map/heavy/ICON_MAP_AIRPORT.png deleted file mode 100644 index c41c4755..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_AIRPORT.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION.png b/DOCS/images/map/heavy/ICON_MAP_INTERSECTION.png deleted file mode 100644 index 53d598c7..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN.png b/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN.png deleted file mode 100644 index 7a451f55..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png b/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png deleted file mode 100644 index 4edd85e2..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_VOR.png b/DOCS/images/map/heavy/ICON_MAP_VOR.png deleted file mode 100644 index 62327a72..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_VOR.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_VOR_DME.png b/DOCS/images/map/heavy/ICON_MAP_VOR_DME.png deleted file mode 100644 index 26da7d60..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_VOR_DME.png and /dev/null differ diff --git a/DOCS/images/map/heavy/ICON_MAP_VOR_TACAN.png b/DOCS/images/map/heavy/ICON_MAP_VOR_TACAN.png deleted file mode 100644 index 3bf4277f..00000000 Binary files a/DOCS/images/map/heavy/ICON_MAP_VOR_TACAN.png and /dev/null differ diff --git a/DOCS/images/map/nd_banana.png b/DOCS/images/map/nd_banana.png deleted file mode 100644 index b1ee51f9..00000000 Binary files a/DOCS/images/map/nd_banana.png and /dev/null differ diff --git a/DOCS/images/map/nd_default.png b/DOCS/images/map/nd_default.png deleted file mode 100644 index 3f0ef245..00000000 Binary files a/DOCS/images/map/nd_default.png and /dev/null differ diff --git a/DOCS/images/map/nd_heavy.png b/DOCS/images/map/nd_heavy.png deleted file mode 100644 index 9cf2cb3b..00000000 Binary files a/DOCS/images/map/nd_heavy.png and /dev/null differ diff --git a/DOCS/images/simrate-manager/simrate-manager.png b/DOCS/images/simrate-manager/simrate-manager.png deleted file mode 100644 index 2cf5b357..00000000 Binary files a/DOCS/images/simrate-manager/simrate-manager.png and /dev/null differ diff --git a/Data/DSEG-LICENSE.txt b/DSEG-LICENSE.txt similarity index 100% rename from Data/DSEG-LICENSE.txt rename to DSEG-LICENSE.txt diff --git a/Data/LICENSE_OFL.txt b/LICENSE_OFL.txt similarity index 100% rename from Data/LICENSE_OFL.txt rename to LICENSE_OFL.txt diff --git a/ModelBehaviorDefs/Asobo/Airliner/AirlinerCommon.xml b/ModelBehaviorDefs/Asobo/Airliner/AirlinerCommon.xml deleted file mode 100644 index 67d55cb0..00000000 --- a/ModelBehaviorDefs/Asobo/Airliner/AirlinerCommon.xml +++ /dev/null @@ -1,1232 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Asobo/Common/Index.xml b/ModelBehaviorDefs/Asobo/Common/Index.xml deleted file mode 100644 index a19713ce..00000000 --- a/ModelBehaviorDefs/Asobo/Common/Index.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Asobo/Generic/Index.xml b/ModelBehaviorDefs/Asobo/Generic/Index.xml deleted file mode 100644 index 420051ee..00000000 --- a/ModelBehaviorDefs/Asobo/Generic/Index.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Development/CDUFix.xml b/ModelBehaviorDefs/Development/CDUFix.xml deleted file mode 100644 index a9740815..00000000 --- a/ModelBehaviorDefs/Development/CDUFix.xml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Development/COMCpp.xml b/ModelBehaviorDefs/Development/COMCpp.xml deleted file mode 100644 index addc829e..00000000 --- a/ModelBehaviorDefs/Development/COMCpp.xml +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Development/Index.xml b/ModelBehaviorDefs/Development/Index.xml deleted file mode 100644 index a4076528..00000000 --- a/ModelBehaviorDefs/Development/Index.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Airliner/Common.xml b/ModelBehaviorDefs/Heavy/Airliner/Common.xml deleted file mode 100644 index cd32c3ed..00000000 --- a/ModelBehaviorDefs/Heavy/Airliner/Common.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Airliner/Index.xml b/ModelBehaviorDefs/Heavy/Airliner/Index.xml deleted file mode 100644 index d57c9470..00000000 --- a/ModelBehaviorDefs/Heavy/Airliner/Index.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Extensions/Animations.xml b/ModelBehaviorDefs/Heavy/Extensions/Animations.xml deleted file mode 100644 index 987e718d..00000000 --- a/ModelBehaviorDefs/Heavy/Extensions/Animations.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Extensions/Emissive.xml b/ModelBehaviorDefs/Heavy/Extensions/Emissive.xml deleted file mode 100644 index 31c9a32f..00000000 --- a/ModelBehaviorDefs/Heavy/Extensions/Emissive.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Extensions/Index.xml b/ModelBehaviorDefs/Heavy/Extensions/Index.xml deleted file mode 100644 index d15f35bb..00000000 --- a/ModelBehaviorDefs/Heavy/Extensions/Index.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Extensions/Interactions.xml b/ModelBehaviorDefs/Heavy/Extensions/Interactions.xml deleted file mode 100644 index 4ae9831a..00000000 --- a/ModelBehaviorDefs/Heavy/Extensions/Interactions.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - \ No newline at end of file diff --git a/ModelBehaviorDefs/Heavy/Index.xml b/ModelBehaviorDefs/Heavy/Index.xml deleted file mode 100644 index 6663980b..00000000 --- a/ModelBehaviorDefs/Heavy/Index.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/README.md b/README.md index 7d4ad119..6a9ea3b6 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ + + +![Heavy Division](https://github.com/Heavy-Division/branding/blob/main/src/svg/Logo%20Dark.svg#gh-dark-mode-only) +![Heavy Division](https://github.com/Heavy-Division/branding/blob/main/src/svg/Logo%20Light.svg#gh-light-mode-only) # B78XH (B787-10 Heavy) [![Discord](https://img.shields.io/discord/808476259016769546?color=7289da&logoColor=ffffff&labelColor=99aab5&logo=discord&label=)](https://discord.gg/CfHuVbWfpQ) @@ -5,110 +9,56 @@ ## About -B78XH is an open source and free modification of default Boeing 787-10 in Microsoft Flight Simulator. +B78XH is a free and open source modification of the default Boeing 787-10 for Microsoft Flight Simulator. -## Normal vs WO release +## Installation -WO release is same as normal release but the release does not contain managers. (Payload and SimRate manager) +Download the latest stable, development, or experimental version +from [our website](https://hdsimulations.com/downloads/) -## Installation +The latest release available at https://github.com/Heavy-Division/B78XH/releases will be the latest stable version. + +## Features + +- Basic functional VNAV and LNAV behaviors +- simBrief flight planning implementation +- IRS Functionality +- Fuel and Payload Manager +- Re-design of FMC interface to reflect the real version +- Replaced default ND icons with real versions + +Read the full [feature guide](.github/FEATURES.md) for a more detailed overview of B78XH features. + +## Contributing +Read our [contributing guide](.github/CONTRIBUTING.md) to get started. + +## Known Issues +Please read our [known issues](https://github.com/Heavy-Division/docs/blob/main/docs/B78XH/support/reported-issues.md) list before reporting bugs or asking for support. + +## FAQ + +### When is the Next Update? + +We don't know when the next update will be. We do not enforce deadlines on our volunteer developers and value high-quality and polished releases +over quick and unfinished ones. + +### How do I join the team? + +Applications for developers are available [here](https://docs.google.com/forms/d/e/1FAIpQLSflPA5f4-qopkpgG_MAc46ooBJGWygljyPTCBlr2COsOK6G3w/viewform) + +### Is it payware? +No, it is completely free and open-source. However, you must own the Premium Deluxe DLC for Microsoft Flight Simulator to use the modification. + +### Where do we report bugs? +Report bugs using the github [issues](https://github.com/Heavy-Division/B78XH/issues/new/choose) tab. + +### Where is the plane in-sim? +The B78XH is a modification of the default premium deluxe aircraft, it will not appear as separate from the default. +You need to own the premium deluxe version of MSFS to use the Heavy Division Mod. + +### Is this "study-level" ? +While we are dedicated to bringing the most accurate 787 simulation to the platform, "study-level" would not be an +appropriate term, as it connotes FAA certification and licensing which we do not have the resources for. -To install, download the [latest release](https://github.com/Heavy-Division/B78XH/releases) zip and extract it to your Community folder. - -## Development build - -The zip containing the development build can be downloaded here: https://github.com/Heavy-Division/B78XH/archive/refs/heads/main.zip - -## Features Overview - -* ### FMC - * #### VNAV - * CLB Speed restriction - * CLB Selected speed - * CLB Selected speed can be deleted by ECON prompt - * CLB settable transition altitude - * CLB FMC commanded speed is highlighted by magenta - * CLB page title depends on commanded speed (ACT/MOD ECON CLB, ACT/MOD xxxKT CLB, ...) - * CRZ settable selected speed - * CRZ FMC commanded speed is highlighted by magenta - * CRZ Selected speed can be deleted by ECON prompt - * CRZ page title depends on commanded speed (ACT/MOD ECON CRZ, ACT/MOD xxxKT CRZ, ...) - * Cruise Climb - * Cruise Descent - * Early descent (descent path calculation not supported now) - * DES NOW (descent path calculation not supported now) - * Climb leveling off - * #### LEGS - * Cruise speed fixed - * DIRECT TO (basic) - * #### ROUTE - * Airways support - * All waypoints between first and last added waypoint are inserted to Legs page - * #### MISC - * "HEAVY" button added (misc & configuration of mod) - -* ### ND/MFD - * MFD is touchable on both sides - * ND symbols changed to default Boeing symbols - * Altitude Range Arc (ARA) [Green banana] - * TOD - * TOC - -* ### EICAS / SYS - * Gears synoptic page - * Hydraulics synoptic page - * Stat page - * FCTL synoptic page - * AIR synoptic page (static) - -* ### MISC - * Added HEAVY configuration page - * Payload Manager added to HEAVY configuration page - * SimRate Manager added to HEAVY configuration page - -* ### Payload manager - * CG range 0 - 100% - * FOB range 0 - 33384 Gallons - * Payload range 0 - 560000 Pounds - * FOB can be set only in Gallons - * Payload can be set only in Pounds - * Fuel tanks priority groups: - * LEFT MAIN, RIGHT MAIN - * CENTER - * "new" ZFW is set automatically by payload manager - * manager do not check "GrossWeight" > "Max takeoff weight" (you can overload an aircraft) - -* ### SimRate manager - * Modes: - * slow down - change sim rate to 1x few miles before TOD or DECEL waypoint - * pause - pause game few miles before TOD or DECEL waypoint - * Rate Modes: - * Off - do nothing (do not change sim rate) - * Linear - Change sim rate to 4x and hold. - * Normal - Change sim rate to 4x and hold. 5nm before waypoint change sim rate to 2x and hold. 3nm after waypoint change sim rate to 4x and hold. - * Aggressive - change sim rate to 8x and hold (!!!Do not use this mode now!!!) - * Unpause button - unpause game when the game is paused by sim rate manager (this is the only way how to unpause game) - * Emergency shutdown - Terminates all sim rate manager interventions immediately. During an emergency shutdown is not possible to use FMC for 6 seconds. You will be able to deactivate an emergency shutdown or leave the page without deactivation after 6 seconds. - -# ND - -| Default MSFS 787 ND | B787-10 Heavy ND| -|---------------------|-----------------| -||| - -| Symbol (default) | Symbol (Heavy) | Name |ND Mode | Remarks | -|:---------------------:|:-----------------:|------|--------|---------| -|||Off route waypoint||| -|||Waypoint inactive||| -|||Waypoint active||| -|||Airport||| -|||VOR||| -|||VOR/DME||| -|||TACAN||| -|||VORTAC||| - -# ND - Altitude prediction (BANANA) - - -# SimRate Manager - +### Will [X] be implemented in the future? +The general rule of thumb is if it's in the real aircraft, it will be implemented with ours with some limitations until further notice due to copyright (3D model changes). \ No newline at end of file diff --git a/SimObjects/Airplanes/Asobo_B787_10/panel/B78XH-wasm.wasm b/SimObjects/Airplanes/Asobo_B787_10/panel/B78XH-wasm.wasm deleted file mode 100644 index c6ea461f..00000000 Binary files a/SimObjects/Airplanes/Asobo_B787_10/panel/B78XH-wasm.wasm and /dev/null differ diff --git a/buildScripts/b78xh.js b/buildScripts/b78xh.js new file mode 100644 index 00000000..b3ea251c --- /dev/null +++ b/buildScripts/b78xh.js @@ -0,0 +1,37 @@ +const fs = require('fs'); +const path = require('path'); + +function copyFiles(srcDir, destDir) { + const ignoreFiles = ['manifest-base.json']; + + if (fs.existsSync(destDir)) { + fs.rmSync(destDir, { recursive: true }); + } + + fs.mkdirSync(destDir, { recursive: true }); + + const files = fs.readdirSync(srcDir); + + files.forEach((file) => { + if (ignoreFiles.includes(file)) { + return; + } + + const srcFile = path.join(srcDir, file); + const destFile = path.join(destDir, file); + + const stat = fs.statSync(srcFile); + + if (stat.isDirectory()) { + copyFiles(srcFile, destFile); + } else { + fs.copyFileSync(srcFile, destFile); + } + }); +} + +const srcDirectory = 'src/base/hd-aircraft-b78x'; +const destDirectory = 'out/hd-aircraft-b78x'; + +copyFiles(srcDirectory, destDirectory); +console.log(`Copied contents from ${srcDirectory} to ${destDirectory}`); diff --git a/buildScripts/locPak.js b/buildScripts/locPak.js new file mode 100644 index 00000000..f44eecaf --- /dev/null +++ b/buildScripts/locPak.js @@ -0,0 +1,26 @@ +const fs = require('fs'); +const path = require('path'); + +// Copies the localization files to the simulator package +function copyLocPakFiles(srcDir, destDir) { + if (!fs.existsSync(destDir)) { + fs.mkdirSync(destDir, { recursive: true }); + } + + const files = fs.readdirSync(srcDir); + + files.forEach((file) => { + if (file.endsWith('.locPak')) { + const srcFile = path.join(srcDir, file); + console.log(`copying ${file}`) + const destFile = path.join(destDir, file); + fs.copyFileSync(srcFile, destFile); + } + }); +} + +const srcDirectory = 'src/localization/msfs'; +const destDirectory = 'src/base/hd-aircraft-b78x'; + +copyLocPakFiles(srcDirectory, destDirectory); +console.log(`Copied .locPak files from ${srcDirectory} to ${destDirectory}`); diff --git a/gulpfile.js b/gulpfile.js index 2d7ec3c2..f4fe8231 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -8,6 +8,7 @@ const pipeline = require('readable-stream').pipeline; const mergeStream = require('merge-stream'); const rollup = require('gulp-rollup'); const ts = require('gulp-typescript'); +const { packageJson } = require('./package.json'); /** Default mathjs configuration does not support BigNumbers */ @@ -29,10 +30,10 @@ var packageSize = 0; /** Directories configuration **/ /** Directories for layout and manifest **/ -const directoriesToProcess = ['./**', '!*.*', '!*', '!./html_ui/Pages/VCockpit/Core/**', '!./DOCS/**', '!./build/**', '!./release/**', '!./node_modules/**', '!./src/**']; -const directoriesToProcessDEV = ['./**', '!*.*', '!*', '!./DOCS/**', '!./build/**', '!./release/**', '!./node_modules/**', '!./src/**']; +const directoriesToProcess = ['./src/base/hd-aircraft-b78x/**/*']; +const directoriesToProcessDEV = ['`./**', '!*.*', '!*', '!./docs/**', '!./build/**', '!./release/**', '!./node_modules/**', '!./src/**', './*.locPak']; /** Directories for release**/ -const directoriesToRelease = ['./**', '!*', 'LICENSE', 'thirdparty_licenses.txt', './manifest.json', './layout.json', '!./html_ui/Pages/VCockpit/Core/**', '!./DOCS/**', '!./build/**', '!./release/**', '!./node_modules/**', '!./src/**']; +const directoriesToRelease = ['./**', '!*', 'LICENSE', 'thirdparty_licenses.txt', './manifest.json', './layout.json', '!./html_ui/Pages/VCockpit/Core/**', '!./docs/**', '!./build/**', '!./release/**', '!./node_modules/**', '!./src/**', './*.locPak']; /** Internal Transformers */ const _prepareLayoutFile = (data) => { @@ -61,21 +62,28 @@ function log(message, color = TerminalColors.default) { console.log(color + message + TerminalColors.default); } + const _updateManifest = () => { log('Updating manifest.json.', TerminalColors.yellow); - let originalManifest = fs.readFileSync('manifest.json').toString(); - let manifestJson = JSON.parse(originalManifest); + + const baseManifestPath = './src/base/hd-aircraft-b78x/manifest-base.json'; + let baseManifest = fs.readFileSync(baseManifestPath).toString(); + let manifestJson = JSON.parse(baseManifest); manifestJson.total_package_size = String(packageSize).padStart(20, '0'); - fs.writeFile('manifest.json', JSON.stringify(manifestJson, null, 4), () => { + const manifestPath = './src/base/hd-aircraft-b78x/manifest.json'; + fs.writeFileSync(manifestPath, JSON.stringify(manifestJson, null, 4), () => { }); log('manifest.json updated.', TerminalColors.green); -}; + + process.exit(0); + }; + const copyPackageVersion = () => { - let originalManifest = fs.readFileSync('manifest.json').toString(); + let originalManifest = fs.readFileSync(manifestPath).toString(); let manifestJson = JSON.parse(originalManifest); let version = {}; - version.package_version = manifestJson.package_version; + version.package_version = packageJson.version; let versionChunks = manifestJson.package_version.replace(/\./g, '-').split('-'); let versionChunks2 = versionChunks; if (versionChunks.length < 4) { @@ -88,8 +96,9 @@ const copyPackageVersion = () => { const version2String = versionChunks.join('-'); version.fms_man_version = 'HD-P' + versionString; version.fms_bak_version = 'HD-C' + version2String; + const b78xhJsonPath = './src/base/hd-aircraft-b78x/html_ui/B78XH/b78xh.json'; - fs.writeFile('./html_ui/b78xh/b78xh.json', JSON.stringify(version, null, 4), () => { + fs.writeFile(b78xhJsonPath, JSON.stringify(version, null, 4), () => { console.log('version copied successfully.'); }); }; @@ -120,8 +129,9 @@ function buildTask() { ).on('data', function (data) { _prepareLayoutFile(data); }).on('end', function () { + const outFile = './src/base/hd-aircraft-b78x/layout.json' log('Creating layout.json', TerminalColors.yellow); - fs.writeFile('layout.json', JSON.stringify(layoutOutput, null, 4), _updateManifest); + fs.writeFile(outFile, JSON.stringify(layoutOutput, null, 4), _updateManifest); log('layout.json created.', TerminalColors.green); }); } @@ -149,7 +159,8 @@ function buildDEVTask() { _prepareLayoutFile(data); }).on('end', function () { log('Creating layout.json', TerminalColors.yellow); - fs.writeFile('layout.json', JSON.stringify(layoutOutput, null, 4), _updateManifest); + const layoutJsonPath = './src/base/hd-aircraft-b78x/layout.json' + fs.writeFile(layoutJsonPath, JSON.stringify(layoutOutput, null, 4), _updateManifest); log('layout.json created.', TerminalColors.green); }); } @@ -180,7 +191,7 @@ function deleteReleaseCache(callback) { } function bumpTask(callback) { - return gulp.src('./manifest.json') + return gulp.src('./src/base/hd-aircraft-b78x/manifest.json') .pipe(bump()) .pipe(gulp.dest('./')).on('end', function () { copyPackageVersion(); @@ -283,7 +294,7 @@ function copyHDLoggerTask() { function copyInstrumentsTask() { return pipeline( gulp.src('build/cache/instruments/**/*'), - gulp.dest('html_ui/Pages/VCockpit/Instruments') + gulp.dest('./src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments') ); } diff --git a/html_ui/B78XH/b78xh.json b/html_ui/B78XH/b78xh.json deleted file mode 100644 index 826783f0..00000000 --- a/html_ui/B78XH/b78xh.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "package_version": "0.1.15-5", - "fms_man_version": "HD-P000-1-15-5", - "fms_bak_version": "HD-C000-1-15-5" -} \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.html b/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.html deleted file mode 100644 index 37fac9e8..00000000 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/layout.json b/layout.json deleted file mode 100644 index 627dac11..00000000 --- a/layout.json +++ /dev/null @@ -1,1054 +0,0 @@ -{ - "content": [ - { - "path": "Data/DSEG-LICENSE.txt", - "size": 4485, - "date": 133125132068948130 - }, - { - "path": "Data/DSEG7ClassicMini-Italic.ttf", - "size": 23452, - "date": 133125132068948130 - }, - { - "path": "Data/entypo.ttf", - "size": 35392, - "date": 133125132069038130 - }, - { - "path": "Data/Heavy787FMC.ttf", - "size": 11704, - "date": 133125132068958130 - }, - { - "path": "Data/LICENSE_OFL.txt", - "size": 4393, - "date": 133125132068958130 - }, - { - "path": "Data/NotoEmoji-Regular.ttf", - "size": 418804, - "date": 133125132068998130 - }, - { - "path": "Data/Roboto-Bold.ttf", - "size": 135820, - "date": 133125132069008130 - }, - { - "path": "Data/Roboto-Light.ttf", - "size": 140276, - "date": 133125132069018130 - }, - { - "path": "Data/Roboto-Regular.ttf", - "size": 145348, - "date": 133125132069038130 - }, - { - "path": "html_ui/B78XH/b78xh.json", - "size": 123, - "date": 133125132069718130 - }, - { - "path": "html_ui/plans/plan.pln", - "size": 0, - "date": 133125132070578880 - }, - { - "path": "ModelBehaviorDefs/Development/CDUFix.xml", - "size": 4299, - "date": 133125132069068130 - }, - { - "path": "ModelBehaviorDefs/Development/COMCpp.xml", - "size": 14177, - "date": 133125132069078130 - }, - { - "path": "ModelBehaviorDefs/Development/Index.xml", - "size": 119, - "date": 133125132069078130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Index.xml", - "size": 137, - "date": 133125132069108130 - }, - { - "path": "html_ui/B78XH/Autopilot/B78XHNavModeSelector.js", - "size": 57897, - "date": 133125132069598130 - }, - { - "path": "html_ui/B78XH/DataHolders/HeavyDataHolder.js", - "size": 713, - "date": 133125132069618130 - }, - { - "path": "html_ui/B78XH/Directors/SpeedDirector.js", - "size": 18791, - "date": 133125132069638130 - }, - { - "path": "html_ui/B78XH/Managers/FMCMessagesManager.js", - "size": 1061, - "date": 133125132069688130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_APU.js", - "size": 2761, - "date": 133125132069698130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_APUInfo.js", - "size": 764, - "date": 133125132069698130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_Initializer.js", - "size": 5583, - "date": 133125132069708130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_IRS.js", - "size": 8531, - "date": 133125132069708130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_Systems.js", - "size": 2195, - "date": 133125132069718130 - }, - { - "path": "html_ui/B78XH/Systems/B78XH_SystemsInfo.js", - "size": 487, - "date": 133125132069718130 - }, - { - "path": "html_ui/Heavy/Enums/B78XH_EICAS_Messages.js", - "size": 108237, - "date": 133125132069918880 - }, - { - "path": "html_ui/Heavy/Enums/B78XH_LocalVariables.js", - "size": 4155, - "date": 133125132069918880 - }, - { - "path": "html_ui/Heavy/fonts/Heavy787FMC.otf", - "size": 9672, - "date": 133125132069948900 - }, - { - "path": "html_ui/Heavy/libs/hdlogger.js", - "size": 108888, - "date": 133125132069968900 - }, - { - "path": "html_ui/Heavy/libs/hdsdk.js", - "size": 92962, - "date": 133125132069978900 - }, - { - "path": "html_ui/Heavy/Utils/HeavyDataStorage.js", - "size": 1254, - "date": 133125132069918880 - }, - { - "path": "html_ui/Heavy/Utils/HeavyEventDispatcher.js", - "size": 3610, - "date": 133125132069928880 - }, - { - "path": "html_ui/Heavy/Utils/HeavyUpdateDelayer.js", - "size": 894, - "date": 133125132069938880 - }, - { - "path": "html_ui/Heavy/Utils/HeavyUtils.js", - "size": 3512, - "date": 133125132069938880 - }, - { - "path": "html_ui/Heavy/Utils/UpdateDelayer.js", - "size": 1484, - "date": 133125132069948900 - }, - { - "path": "html_ui/WTPages/Autopilot/AutopilotMath.js", - "size": 9673, - "date": 133125132070498880 - }, - { - "path": "html_ui/WTPages/Autopilot/HoldsDirector.js", - "size": 21694, - "date": 133125132070508880 - }, - { - "path": "html_ui/WTPages/Autopilot/LNavDirector.js", - "size": 28552, - "date": 133125132070508880 - }, - { - "path": "html_ui/WTPages/Autopilot/LocDirector.js", - "size": 4313, - "date": 133125132070518880 - }, - { - "path": "html_ui/WTPages/Autopilot/WT_BaseVnav.js", - "size": 42352, - "date": 133125132070528880 - }, - { - "path": "html_ui/WTPages/Autopilot/WT_VnavAutopilot.js", - "size": 56371, - "date": 133125132070528880 - }, - { - "path": "html_ui/WTPages/WTLibs/DataStore.js", - "size": 4219, - "date": 133125132070538880 - }, - { - "path": "html_ui/WTPages/WTLibs/LzUtf8.js", - "size": 32045, - "date": 133125132070538880 - }, - { - "path": "html_ui/WTPages/WTLibs/wtsdk.js", - "size": 270867, - "date": 133125132070568880 - }, - { - "path": "html_ui/WTPages/WTLibs/WT_GCMath.js", - "size": 52924, - "date": 133125132070548880 - }, - { - "path": "html_ui/WTPages/WTLibs/WT_SimPlaneMod.js", - "size": 675, - "date": 133125132070548880 - }, - { - "path": "ModelBehaviorDefs/Asobo/Airliner/AirlinerCommon.xml", - "size": 55741, - "date": 133125132069058130 - }, - { - "path": "ModelBehaviorDefs/Asobo/Common/Index.xml", - "size": 685, - "date": 133125132069058130 - }, - { - "path": "ModelBehaviorDefs/Asobo/Generic/Index.xml", - "size": 470, - "date": 133125132069068130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Airliner/Common.xml", - "size": 5144, - "date": 133125132069088130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Airliner/Index.xml", - "size": 77, - "date": 133125132069088130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Extensions/Animations.xml", - "size": 1052, - "date": 133125132069088130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Extensions/Emissive.xml", - "size": 4170, - "date": 133125132069098130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Extensions/Index.xml", - "size": 228, - "date": 133125132069098130 - }, - { - "path": "ModelBehaviorDefs/Heavy/Extensions/Interactions.xml", - "size": 1252, - "date": 133125132069108130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/engines.cfg", - "size": 7196, - "date": 133125132069508130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/flight_model.cfg", - "size": 31826, - "date": 133125115077362690 - }, - { - "path": "html_ui/B78XH/DataHolders/FMC/FMCDataHolder.js", - "size": 246, - "date": 133125132069608130 - }, - { - "path": "html_ui/B78XH/DataHolders/FMC/PreFlightDataHolder.js", - "size": 5280, - "date": 133125132069618130 - }, - { - "path": "html_ui/B78XH/DataHolders/FMC/FMCMessagesHolder.js", - "size": 1551, - "date": 133125132069608130 - }, - { - "path": "html_ui/B78XH/DataHolders/PFD/PFDDataHolder.js", - "size": 26, - "date": 133125132069628130 - }, - { - "path": "html_ui/B78XH/DataHolders/MFD/MFDDataHolder.js", - "size": 26, - "date": 133125132069628130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/panel/B78XH-wasm.wasm", - "size": 1447642, - "date": 133125132069578130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/panel/PANEL.CFG", - "size": 2764, - "date": 133125132069588130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS", - "size": 5592560, - "date": 133125132069258130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS.json", - "size": 102, - "date": 133125132069268130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS", - "size": 5592560, - "date": 133125132069358140 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS.json", - "size": 102, - "date": 133125132069368130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS", - "size": 5592560, - "date": 133125132069488130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS.json", - "size": 102, - "date": 133125132069498130 - }, - { - "path": "SimObjects/Airplanes/Asobo_B787_10/TEXTURE/texture.CFG", - "size": 209, - "date": 133125132069498130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Airliners/Shared/BaseNDCompass.js", - "size": 30952, - "date": 133125132069728130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/Waypoint.js", - "size": 27883, - "date": 133125132069768130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/WaypointLoader.js", - "size": 56142, - "date": 133125132069778130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.css", - "size": 2288, - "date": 133125132069778130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.html", - "size": 5823, - "date": 133125132069788640 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.js", - "size": 62471, - "date": 133125132069788640 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Airliners/Shared/Boeing/Heavy_Boeing_FMC.js", - "size": 33452, - "date": 133125132069738130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDCompass.js", - "size": 48972, - "date": 133125132069748130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDInfo.js", - "size": 19552, - "date": 133125132069748130 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Airliners/Shared/PFD/AttitudeIndicator.js", - "size": 45542, - "date": 133125132069758130 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.css", - "size": 6830, - "date": 133125132069988880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.html", - "size": 86087, - "date": 133125132069998880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/CJ4_FMC_PilotWaypoint.js", - "size": 19997, - "date": 133125132070008880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/hdfmc.js", - "size": 846336, - "date": 133125132070038880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.css", - "size": 11733, - "date": 133125132070468880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.html", - "size": 10269, - "date": 133125132070468880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.js", - "size": 38244, - "date": 133125132070478880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAirplaneElement.js", - "size": 15748, - "date": 133125132069798900 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityElement.js", - "size": 9113, - "date": 133125132069808900 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAltitudeInterceptElement.js", - "size": 5691, - "date": 133125132069808900 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityManager.js", - "size": 11355, - "date": 133125132069818880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgConstraintElement.js", - "size": 8633, - "date": 133125132069818880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFlightPlanElement.js", - "size": 11125, - "date": 133125132069828880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFuelRingElement.js", - "size": 12366, - "date": 133125132069828880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgLabeledRingElement.js", - "size": 2502, - "date": 133125132069838880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMap.js", - "size": 18597, - "date": 133125132069838880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapElement.js", - "size": 2502, - "date": 133125132069848880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMaskElement.js", - "size": 2355, - "date": 133125132069848880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapConfig.js", - "size": 9215, - "date": 133125132069848880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestAirportElement.js", - "size": 1946, - "date": 133125132069858880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestNDBElement.js", - "size": 893, - "date": 133125132069858880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestIntersectionElement.js", - "size": 724, - "date": 133125132069858880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestVORElement.js", - "size": 1117, - "date": 133125132069868880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgObstacleElement.js", - "size": 2786, - "date": 133125132069868880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeCompassElement.js", - "size": 18723, - "date": 133125132069878900 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeRingElement.js", - "size": 7050, - "date": 133125132069888880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRoadNetworkElement.js", - "size": 19813, - "date": 133125132069888880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTextManager.js", - "size": 11371, - "date": 133125132069898880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTrackVectorElement.js", - "size": 5786, - "date": 133125132069898880 - }, - { - "path": "html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgWaypointElement.js", - "size": 18899, - "date": 133125132069908880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.css", - "size": 1902, - "date": 133125132070048880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.html", - "size": 4445, - "date": 133125132070048880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.js", - "size": 11011, - "date": 133125132070058880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/mapConfig.json", - "size": 3279, - "date": 133125132070458880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.css", - "size": 2216, - "date": 133125132070478880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.html", - "size": 3793, - "date": 133125132070488880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.js", - "size": 50185, - "date": 133125132070498880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_AMBER.svg", - "size": 2420, - "date": 133125132070058880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_MAGENTA.svg", - "size": 2422, - "date": 133125132070068880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_WHITE.svg", - "size": 2420, - "date": 133125132070068880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_BLUE.svg", - "size": 2613, - "date": 133125132070078880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_MAGENTA.svg", - "size": 2616, - "date": 133125132070078880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.png", - "size": 3683, - "date": 133125132070078880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.svg", - "size": 3657, - "date": 133125132070088880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT7.png", - "size": 3683, - "date": 133125132070088880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT8.png", - "size": 3683, - "date": 133125132070088880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_HELIPORT_PINK.png", - "size": 3683, - "date": 133125132070098880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_NON_SERVICED_PINK.png", - "size": 3683, - "date": 133125132070098880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SEAPLANE_CIV_PINK.png", - "size": 3683, - "date": 133125132070108880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SERVICED_PINK.png", - "size": 3683, - "date": 133125132070108880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_PRIVATE_PINK.png", - "size": 3683, - "date": 133125132070108880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_NON_SERVICED_BLUE.png", - "size": 3683, - "date": 133125132070118880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SEAPLANE_CIV_BLUE.png", - "size": 3683, - "date": 133125132070128880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SERVICED_BLUE.png", - "size": 3683, - "date": 133125132070128880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_UNKNOWN_PINK.png", - "size": 3683, - "date": 133125132070138880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AUX.png", - "size": 3718, - "date": 133125132070138880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.svg", - "size": 2428, - "date": 133125132070148880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.png", - "size": 1071, - "date": 133125132070148880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.svg", - "size": 2481, - "date": 133125132070148880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.png", - "size": 3074, - "date": 133125132070138880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.png", - "size": 2677, - "date": 133125132070158880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.svg", - "size": 2376, - "date": 133125132070158880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png", - "size": 2661, - "date": 133125132070158880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.svg", - "size": 2414, - "date": 133125132070168880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.png", - "size": 982, - "date": 133125132070178880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.svg", - "size": 909, - "date": 133125132070178880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.png", - "size": 16920, - "date": 133125132070188880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.svg", - "size": 3457, - "date": 133125132070188880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.png", - "size": 3125, - "date": 133125132070188880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.svg", - "size": 3250, - "date": 133125132070198880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.png", - "size": 11527, - "date": 133125132070198880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.svg", - "size": 2132, - "date": 133125132070208880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.png", - "size": 3091, - "date": 133125132070208880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.svg", - "size": 2482, - "date": 133125132070208880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_OTHER_A320.svg", - "size": 2483, - "date": 133125132070218880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_PROX_A320.svg", - "size": 2485, - "date": 133125132070228880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_RA_A320.svg", - "size": 2442, - "date": 133125132070228880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_TA_A320.svg", - "size": 2424, - "date": 133125132070228880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.png", - "size": 3025, - "date": 133125132070238880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.svg", - "size": 537, - "date": 133125132070248880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.png", - "size": 3025, - "date": 133125132070248880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.svg", - "size": 537, - "date": 133125132070258880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.png", - "size": 2937, - "date": 133125132070258880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.svg", - "size": 2745, - "date": 133125132070268880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.png", - "size": 570, - "date": 133125132070268880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.svg", - "size": 3162, - "date": 133125132070268880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.png", - "size": 3697, - "date": 133125132070278880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.svg", - "size": 2323, - "date": 133125132070278880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.png", - "size": 4449, - "date": 133125132070278880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.svg", - "size": 2368, - "date": 133125132070288880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.png", - "size": 2747, - "date": 133125132070288880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.svg", - "size": 2334, - "date": 133125132070298880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.png", - "size": 2661, - "date": 133125132070298880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.svg", - "size": 2384, - "date": 133125132070298880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.png", - "size": 2677, - "date": 133125132070308880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.svg", - "size": 2837, - "date": 133125132070308880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.png", - "size": 2661, - "date": 133125132070318880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.svg", - "size": 3178, - "date": 133125132070318880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_DISPLAYED.png", - "size": 4449, - "date": 133125132070328880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN.png", - "size": 3274, - "date": 133125132070328880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN.png", - "size": 2677, - "date": 133125132070328880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN_ACTIVE.png", - "size": 2661, - "date": 133125132070338880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.png", - "size": 3697, - "date": 133125132070338880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.svg", - "size": 3470, - "date": 133125132070348880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN.png", - "size": 2677, - "date": 133125132070348880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN_ACTIVE.png", - "size": 2661, - "date": 133125132070348880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_BLUE.svg", - "size": 2606, - "date": 133125132070358880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_WHITE.svg", - "size": 2607, - "date": 133125132070368880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.png", - "size": 961, - "date": 133125132070368880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.svg", - "size": 2376, - "date": 133125132070368880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.png", - "size": 1434, - "date": 133125132070378880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.svg", - "size": 2220, - "date": 133125132070378880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.png", - "size": 991, - "date": 133125132070388880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.svg", - "size": 2414, - "date": 133125132070388880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.css", - "size": 1561, - "date": 133125132070388880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.html", - "size": 10559, - "date": 133125132070398880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.js", - "size": 406, - "date": 133125132070398880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.css", - "size": 9018, - "date": 133125132070408880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.html", - "size": 12145, - "date": 133125132070408880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.js", - "size": 23185, - "date": 133125132070418880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.css", - "size": 1782, - "date": 133125132070418880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.html", - "size": 2669, - "date": 133125132070418880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.js", - "size": 4868, - "date": 133125132070428880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.css", - "size": 16902, - "date": 133125132070428880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.html", - "size": 10039, - "date": 133125132070438880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.js", - "size": 33192, - "date": 133125132070438880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.css", - "size": 18828, - "date": 133125132070448880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.html", - "size": 123481, - "date": 133125132070448880 - }, - { - "path": "html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.js", - "size": 29937, - "date": 133125132070458880 - } - ] -} \ No newline at end of file diff --git a/package.json b/package.json index 9207c798..9b3622ee 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,27 @@ { - "name": "b78xhl-heavy", - "version": "1.0.0", + "name": "b78xh", + "author": "heavy-division", + "version": "0.2.0", "description": "", - "main": "", + "license": "GPL-3.0", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "build:loc": "node buildScripts/locPak.js && echo Copied localization files ✅", + "build:wasm": "bash ./src/wasm/build.sh && echo Built WASM module ✅", + "build:sdk": "cd src && npx gulp buildAndDistribute", + "build:manifest+layout": "gulp build", + "build:base": "npm run build:loc && npm run build:sdk && npm run build:manifest+layout", + "copy-base-package": "node buildScripts/b78xh.js", + "build:b78xh": "npm run build:base && npm run copy-base-package" }, "repository": { "type": "git", - "url": "git+https://github.com/Heavy-Division/B78XHL.git" + "url": "git+https://github.com/Heavy-Division/B78XH.git" }, - "author": "", - "license": "GPL-3.0", "bugs": { - "url": "https://github.com/Heavy-Division/B78XHL/issues" + "url": "https://github.com/Heavy-Division/B78XH/issues" }, - "homepage": "https://github.com/Heavy-Division/B78XHL#readme", + "homepage": "https://hdsimulations.com", "devDependencies": { "del": "^6.0.0", "gulp": "^4.0.2", @@ -29,6 +35,5 @@ "readable-stream": "^3.6.0", "through2": "^4.0.2", "typescript": "^4.4.3" - }, - "dependencies": {} + } } diff --git a/src/__gulpfiles/distribute.js b/src/__gulpfiles/distribute.js index cebe907e..66ab5938 100644 --- a/src/__gulpfiles/distribute.js +++ b/src/__gulpfiles/distribute.js @@ -9,9 +9,9 @@ const projects = { }; const paths = { - sdk: ['dist/hdsdk/hdsdk.js', '../html_ui/Heavy/libs'], - logger: ['dist/hdlogger/hdlogger.js', '../html_ui/Heavy/libs'], - fmc: ['dist/hdfmc/hdfmc.js', '../html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC'] + sdk: ['dist/hdsdk/hdsdk.js', 'base/hd-aircraft-b78x/html_ui/Heavy/libs'], + logger: ['dist/hdlogger/hdlogger.js', 'base/hd-aircraft-b78x/html_ui/Heavy/libs'], + fmc: ['dist/hdfmc/hdfmc.js', 'base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC'] }; diff --git a/src/base/README.md b/src/base/README.md new file mode 100644 index 00000000..439e5ed1 --- /dev/null +++ b/src/base/README.md @@ -0,0 +1,10 @@ +# Base Aircraft Package + +Contains the files needed for the simulator: + - html_ui panels + - configuration files + - sound files + - model behaviors + - Textures + - 3D model + diff --git a/Data/DSEG7ClassicMini-Italic.ttf b/src/base/hd-aircraft-b78x/Data/DSEG7ClassicMini-Italic.ttf similarity index 100% rename from Data/DSEG7ClassicMini-Italic.ttf rename to src/base/hd-aircraft-b78x/Data/DSEG7ClassicMini-Italic.ttf diff --git a/Data/Heavy787FMC.ttf b/src/base/hd-aircraft-b78x/Data/Heavy787FMC.ttf similarity index 100% rename from Data/Heavy787FMC.ttf rename to src/base/hd-aircraft-b78x/Data/Heavy787FMC.ttf diff --git a/Data/NotoEmoji-Regular.ttf b/src/base/hd-aircraft-b78x/Data/NotoEmoji-Regular.ttf similarity index 100% rename from Data/NotoEmoji-Regular.ttf rename to src/base/hd-aircraft-b78x/Data/NotoEmoji-Regular.ttf diff --git a/Data/Roboto-Bold.ttf b/src/base/hd-aircraft-b78x/Data/Roboto-Bold.ttf similarity index 100% rename from Data/Roboto-Bold.ttf rename to src/base/hd-aircraft-b78x/Data/Roboto-Bold.ttf diff --git a/Data/Roboto-Light.ttf b/src/base/hd-aircraft-b78x/Data/Roboto-Light.ttf similarity index 100% rename from Data/Roboto-Light.ttf rename to src/base/hd-aircraft-b78x/Data/Roboto-Light.ttf diff --git a/Data/Roboto-Regular.ttf b/src/base/hd-aircraft-b78x/Data/Roboto-Regular.ttf similarity index 100% rename from Data/Roboto-Regular.ttf rename to src/base/hd-aircraft-b78x/Data/Roboto-Regular.ttf diff --git a/Data/entypo.ttf b/src/base/hd-aircraft-b78x/Data/entypo.ttf similarity index 100% rename from Data/entypo.ttf rename to src/base/hd-aircraft-b78x/Data/entypo.ttf diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Buttons.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Buttons.xml new file mode 100644 index 00000000..a08e306b --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Buttons.xml @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Index.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Index.xml new file mode 100644 index 00000000..35ed0901 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Common/Index.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Aisle_Stand.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Aisle_Stand.xml new file mode 100644 index 00000000..d661f5fc --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Aisle_Stand.xml @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Controls.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Controls.xml new file mode 100644 index 00000000..faad186b --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Controls.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Emissive.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Emissive.xml new file mode 100644 index 00000000..e304aa54 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Emissive.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Glareshield.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Glareshield.xml new file mode 100644 index 00000000..c5fed424 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Glareshield.xml @@ -0,0 +1,637 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Huds.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Huds.xml new file mode 100644 index 00000000..ed238e9f --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Huds.xml @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Index.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Index.xml new file mode 100644 index 00000000..9784e7ce --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Index.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Lightning.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Lightning.xml new file mode 100644 index 00000000..4a84e2d0 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Lightning.xml @@ -0,0 +1,651 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Overhead.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Overhead.xml new file mode 100644 index 00000000..4a8c6ff6 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Components/Overhead.xml @@ -0,0 +1,917 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Index.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Index.xml new file mode 100644 index 00000000..64866f63 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Index.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Miscellaneous/macros.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Miscellaneous/macros.xml new file mode 100644 index 00000000..3074e60b --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Miscellaneous/macros.xml @@ -0,0 +1,32 @@ + + + + + + + + + 16 + 16 + 17 + + 18 + 18 + 19 + + 20 + 20 + 21 + + 25 + 22 + 23 + + 24 + 25 + + + s0 l0 0 > sp1 (A:LIGHT POTENTIOMETER:31, Percent over 100) 0 (L:XMLVAR_LightMasterActive) l1 and ? + 0.5 + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Audio.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Audio.xml new file mode 100644 index 00000000..985a89ef --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Audio.xml @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Deice.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Deice.xml new file mode 100644 index 00000000..a354e79b --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Deice.xml @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Index.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Index.xml new file mode 100644 index 00000000..ed0e1d9a --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Aircrafts/Boeing/787/10/XH/Updaters/Index.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/Common.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/Common.xml new file mode 100644 index 00000000..67ff82bd --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/Common.xml @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/macros.xml b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/macros.xml new file mode 100644 index 00000000..2c20b8d6 --- /dev/null +++ b/src/base/hd-aircraft-b78x/ModelBehaviorDefs/Heavy/Global/macros.xml @@ -0,0 +1,23 @@ + + + + + COCKPIT.TOOLTIPSV3.ACTION + COCKPIT.TOOLTIPSV3.STATE + COCKPIT.TOOLTIPSV3.TITLE + + + + 1 + 2 + + + + + TRUE + FALSE + + 1 + 0 + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Climb.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Climb.flt new file mode 100644 index 00000000..0db22d5c --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Climb.flt @@ -0,0 +1,202 @@ +[SimVarForSpawningInTheAir.0] +IAS=300 +FlapsDegree=0000.00 + +[Avionics.0] +Comm1Active=125.300 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=1 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=30.107828140258789063 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=False +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=False +WingLights=True +CabinLights=True +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.00 +Gear1=000.00 +Gear2=000.00 +Gear3=000.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=000.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Cruise.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Cruise.flt new file mode 100644 index 00000000..c0f49d96 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Cruise.flt @@ -0,0 +1,201 @@ +[SimVarForSpawningInTheAir.0] +IAS=506 +FlapsDegree=0000.00 + +[Avionics.0] +Comm1Active=125.300 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=1 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=30.107828140258789063 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=False +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=False +WingLights=True +CabinLights=True +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=True +WingLeveler=True +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=True +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.00 +Gear1=000.00 +Gear2=000.00 +Gear3=000.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=000.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Final.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Final.flt new file mode 100644 index 00000000..d0b17a38 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Final.flt @@ -0,0 +1,202 @@ +[SimVarForSpawningInTheAir.0] +IAS=258 +FlapsDegree=0030.00 + +[Avionics.0] +Comm1Active=125.300 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0375387192499925249 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0375387192499925249 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=1 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=30.107828140258789063 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=True +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=False +WingLights=True +CabinLights=True +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=100.00 +LeftFlap=100.00 +RightFlap=100.00 +GearsHandle=100.00 +Gear1=100.00 +Gear2=100.00 +Gear3=100.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=000.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Notice.txt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Notice.txt new file mode 100644 index 00000000..ca45f967 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/Notice.txt @@ -0,0 +1 @@ +Produced under license from Boeing. Boeing, 747, 787 Dreamliner, Dreamliner with crescent moon, F/A-18E/F Super Hornet, P-51 Mustang, T-6 Texan, and their associated distinctive logos, product marking and trade dress are trademarks of The Boeing Company. \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS new file mode 100644 index 00000000..d9c18b02 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS.json new file mode 100644 index 00000000..8de5380e --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_787_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132302803460000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.FLAGS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.FLAGS new file mode 100644 index 00000000..ef635809 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.FLAGS @@ -0,0 +1 @@ +_DEFAULT=+NOREDUCE \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.json new file mode 100644 index 00000000..cf6daf79 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132309959010000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.dds b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.dds new file mode 100644 index 00000000..eb85fa74 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_DECALS2_ALBD.PNG.dds differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS new file mode 100644 index 00000000..4cba4099 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS.json new file mode 100644 index 00000000..f46b2f52 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":131995584850000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS new file mode 100644 index 00000000..a85f3df7 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS.json new file mode 100644 index 00000000..f46b2f52 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":131995584850000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS new file mode 100644 index 00000000..b1e2897d Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS.json new file mode 100644 index 00000000..d30703be --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132308315750000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS new file mode 100644 index 00000000..f7788473 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.FLAGS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.FLAGS new file mode 100644 index 00000000..131db917 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.FLAGS @@ -0,0 +1 @@ +_DEFAULT=+QUALITYHIGH \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.json new file mode 100644 index 00000000..3d772dbc --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132309844130000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP","FL_BITMAP_QUALITY_HIGH","FL_BITMAP_NO_GAMMA_CORRECTION","FL_BITMAP_METAL_ROUGH_AO_DATA"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS new file mode 100644 index 00000000..76c06d04 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS.json new file mode 100644 index 00000000..97c72347 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132308315780000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS new file mode 100644 index 00000000..32f85232 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS.json new file mode 100644 index 00000000..49e6bf0d --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132308295700000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS new file mode 100644 index 00000000..d9c18b02 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS.json new file mode 100644 index 00000000..60913967 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERY2_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132270948480000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS new file mode 100644 index 00000000..429d75bd Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS.json new file mode 100644 index 00000000..7c14fdac --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132277427090000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS new file mode 100644 index 00000000..af3f8414 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS.json new file mode 100644 index 00000000..04f8b13b --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD4_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132669473640000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS new file mode 100644 index 00000000..dedf9b4f Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS.json new file mode 100644 index 00000000..4b47e415 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_LOD6_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132490463230000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS new file mode 100644 index 00000000..999ccdbc Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS.json new file mode 100644 index 00000000..6bbf4ba1 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_ALBD.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132308315810000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS new file mode 100644 index 00000000..fda445dd Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.FLAGS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.FLAGS new file mode 100644 index 00000000..131db917 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.FLAGS @@ -0,0 +1 @@ +_DEFAULT=+QUALITYHIGH \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.json new file mode 100644 index 00000000..335ae029 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_AIRFRAME_TAIL_COMP.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132309844990000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP","FL_BITMAP_QUALITY_HIGH","FL_BITMAP_NO_GAMMA_CORRECTION","FL_BITMAP_METAL_ROUGH_AO_DATA"]} \ No newline at end of file diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS.json similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS.json rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_MAINPANEL_ALBD.PNG.DDS.json diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS.json similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS.json rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_OVERHEAD_ALBD.PNG.DDS.json diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS.json similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS.json rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/787_10_COCKPIT_PEDESTAL_ALBD.PNG.DDS.json diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS new file mode 100644 index 00000000..a3bacdbe Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS.json b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS.json new file mode 100644 index 00000000..e7881f97 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/LIVERY_KLM.PNG.DDS.json @@ -0,0 +1 @@ +{"Version":2,"SourceFileDate":132626927060000000,"Flags":["FL_BITMAP_COMPRESSION","FL_BITMAP_MIPMAP"],"HasTransp":true} \ No newline at end of file diff --git a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/texture.CFG b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/texture.CFG similarity index 66% rename from SimObjects/Airplanes/Asobo_B787_10/TEXTURE/texture.CFG rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/texture.CFG index c4d45ed6..dc97c268 100644 --- a/SimObjects/Airplanes/Asobo_B787_10/TEXTURE/texture.CFG +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/texture.CFG @@ -4,4 +4,5 @@ fallback.1=..\..\..\..\texture fallback.2=..\..\..\..\texture\Interiors fallback.3=..\..\..\..\texture\DetailMap fallback.4=..\..\..\..\texture\Glass -fallback.5=..\..\..\..\texture\Extinguisher \ No newline at end of file +fallback.5=..\..\Asobo_B787_10\texture +fallback.6=..\..\..\..\texture\Extinguisher \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail.JPG b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail.JPG new file mode 100644 index 00000000..deddab4d Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail.JPG differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail_small.JPG b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail_small.JPG new file mode 100644 index 00000000..77e91d31 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/TEXTURE/thumbnail_small.JPG differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/ai.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/ai.cfg new file mode 100644 index 00000000..b34e2cc3 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/ai.cfg @@ -0,0 +1,29 @@ +[VERSION] +major = 1 +minor = 0 + +[TAKEOFF] +takeoffFlapsPosition = 0.5 + +[WAYPOINT] + +[LANDING] +flareAngle = 0 + +[SIMPLIFIEDSIM] +landingGearAnimPct = 80.0 + +[STICKANDRUDDER] +rudderGroundPID = 0.025, 0.001, 0.1, 1.0, 1.0 ; Pk,Ik,Dk,I boundary, D boundary +throttleGroundPID = 0.1,0.10,10.0,10.0,20.0 +brakeDifferentialPID = 2.7, 0.001,10.0,1.0, 5.0 +throttleDifferentialPID = 12.0 ,0.001,25.0,10.0,40.0 +throttlePID = 20.0,0.1,20.0,20.0,1000.0 +pitchPID = 1.0, 0.1, 5.0, 100.0, 100.0 +rollPID = 1.0, 0.1, 5.0, 100.0, 100.0 +headingPID = 1.8, 0.01, 1.5, 0.2, 1.0 +verticalSpeedPID = 0.5, 0.05, 0.2, 300.0,1000.0 +nav_ex1PID = 2.5, 0.05, 20.0, 0.03, 50.0 +nav_yawPID = 0.08, 0.01, 0.001, 1.0, 360 +glideSlopePID = 15.0, 2.0, 13.0, 0.1, 60.0 +flightLevelPID = 100.0, 5.0, 30.0, 20.0, 1000.0 \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/aircraft.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/aircraft.cfg new file mode 100644 index 00000000..20acbc12 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/aircraft.cfg @@ -0,0 +1,92 @@ +[VERSION] +major = 1 +minor = 0 + +[GENERAL] +atc_type = "TT:ATCCOM.ATC_NAME BOEING.0.text" +atc_model = "TT:ATCCOM.AC_MODEL_B78X.0.text" +Category = "airplane" +pilot = "Pilot_Female_Uniform" +copilot = "Pilot_Male_Uniform" +instructor = "Pilot_Male_Uniform" +performance = "TODO..." +icao_type_designator = "B78X" +icao_manufacturer = "BOEING" +icao_model = "787-10 Dreamliner" +icao_engine_type = "Jet" +icao_engine_count = 2 +icao_WTC = "H" + +[PILOT] +pilot = "Pilot_Female_Uniform" +copilot = "Pilot_Male_Uniform" +instructor = "Pilot_Male_Casual" +pilot_default_animation = "Idle1_PoseAirliner" +copilot_default_animation = "Idle2_PoseAirliner" +pilot_attach_node = "PILOT_0" +copilot_attach_node = "PILOT_1" + +[SERVICES] +FUELTRUCK = 1 +BAGGAGE_LOADER = 1 +CATERING_TRUCK = 1 +BOARDING_RAMP = 1 +GROUND_POWER_UNIT = 1 +PUSHBACK = 1 +SMALL_PUSHBACK = 0 +MARSHALLER = 1 +JETWAY = 1 + +[EFFECTS] +effect.0 = FX_EXHAUST_LEFT#(A:GENERAL ENG COMBUSTION:1, boolean)#FX_ASOBO_HEAT_BIG +effect.1 = FX_EXHAUST_RIGHT#(A:GENERAL ENG COMBUSTION:2, boolean)#FX_ASOBO_HEAT_BIG + +[ALPHA PROTECTION] +off_limit = 13 ; Stick Shaker Min +on_limit = 18 ; Stick Shaker Max + +[STALL PROTECTION] +stall_protection = 1 ; Stick Shaker +off_limit = 13 ; Stick Shaker Min +on_limit = 18 ; Stick Shaker Max + +[VR] +yoke_anim_x = "HANDLING_YOKE_Lever_StickLR" +yoke_anim_y = "HANDLING_YOKE_Lever_StickForeAft" +yoke_node = "HANDLING_YOKE_1" +yoke_collision_mesh = "HANDLING_Yoke_1_Colision" + +;===================== FLTSIM ===================== + +[FLTSIM.0] +title = "Boeing 787-10 Heavy Division" ; Variation name +model = "" ; model folder +panel = "" ; panel folder +sound = "" ; sound folder +texture = "" ; texture folder +kb_checklists = "" ; Procedures/Checklist sibling file name +kb_reference = "" ; Reference information sibling file name +description = "TT:AIRCRAFT.DESCRIPTION" ; Variation description. +wip_indicator = 0 ; know if the variation is good to go or still WIP : -1=Disabled, 0=Rough, 1=1st Pass, 2=Finished +ui_manufacturer = "Boeing" ; e.g. Boeing, Cessna +ui_type = "TT:AIRCRAFT.UI_MODEL" ; e.g. 747-400, 172 +ui_variation = "Heavy Division" ; e.g. World Air, IFR Panel +ui_typerole = "Commercial Airliner" ; e.g. Single Engine Prop, Twin Engine Prop, Rotorcraft, etc +ui_createdby = "Asobo Studio, Heavy Division" ; e.g. Asobo Studio, Microsoft, FSAddonCompany, etc +ui_thumbnailfile = "" ; app relative path to ThumbNail image file +ui_certified_ceiling = 41100 ; service ceiling / max certified operating altitude (ft) +ui_max_range = 6430 ; max distance the aircraft can fly between take-off and landing in (NM) +ui_autonomy = 13 ; max duration the aircraft can fly between take-off and landing in (Hrs) +ui_fuel_burn_rate = 12350 ; average fuel consumption per hour (lbs/hr) - reminder: fuel density is ~6.7lbs per US gallon +atc_id = "HDX787" ; tail number +atc_id_enable = 1 ; enable tail number +atc_airline = "" ; airline name +atc_flight_number = "1123" ; flight number +atc_heavy = 1 ; heavy? +atc_parking_types = "GATE,RAMP,CARGO" ; "ANY" / "RAMP" / "CARGO" / "MIL_CARGO" / "MIL_COMBAT" / "GATE" / "DOCK" +atc_parking_codes = "" ; Comma separated and may be as small as one character each +atc_id_color = "" ; color for the tail number : i.e. "#ffff00ff" +atc_id_font = "" ; font for the tail number +isAirTraffic = 0 ; Is the plane usable for air traffic +isUserSelectable = 1 ; Is the plane selectable by the user + diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/approach.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/approach.flt new file mode 100644 index 00000000..5cc93733 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/approach.flt @@ -0,0 +1,202 @@ +[SimVarForSpawningInTheAir.0] +IAS=506 +FlapsDegree=0000.00 + +[Avionics.0] +Comm1Active=125.300 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=1 +PropellerLeverPct=0.99993896484375 +MixtureLeverPct=0.99993896484375 +Pct Engine RPM=1.0555886939947713987 +MaxReachedEngineRPM=31586.987738769817952 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=True +FuelPumpSwitch_EX1=-1 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=1 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=30.107828140258789063 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=False +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=False +WingLights=True +CabinLights=True +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + + +[AutoPilot.0] +MasterSwitch=True +WingLeveler=True +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=True +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.00 +Gear1=000.00 +Gear2=000.00 +Gear3=000.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=000.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/apron.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/apron.flt new file mode 100644 index 00000000..c116c148 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/apron.flt @@ -0,0 +1,206 @@ +[SimVars.0] +PVelBodyAxis=0 +BVelBodyAxis=0 +HVelBodyAxis=0 +XVelBodyAxis=0 +YVelBodyAxis=0 +ZVelBodyAxis=0 +SimOnGround=True + +[Avionics.0] +Comm1Active=124.850 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=0 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=False + +[Engine Parameters.1.0] +ThrottleLeverPct=0 +PropellerLeverPct=0.99951171875 +MixtureLeverPct=0.99951171875 +Pct Engine RPM=0 +MaxReachedEngineRPM=6479.5241826773144567 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +FuelPumpSwitch_EX1=0 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 + +[Engine Parameters.2.0] +ThrottleLeverPct=0 +PropellerLeverPct=0.99951171875 +MixtureLeverPct=0.99951171875 +Pct Engine RPM=0 +MaxReachedEngineRPM=6479.5241826773144567 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +FuelPumpSwitch_EX1=0 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 + +[FuelSystem.0] +Valve.1=False +Valve.2=False +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=False +Pump.2=False +Pump.3=False +Pump.4=False +Pump.5=False +Pump.6=False + + +[Systems.0] +BatterySwitch=False +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=1 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=False +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 +AuxPowerUnitSwitch=False + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False +alternator.5=False +alternator.6=False + +[Gauges.0] +KollsmanSetting=29.921342849731445313 + +[BleedAir.0] +BleedAirSource=1 + +[Switches.0] +PitotHeat=False +BeaconLights=False +LandingLights=False +LogoLights=False +NavLights=False +PanelLights=True +RecognitionLights=False +StrobeLights=False +TaxiLights=False +WingLights=False +CabinLights=False +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=True +GPSdrivesNAV1=False +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.01 +Gear1=100.00 +Gear2=100.00 +Gear3=100.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=100.00 +RightBrake=100.00 +ParkingBrake=100.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cameras.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cameras.cfg new file mode 100644 index 00000000..00fea981 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cameras.cfg @@ -0,0 +1,1448 @@ +[VERSION] +major =1 +minor =0 + +[VIEWS] +eyepoint = -18.55, -2, 11 ; (feet) longitudinal, lateral, vertical distance from reference datum + +;===================== CAMERADEFINITION ===================== + +[CAMERADEFINITION.0] +Title ="Pilot" +UITitle ="TT:GAME.PANEL_CAMERA_PILOT_VFR" +Guid ="{8FF6C134-098D-409F-BAEC-CABA3F683F98}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Pilot" +SubCategoryItem ="DefaultPilot" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.092502, -1.760002, 31.039967 +InitialPbh = 2, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.1] +Title ="ClosePilot" +UITitle ="TT:GAME.PANEL_CAMERA_PILOT_IFR" +Guid ="{9443D38A-423D-4255-A96F-EF5EA071FCBE}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Pilot" +SubCategoryItem ="ClosePilot" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.890001, 31.19998 +InitialPbh = -14.557446, 0.011812, 0.009576 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.2] +Title ="LandingPilot" +UITitle ="TT:GAME.PANEL_CAMERA_PILOT_LANDING" +Guid ="{5C5DC579-47AD-4758-BE8D-EE50CC6E6C9A}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Pilot" +SubCategoryItem ="LandingPilot" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.092499, -1.792, 31.19998 +InitialPbh = 2.257134, -0.021714, 0.000861 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.3] +Title ="HUD" +UITitle ="TT:GAME.PANEL_CAMERA_PILOT_HUD" +Guid ="{73C34EDE-8726-44E4-9DD0-7CA64B2178CC}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Pilot" +SubCategoryItem ="PilotHUD" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.11777, -1.764708, 31.279554 +InitialPbh = 2, 0, 0 +VarToggle ="XMLVAR_HUD_1_Down" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.4] +Title ="CoPilot" +UITitle ="TT:GAME.PANEL_CAMERA_PILOT_COPILOT" +Guid ="{1AEC278E-CF2F-468C-9149-B7BF0805D1EF}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Pilot" +SubCategoryItem ="CoPilot" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 1.125, -1.76, 31.040001 +InitialPbh = 2, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.5] +Title ="Quickview - L1" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_L1" +Guid ="{D68838C3-5FF6-4E03-AF71-CB414557E557}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView6" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.040001 +InitialPbh = 3, 0, -30 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.6] +Title ="Quickview - L2" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_L2" +Guid ="{D744C7A4-B436-4CA2-8DD4-F098D91721A9}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView4" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.040001 +InitialPbh = 3, 0, -90 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.7] +Title ="Quickview - L3" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_L3" +Guid ="{9D47A66D-DABA-4221-A164-B9B622C2B379}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView5" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.040001 +InitialPbh = 3, 0, -120 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.8] +Title ="Quickview - R1" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_R1" +Guid ="{91733CD8-64EA-4FE9-82A6-B916C12C8CC8}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView7" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.200001 +InitialPbh = 3, 0, 30 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.9] +Title ="Quickview - R2" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_R2" +Guid ="{BD023F5A-E876-4D1D-8B75-3FFFEF8EF354}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView3" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.200001 +InitialPbh = 3, 0, 90 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.10] +Title ="Quickview - R3" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_R3" +Guid ="{93FFC4B5-1B8F-4887-B128-4593C3D4562E}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView8" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.200001 +InitialPbh = 3, 0, -120 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.11] +Title ="Quickview - Up" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_UP" +Guid ="{0C6CC7C8-C6F0-459C-AD8B-B686D751BABF}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView1" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.0925, -1.76, 31.040001 +InitialPbh = 30, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.12] +Title ="Quickview - Rear" +UITitle ="TT:GAME.PANEL_CAMERA_QUICKVIEWS_BACK" +Guid ="{78138F82-3D98-4C44-87F3-8160E7827316}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.35 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="QuickView" +SubCategoryItem ="QuickView2" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.35, -1.76, 31.040001 +InitialPbh = 3, 0, 160 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.13] +Title ="Instrument01" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_01" +Guid ="{F5E9FFCD-80F9-4191-A117-DC6A54D5EB5D}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.24, -2.05, 31.4 +InitialPbh = -20, 0, 0 +VarToggle ="XMLVAR_YokeHidden1 XMLVAR_YokeHidden2" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.14] +Title ="Instrument02" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_02" +Guid ="{E5DCED16-623A-46E1-A977-15C849B88547}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.5, -1.8, 31.299999 +InitialPbh = -20, 0, 0 +VarToggle ="XMLVAR_YokeHidden1 XMLVAR_YokeHidden2" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.15] +Title ="Instrument03" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_03" +Guid ="{2669EE86-7910-4F98-A6D9-98443C40F389}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.6, -2, 31.6 +InitialPbh = -65, 0, 0 +VarToggle ="XMLVAR_YokeHidden1 XMLVAR_LeverThrottleHidden1 XMLVAR_LeverThrottleHidden2 XMLVAR_LeverFlapsHidden XMLVAR_LeverSpoilersHidden XMLVAR_YokeHidden2" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.16] +Title ="Instrument04" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_04" +Guid ="{7B69A328-CF4F-48A9-9162-C3C36F28FA34}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.6, -2, 31.200001 +InitialPbh = -50, 0, 0 +VarToggle ="XMLVAR_YokeHidden1" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.17] +Title ="Instrument05" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_05" +Guid ="{E65C7AB5-2873-4F16-8C77-1744449A112D}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.6, -1.925, 31.065001 +InitialPbh = -80, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.18] +Title ="Instrument06" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_06" +Guid ="{25B5CB50-FE1C-4419-B788-45CCDB057F42}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.1, -1.89, 31.4 +InitialPbh = -34, 0, -47 +VarToggle ="XMLVAR_YokeHidden1" +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.19] +Title ="Instrument07" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_07" +Guid ="{89687D0F-BF82-4356-8B7C-F689B3D1D4D4}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.6, -2.2, 31.25 +InitialPbh = 80, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.20] +Title ="Instrument08" +UITitle ="TT:GAME.PANEL_CAMERA_INSTRUMENTS_08" +Guid ="{BC75D030-ADB6-44E5-98EF-99AF5CCB1E3A}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Instrument" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.6, -2.1, 30.9 +InitialPbh = 80, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.21] +Title ="Checklist01" +UITitle ="" +Guid ="{69F7A066-718F-463D-9DFE-D4FA53835E42}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="YES" +AllowZoom =1 +InitialZoom =0.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="Cockpit" +SubCategory ="Checklist" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.600374, -2.200003, 30.969952 +InitialPbh = 62.698971, 0.000002, 0.23209 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.22] +Title ="FixedOnPlane_Tail" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_01" +Guid ="{140B4B54-A6FD-4979-AF04-F38391B1E496}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =1.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = -0.046041, 13.215856, -39.752762 +InitialPbh = -4, 0, 0 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.23] +Title ="FixedOnPlane_LeftWing" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_02" +Guid ="{A1237E57-47D1-4E08-8AB7-D82845C18FFA}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =1.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = -28.247475, 3.856483, -15.789801 +InitialPbh = 6.326755, 2.277939, 67.257431 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.24] +Title ="FixedOnPlane_RightWing" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_03" +Guid ="{F17FDDF5-AA17-44F8-BC12-374F6DDFE1EF}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =1.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 29.792189, 2.48725, -16.173393 +InitialPbh = 12.141848, -19.53998, -79.118866 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.25] +Title ="FixedOnPlane_Belly" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_04" +Guid ="{159ABFB4-F541-4329-8723-57E48769B160}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =1.3 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 0.003584, -3.038464, -11.564695 +InitialPbh = -10.89897, -0.010189, -0.000369 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.26] +Title ="FixedOnPlane_Flaps" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_05" +Guid ="{D083A83F-9129-4822-AD97-BFEE2E92745C}" +Description ="" +Origin ="Virtual Cockpit" +MomentumEffect =0 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =1 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =1.3 +SmoothZoomTime =5 +ZoomPanScalar =0 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =10 +HeadingPanRate =30 +InitialXyz = 4.140755, -0.85482, 14.899097 +InitialPbh = 163.397568, 179.819565, 6.143134 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.27] +Title ="FixedOnPlane_Rudder" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_06" +Guid ="{9DD0AC4C-2469-4D06-A3FD-BD747F3B434F}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =0.647398 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 3.37464, 2.534309, -28.943235 +InitialPbh = -148.816971, -178.967682, -55.39304 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.28] +Title ="FixedOnPlane_Elevator" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_07" +Guid ="{1FD79CB2-48CF-44C9-A20C-9ED0DF0FAB0B}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =0.647398 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 1.324157, 4.092248, -28.424034 +InitialPbh = 153.834183, 179.98735, -6.589289 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.29] +Title ="FixedOnPlane_Deice" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_08" +Guid ="{6B5CFE44-A51C-4B59-93C5-6CB9296F392B}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =0.647398 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 3.943523, 1.350218, 5.249091 +InitialPbh = 152.910828, 179.896988, 0.648766 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.30] +Title ="FixedOnPlane_Aileron" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_09" +Guid ="{F194CF25-0C0E-46D6-86CF-B2B45063EBA8}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =0.647398 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 26.593601, 4.059258, -15.348104 +InitialPbh = -29.400354, -1.099681, -53.803394 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.31] +Title ="FixedOnPlane_LandingGear" +UITitle ="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_11" +Guid ="{07203B13-0553-438B-B90B-5DFD0F5CD3AC}" +Description ="" +Origin ="Center" +MomentumEffect =1 +SnapPbhAdjust ="Swivel" +SnapPbhReturn =0 +PanPbhAdjust ="Swivel" +PanPbhReturn =0 +Track ="None" +ShowAxis ="NO" +AllowZoom =1 +InitialZoom =0.647398 +SmoothZoomTime =2 +ZoomPanScalar =1 +ShowWeather =1 +XyzAdjust =1 +ShowLensFlare =0 +Category ="FixedOnPlane" +SubCategory ="FixedOnPlaneExtern" +SubCategoryItem ="None" +PitchPanRate =20 +HeadingPanRate =60 +InitialXyz = 2.759873, -1.528324, -12.722696 +InitialPbh = -6.348202, 0.162385, 9.81378 +ClipMode ="Normal" +BoundingBoxRadius =0.1 +TargetCategory="None" +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 + +[CAMERADEFINITION.32] +Title="FixedOnPlane_Porthole01" +Guid="{66BE692A-3DF0-484B-8BC2-AAFC8461236E}" +UITitle="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_12" +Description="" +Origin="Center" +Track="None" +TargetCategory="None" +ClipMode="Normal" +SnapPbhAdjust="Swivel" +PanPbhAdjust="Swivel" +XyzAdjust=1 +ShowAxis="NO" +AllowZoom=1 +InitialZoom=0.35 +SmoothZoomTime=2 +BoundingBoxRadius=0.1 +ShowWeather=1 +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +MomentumEffect=1 +ShowLensFlare=0 +PanPbhReturn=0 +SnapPbhReturn=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +Category="FixedOnPlane" +SubCategory="FixedOnPlaneIntern" +SubCategoryItem="None" +InitialXyz= -1.8, 2.23, -16.1 +PitchPanRate=20 +HeadingPanRate=60 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 +ZoomPanScalar=1 +InitialPbh= 6, -1.4, -58 + +[CAMERADEFINITION.33] +Title="FixedOnPlane_Porthole02" +Guid="{48CBDA5B-EC07-4368-B077-4832312512EC}" +UITitle="TT:GAME.PANEL_CAMERA_FIXEDONPLANE_13" +Description="" +Origin="Center" +Track="None" +TargetCategory="None" +ClipMode="Normal" +SnapPbhAdjust="Swivel" +PanPbhAdjust="Swivel" +XyzAdjust=1 +ShowAxis="NO" +AllowZoom=1 +InitialZoom=0.35 +SmoothZoomTime=2 +BoundingBoxRadius=0.1 +ShowWeather=1 +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +MomentumEffect=1 +ShowLensFlare=0 +PanPbhReturn=0 +SnapPbhReturn=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +Category="FixedOnPlane" +SubCategory="FixedOnPlaneIntern" +SubCategoryItem="None" +InitialXyz= 2, 2.33, 7.54 +InitialPbh= -5, 0, 120 +PitchPanRate=20 +HeadingPanRate=60 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 +ZoomPanScalar=1 + +[CAMERADEFINITION.34] +Title="PilotVR" +Guid="{32240A0C-9378-4D93-AB8A-ACFBC0F9D102}" +UITitle="TT:GAME.PANEL_CAMERA_PILOT_VFR" +Description="" +Origin="Virtual Cockpit" +Track="None" +TargetCategory="None" +ClipMode="Normal" +SnapPbhAdjust="Swivel" +PanPbhAdjust="Swivel" +XyzAdjust=1 +ShowAxis="YES" +AllowZoom=1 +InitialZoom=0.35 +SmoothZoomTime=2 +BoundingBoxRadius=0.1 +ShowWeather=1 +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=0 +MomentumEffect=1 +ShowLensFlare=0 +PanPbhReturn=0 +SnapPbhReturn=0 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +Category="Cockpit" +SubCategory="Pilot" +SubCategoryItem="PilotVR" +InitialXyz= 0.057, -1.725, 31.200001 +InitialPbh= 0, 0, 0 +PitchPanRate=20 +HeadingPanRate=60 +PanAcceleratorTime=5 +XYZRate=0.25 +XYZAcceleratorTime=0 +ZoomPanScalar=1 + +[CAMERADEFINITION.35] +Title="ShadowCenter" +Guid="{096077A4-DF3C-41F0-AF3C-A81A72165D2E}" +UITitle="" +Description="" +Origin="Cockpit" +Track="None" +TargetCategory="None" +ClipMode="Normal" +SnapPbhAdjust="None" +PanPbhAdjust="None" +XyzAdjust=0 +ShowAxis="NO" +AllowZoom=0 +InitialZoom=1 +SmoothZoomTime=5 +BoundingBoxRadius=1.25 +ShowWeather=0 +CycleHidden=0 +CycleHideRadius=0 +ShowPanel=1 +MomentumEffect=0 +ShowLensFlare=0 +PanPbhReturn=0 +SnapPbhReturn=1 +InstancedBased=0 +NoSortTitle=0 +Transition=0 +Category="Cockpit" +SubCategory="Shadow Center" +SubCategoryItem="None" +InitialXyz= 0, 1.5, 25.5 +InitialPbh= 0, 0, 0 diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cockpit.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cockpit.cfg new file mode 100644 index 00000000..d8fe3cc9 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/cockpit.cfg @@ -0,0 +1,352 @@ +[VERSION] +major = 1 +minor = 0 + +[FUEL_FLOW] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +highLimit = 0 +max = 0 + +[FUEL_QUANTITY] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[FUEL_TEMPERATURE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[FUEL_PRESSURE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[OIL_PRESSURE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[OIL_TEMPERATURE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[EGT_TEMPERATURE] +min = 0 +max = 0 +lowLimit = 0 +highLimit = 0 + +[VACUUM] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +highLimit = 0 +max = 0 + +[MANIFOLD_PRESSURE] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +highLimit = 0 +max = 0 + +[AIRSPEED] +min = 0 +lowLimit = 0 +white_start = 0 +white_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[TORQUE] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 90 +yellow_start = 90 +yellow_end = 100 +red_start = 100 +red_end = 110 +highLimit = 0 +max = 110 + +[RPM] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[TURBINE_NG] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[ITTENGINEOFF] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[ITTENGINEON] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[MAIN_BUS_VOLTAGE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[HOT_BATTERY_BUS_VOLTAGE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[BATTERY_BUS_AMPS] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[GENALT_BUS_AMPS] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[COOLANT_LEVEL] +min = 0 +max = 0 +lowLimit = 0 +highLimit = 0 + +[COOLANT_TEMPERATURE] +min = 0 +lowLimit = 0 +low_red_start = 0 +low_red_end = 0 +low_yellow_start = 0 +low_yellow_end = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[GEAR_OIL_TEMPERATURE] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +yellow_start = 0 +yellow_end = 0 +red_start = 0 +red_end = 0 +highLimit = 0 +max = 0 + +[CABIN_ALTITUDE] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +highLimit = 0 +max = 0 + +[CABIN_ALTITUDE_CHANGE_RATE] +min = 0 +max = 0 +lowLimit = 0 +highLimit = 0 + +[CABIN_PRESSURE_DIFF] +min = 0 +lowLimit = 0 +green_start = 0 +green_end = 0 +highLimit = 0 +max = 0 + +[ATTITUDE_INDICATORS] +attitude_indicator.0 = 2 +attitude_indicator.1 = 2 + +[TURN_INDICATORS] +turn_indicator.0 = 0,0 + +[DIRECTION_INDICATORS] +direction_indicator.0 = 3,0 + +[AIRSPEED_INDICATORS] +airspeed_indicator.0 = 1, 0 +airspeed_indicator.1 = 1, 0 + +[ALTIMETERS] +altimeter.0 = 1 +altimeter.1 = 1 + +[FLAPS_LEVELS] +slats_level_1 = 0 +flaps_level_1 = 0 +slats_level_2 = 1 +flaps_level_2 = 1 +slats_level_3 = 5 +flaps_level_3 = 5 +slats_level_4 = 10 +flaps_level_4 = 10 +slats_level_5 = 15 +flaps_level_5 = 15 +slats_level_6 = 17 +flaps_level_6 = 17 +slats_level_7 = 18 +flaps_level_7 = 18 +slats_level_8 = 20 +flaps_level_8 = 20 +slats_level_9 = 25 +flaps_level_9 = 25 +slats_level_10 = 30 +flaps_level_10 = 30 + +[TAKEOFF_SPEEDS] +take_off_speed_min_val = 107 +take_off_speed_min_weight = 110000 +take_off_speed_max_val = 163 +take_off_speed_max_weight = 260000 + +[MISC] +vcockpit_hud = 1 diff --git a/SimObjects/Airplanes/Asobo_B787_10/engines.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/engines.cfg similarity index 100% rename from SimObjects/Airplanes/Asobo_B787_10/engines.cfg rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/engines.cfg diff --git a/SimObjects/Airplanes/Asobo_B787_10/flight_model.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/flight_model.cfg similarity index 67% rename from SimObjects/Airplanes/Asobo_B787_10/flight_model.cfg rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/flight_model.cfg index b295074e..6c71f804 100644 --- a/SimObjects/Airplanes/Asobo_B787_10/flight_model.cfg +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/flight_model.cfg @@ -7,11 +7,11 @@ max_gross_weight =557000 empty_weight =298700 reference_datum_position = 0, 0, 0 empty_weight_CG_position = -14.5, 0, 0 -CG_forward_limit =0.14 -CG_aft_limit =0.44 -empty_weight_pitch_MOI =28163472 -empty_weight_roll_MOI =9217827 -empty_weight_yaw_MOI =36117016 +CG_forward_limit =0.06 +CG_aft_limit =0.395 +empty_weight_pitch_MOI =2816347 +empty_weight_roll_MOI =2217827 +empty_weight_yaw_MOI =16117016 empty_weight_coupled_MOI =10000 activate_mach_limit_based_on_cg =0 activate_cg_limit_based_on_mach =0 @@ -85,86 +85,90 @@ Version = Latest APU.1 = Name:APU#FuelBurnRate:33 Engine.1 =Name:LEFTENGINE#Title:LeftEngine#Index:1 Engine.2 =Name:RIGHTENGINE#Title:RightEngine#Index:2 -Tank.1 =Name:CENTER#Title:TT:MENU.FUEL.CENTER#Capacity:22244#UnusableCapacity:0#Priority:1#Position:0.0,0.0,-7.0 -Tank.2 =Name:LEFTMAIN#Title:TT:MENU.FUEL.LEFT_MAIN#Capacity:5570#UnusableCapacity:0#Priority:2#Position:-9.0,-28.0,-4.0#InputOnlyLines:BALANCELEFTVALVETOLEFTMAIN#OutputOnlyLines:TANKLEFTAFTTOTANKLEFTAFTPUMP,TANKLEFTFWDTOTANKLEFTFWDPUMP -Tank.3 =Name:RIGHTMAIN#Title:TT:MENU.FUEL.RIGHT_MAIN#Capacity:5570#UnusableCapacity:0#Priority:2#Position:-9.0,28.0,-4.0#InputOnlyLines:BALANCERIGHTVALVETORIGHTMAIN#OutputOnlyLines:TANKRIGHTAFTTOTANKRIGHTAFTPUMP,TANKRIGHTFWDTOTANKRIGHTFWDPUMP +Tank.1 =Name:CENTER#Title:TT:MENU.FUEL.CENTER#Capacity:22244#UnusableCapacity:0#Position:0,0,-7#OutputOnlyLines:CENTERTANKTOSCAVENGEVALVERIGHT,CENTERTANKTOSCAVENGEVALVELEFT#Priority:1 +Tank.2 =Name:LEFTMAIN#Title:TT:MENU.FUEL.LEFT_MAIN#Capacity:5570#UnusableCapacity:0#Position:-9,-28,-4#InputOnlyLines:BALANCELEFTVALVETOLEFTMAIN,SCAVENGEVALVELEFTTOLEFTMAINTANK#OutputOnlyLines:TANKLEFTTOTANKLEFTFWDPUMP,TANKLEFTTOAPUDCPUMP,TANKLEFTTOTANKLEFTAFTPUMP,TANKLEFTTOTANKLEFTAFTMOCKPUMP#Priority:2 +Tank.3 =Name:RIGHTMAIN#Title:TT:MENU.FUEL.RIGHT_MAIN#Capacity:5570#UnusableCapacity:0#Position:-9,28,-4#InputOnlyLines:BALANCERIGHTVALVETORIGHTMAIN,SCAVENGEVALVERIGHTTORIGHTMAINTANK#OutputOnlyLines:TANKRIGHTAFTTOTANKRIGHTAFTPUMP,TANKRIGHTTOTANKRIGHTFWDPUMP#Priority:2 Line.1 =Name:TANKCENTERLTOTANKCENTERLPUMP#Title:TankCenterLToTankCenterLPump#Source:CENTER#Destination:CENTERLPUMP Line.2 =Name:TANKCENTERLPUMPTOLEFTAFTJUNC#Title:TankCenterLPumpToLeftAftJunc#Source:CENTERLPUMP#Destination:LEFTAFTJUNCTION -Line.3 =Name:TANKLEFTAFTTOTANKLEFTAFTPUMP#Title:TankLeftAftToTankLeftAftPump#Source:LEFTMAIN#Destination:LEFTAFTPUMP -Line.4 =Name:TANKLEFTAFTPUMPTOLEFTAFTAPUJUNC#Title:TankLeftAftPumpToLeftAftAPUJunc#Source:LEFTAFTPUMP#Destination:LEFTAFTAPUJUNCTION -Line.5 =Name:LEFTAFTJUNCTOLEFTXFEEDJUNC#Title:LeftAftJuncToLeftXFeedJunc#Source:LEFTAFTJUNCTION#Destination:LEFTXFEEDJUNCTION -Line.6 =Name:LEFTXFEEDJUNCTOLEFTFWDJUNC#Title:LeftXFeedJuncToLeftFwdJunc#Source:LEFTXFEEDJUNCTION#Destination:LEFTFWDJUNCTION -Line.7 =Name:TANKLEFTFWDTOTANKLEFTFWDPUMP#Title:TankLeftFwdToTankLeftFwdPump#Source:LEFTMAIN#Destination:LEFTFWDPUMP -Line.8 =Name:TANKLEFTFWDPUMPTOLEFTFWDJUNC#Title:TankLeftFwdPumpToLeftFwdJunc#Source:LEFTFWDPUMP#Destination:LEFTFWDJUNCTION -Line.9 =Name:LEFTFWDJUNCTOAPUJUNC#Title:LeftFwdJuncToAPUJunc#Source:LEFTFWDJUNCTION#Destination:APUJUNCTION -Line.10 =Name:APUJUNCTOLEFTENGVALVE#Title:APUJuncToLeftEngValve#Source:APUJUNCTION#Destination:LEFTENGVALVE -Line.11 =Name:LEFTENGVALVETOLEFTENGINE#Title:LeftEngValveToLeftEngine#Source:LEFTENGVALVE#Destination:LEFTENGINE -Line.12 =Name:TANKCENTERLTOTANKCENTERRPUMP#Title:TankCenterLToTankCenterRPump#Source:CENTER#Destination:CENTERRPUMP -Line.13 =Name:TANKCENTERRPUMPTORIGHTAFTJUNC#Title:TankCenterRPumpToRightAftJunc#Source:CENTERRPUMP#Destination:RIGHTAFTJUNCTION -Line.14 =Name:TANKRIGHTAFTTOTANKRIGHTAFTPUMP#Title:TankRightAftToTankRightAftPump#Source:RIGHTMAIN#Destination:RIGHTAFTPUMP -Line.15 =Name:TANKRIGHTAFTPUMPTORIGHTAFTJUNC#Title:TankRightAftPumpToRightAftJunc#Source:RIGHTAFTPUMP#Destination:RIGHTAFTJUNCTION -Line.16 =Name:RIGHTAFTJUNCTORIGHTXFEEDJUNC#Title:RightAftJuncToRightXFeedJunc#Source:RIGHTAFTJUNCTION#Destination:RIGHTXFEEDJUNCTION -Line.17 =Name:RIGHTXFEEDJUNCTORIGHTFWDJUNC#Title:RightXFeedJuncToRightFwdJunc#Source:RIGHTXFEEDJUNCTION#Destination:RIGHTFWDJUNCTION -Line.18 =Name:TANKRIGHTFWDTOTANKRIGHTFWDPUMP#Title:TankRightFwdToTankRightFwdPump#Source:RIGHTMAIN#Destination:RIGHTFWDPUMP -Line.19 =Name:TANKRIGHTFWDPUMPTORIGHTFWDJUNC#Title:TankRightFwdPumpToRightFwdJunc#Source:RIGHTFWDPUMP#Destination:RIGHTFWDJUNCTION -Line.20 =Name:RIGHTFWDJUNCTORIGHTENGVALVE#Title:RightFwdJuncToRightEngValve#Source:RIGHTFWDJUNCTION#Destination:RIGHTENGVALVE -Line.21 =Name:RIGHTENGVALVETORIGHTENGINE#Title:RightEngValveToRightEngine#Source:RIGHTENGVALVE#Destination:RIGHTENGINE -Line.22 =Name:APUJUNCTOAPUDCPUMP#Title:APUJuncToAPUDCPump#Source:APUJUNCTION#Destination:APUDCPUMP -Line.23 =Name:LEFTXFEEDJUNCTOXFEEDVALVE#Title:LeftXFeedJuncToXFeedValve#Source:LEFTXFEEDJUNCTION#Destination:XFEEDVALVE -Line.24 =Name:RIGHTXFEEDJUNCTOXFEEDVALVE#Title:RightXFeedJuncToXFeedValve#Source:RIGHTXFEEDJUNCTION#Destination:XFEEDVALVE -Line.25 =Name:LEFTAFTJUNCTOLEFTJETTISONARMINGVALVE#Title:LeftAftJuncToLeftJettisonArmingValve#Source:LEFTAFTJUNCTION#Destination:LEFTJETTISONARMINGVALVE -Line.26 =Name:LEFTJETTISONARMINGVALVETOJETTISONLEFTJUNCTION#Title:LeftJettisonArmingValveToJettisonLeftJunction#Source:LEFTJETTISONARMINGVALVE#Destination:JETTISONLEFTJUNCTION -Line.27 =Name:JETTISONLEFTJUNCTOLEFTJETTISONVALVE#Title:JettisonLeftJuncToLeftJettisonValve#Source:JETTISONLEFTJUNCTION#Destination:LEFTJETTISONVALVE -Line.28 =Name:RIGHTAFTJUNCTORIGHTJETTISONARMINGVALVE#Title:RightAftJuncToRightJettisonArmingValve#Source:RIGHTAFTJUNCTION#Destination:RIGHTJETTISONARMINGVALVE -Line.29 =Name:RIGHTJETTISONARMINGVALVETOJETTISONRIGHTJUNC#Title:RightJettisonArmingValveToJettisonRightJunc#Source:RIGHTJETTISONARMINGVALVE#Destination:JETTISONRIGHTJUNCTION -Line.30 =Name:JETTISONRIGHTJUNCTORIGHTJETTISONVALVE#Title:JettisonRightJuncToRightJettisonValve#Source:JETTISONRIGHTJUNCTION#Destination:RIGHTJETTISONVALVE -Line.31 =Name:JETTISONLEFTJUNCTOJETTISONRIGHTJUNC#Title:JettisonLeftJuncToJettisonRightJunc#Source:JETTISONLEFTJUNCTION#Destination:JETTISONRIGHTJUNCTION -Line.32 =Name:LEFTAFTJUNCTOTRANSFERRIGHTVALVE#Title:LeftAftJuncToTransferRightValve#Source:LEFTAFTJUNCTION#Destination:TRANSFERRIGHTVALVE -Line.33 =Name:RIGHTAFTJUNCTOTRANSFERLEFTVALVE#Title:RightAftJuncToTransferLeftValve#Source:RIGHTAFTJUNCTION#Destination:TRANSFERLEFTVALVE -Line.34 =Name:TRANSFERLEFTVALVETOLEFTMAIN#Title:TransferLeftValveToLeftMain#Source:TRANSFERLEFTVALVE#Destination:LEFTMAIN -Line.35 =Name:TRANSFERRIGHTVALVETORIGHTMAIN#Title:TransferRightValveToRightMain#Source:TRANSFERRIGHTVALVE#Destination:RIGHTMAIN -Line.36 =Name:LEFTAFTAPUJUNCTOAPUDCPUMP#Title:LeftAftAPUJuncToAPUDCPump#Source:LEFTAFTAPUJUNCTION#Destination:APUDCPUMP -Line.37 =Name:APUDCPUMPTOAPU#Title:APUDCPumpToAPU#Source:APUDCPUMP#Destination:APU -Line.38 =Name:LEFTAFTAPUJUNCTOLEFTAFTJUNC#Title:LeftAftAPUJuncToLeftAftJunc#Source:LEFTAFTAPUJUNCTION#Destination:LEFTAFTJUNCTION -Line.39 =Name:CENTERTANKTOSCAVENGEVALVELEFT#Title:CenterTankToScavengeValveLeft#Source:CENTER#Destination:SCAVENGEVALVELEFT#GravityBasedFuelFlow:500.0 -Line.40 =Name:CENTERTANKTOSCAVENGEVALVERIGHT#Title:CenterTankToScavengeValveRight#Source:CENTER#Destination:SCAVENGEVALVERIGHT#GravityBasedFuelFlow:500.0 -Line.41 =Name:SCAVENGEVALVELEFTTOLEFTMAINTANK#Title:ScavengeValveLeftToLeftMainTank#Source:SCAVENGEVALVELEFT#Destination:LEFTMAIN#GravityBasedFuelFlow:500.0 -Line.42 =Name:SCAVENGEVALVERIGHTTORIGHTMAINTANK#Title:ScavengeValveRightToRightMainTank#Source:SCAVENGEVALVERIGHT#Destination:RIGHTMAIN#GravityBasedFuelFlow:500.0 -Junction.1 =Name:LEFTAFTJUNCTION#Title:LeftAftJunction#InputOnlyLines:TANKLEFTAFTTOTANKLEFTAFTPUMP,LEFTAFTAPUJUNCTOLEFTAFTJUNC -Junction.2 =Name:LEFTXFEEDJUNCTION#Title:LeftXFeedJunction -Junction.3 =Name:LEFTFWDJUNCTION#Title:LeftFwdJunction#InputOnlyLines:TANKLEFTFWDPUMPTOLEFTFWDJUNC -Junction.4 =Name:APUJUNCTION#Title:APUJunction#InputOnlyLines:LEFTFWDJUNCTOAPUJUNC -Junction.5 =Name:RIGHTAFTJUNCTION#Title:RightAftJunction#InputOnlyLines:TANKRIGHTAFTTOTANKRIGHTAFTPUMP,TANKRIGHTAFTPUMPTORIGHTAFTJUNC -Junction.6 =Name:RIGHTXFEEDJUNCTION#Title:RightXFeedJunction -Junction.7 =Name:RIGHTFWDJUNCTION#Title:RightFwdJunction#InputOnlyLines:TANKRIGHTFWDPUMPTORIGHTFWDJUNC +Line.3 =Name:TANKLEFTTOTANKLEFTAFTPUMP#Title:TankLeftToTankLeftAftPump#Source:LEFTMAIN#Destination:LEFTAFTPUMP +Line.4 =Name:TANKLEFTAFTPUMPSJUNCTOLEFTAFTJUNC#Title:TankLeftAftPumpsJuncToLeftAftJunc#Source:LEFTAFTPUMPSJUNCTION#Destination:LEFTAFTJUNCTION +Line.5 =Name:TANKLEFTTOAPUDCPUMP#Title:TankLeftToApuDcPump#Source:LEFTMAIN#Destination:APUDCPUMP +Line.6 =Name:APUDCPUMPTODCAPUJUNC#Title:APUDCPumpToDCAPUJunction#Source:APUDCPUMP#Destination:DCAPUJUNCTION +Line.7 =Name:LEFTAFTJUNCTOLEFTXFEEDJUNC#Title:LeftAftJuncToLeftXFeedJunc#Source:LEFTAFTJUNCTION#Destination:LEFTXFEEDJUNCTION +Line.8 =Name:LEFTXFEEDJUNCTOLEFTFWDJUNC#Title:LeftXFeedJuncToLeftFwdJunc#Source:LEFTXFEEDJUNCTION#Destination:LEFTFWDJUNCTION +Line.9 =Name:TANKLEFTTOTANKLEFTFWDPUMP#Title:TankLeftToTankLeftFwdPump#Source:LEFTMAIN#Destination:LEFTFWDPUMP +Line.10 =Name:TANKLEFTFWDPUMPTOLEFTFWDJUNC#Title:TankLeftFwdPumpToLeftFwdJunc#Source:LEFTFWDPUMP#Destination:LEFTFWDJUNCTION +Line.11 =Name:LEFTFWDJUNCTOAPUJUNC#Title:LeftFwdJuncToAPUJunc#Source:LEFTFWDJUNCTION#Destination:APUJUNCTION +Line.12 =Name:APUJUNCTOLEFTENGVALVE#Title:APUJuncToLeftEngValve#Source:APUJUNCTION#Destination:LEFTENGVALVE +Line.13 =Name:LEFTENGVALVETOLEFTENGINE#Title:LeftEngValveToLeftEngine#Source:LEFTENGVALVE#Destination:LEFTENGINE +Line.14 =Name:TANKCENTERRTOTANKCENTERRPUMP#Title:TankCenterRToTankCenterRPump#Source:CENTER#Destination:CENTERRPUMP +Line.15 =Name:TANKCENTERRPUMPTORIGHTAFTJUNC#Title:TankCenterRPumpToRightAftJunc#Source:CENTERRPUMP#Destination:RIGHTAFTJUNCTION +Line.16 =Name:TANKRIGHTAFTTOTANKRIGHTAFTPUMP#Title:TankRightAftToTankRightAftPump#Source:RIGHTMAIN#Destination:RIGHTAFTPUMP +Line.17 =Name:TANKRIGHTAFTPUMPTORIGHTAFTJUNC#Title:TankRightAftPumpToRightAftJunc#Source:RIGHTAFTPUMP#Destination:RIGHTAFTJUNCTION +Line.18 =Name:RIGHTAFTJUNCTORIGHTXFEEDJUNC#Title:RightAftJuncToRightXFeedJunc#Source:RIGHTAFTJUNCTION#Destination:RIGHTXFEEDJUNCTION +Line.19 =Name:RIGHTXFEEDJUNCTORIGHTFWDJUNC#Title:RightXFeedJuncToRightFwdJunc#Source:RIGHTXFEEDJUNCTION#Destination:RIGHTFWDJUNCTION +Line.20 =Name:TANKRIGHTTOTANKRIGHTFWDPUMP#Title:TankRightToTankRightFwdPump#Source:RIGHTMAIN#Destination:RIGHTFWDPUMP +Line.21 =Name:TANKRIGHTFWDPUMPTORIGHTFWDJUNC#Title:TankRightFwdPumpToRightFwdJunc#Source:RIGHTFWDPUMP#Destination:RIGHTFWDJUNCTION +Line.22 =Name:RIGHTFWDJUNCTORIGHTENGVALVE#Title:RightFwdJuncToRightEngValve#Source:RIGHTFWDJUNCTION#Destination:RIGHTENGVALVE +Line.23 =Name:RIGHTENGVALVETORIGHTENGINE#Title:RightEngValveToRightEngine#Source:RIGHTENGVALVE#Destination:RIGHTENGINE +Line.24 =Name:APUDCJUNCTOAPU#Title:APUDCJuncToAPU#Source:DCAPUJUNCTION#Destination:APU +Line.25 =Name:LEFTXFEEDJUNCTOXFEEDVALVE#Title:LeftXFeedJuncToXFeedValve#Source:LEFTXFEEDJUNCTION#Destination:XFEEDVALVE +Line.26 =Name:RIGHTXFEEDJUNCTOXFEEDVALVE#Title:RightXFeedJuncToXFeedValve#Source:RIGHTXFEEDJUNCTION#Destination:XFEEDVALVE +Line.27 =Name:LEFTAFTJUNCTOLEFTJETTISONARMINGVALVE#Title:LeftAftJuncToLeftJettisonArmingValve#Source:LEFTAFTJUNCTION#Destination:LEFTJETTISONARMINGVALVE +Line.28 =Name:LEFTJETTISONARMINGVALVETOJETTISONLEFTJUNCTION#Title:LeftJettisonArmingValveToJettisonLeftJunction#Source:LEFTJETTISONARMINGVALVE#Destination:JETTISONLEFTJUNCTION +Line.29 =Name:JETTISONLEFTJUNCTOLEFTJETTISONVALVE#Title:JettisonLeftJuncToLeftJettisonValve#Source:JETTISONLEFTJUNCTION#Destination:LEFTJETTISONVALVE +Line.30 =Name:RIGHTAFTJUNCTORIGHTJETTISONARMINGVALVE#Title:RightAftJuncToRightJettisonArmingValve#Source:RIGHTAFTJUNCTION#Destination:RIGHTJETTISONARMINGVALVE +Line.31 =Name:RIGHTJETTISONARMINGVALVETOJETTISONRIGHTJUNC#Title:RightJettisonArmingValveToJettisonRightJunc#Source:RIGHTJETTISONARMINGVALVE#Destination:JETTISONRIGHTJUNCTION +Line.32 =Name:JETTISONRIGHTJUNCTORIGHTJETTISONVALVE#Title:JettisonRightJuncToRightJettisonValve#Source:JETTISONRIGHTJUNCTION#Destination:RIGHTJETTISONVALVE +Line.33 =Name:JETTISONLEFTJUNCTOJETTISONRIGHTJUNC#Title:JettisonLeftJuncToJettisonRightJunc#Source:JETTISONLEFTJUNCTION#Destination:JETTISONRIGHTJUNCTION +Line.34 =Name:LEFTAFTJUNCTOTRANSFERRIGHTVALVE#Title:LeftAftJuncToTransferRightValve#Source:LEFTAFTJUNCTION#Destination:TRANSFERRIGHTVALVE +Line.35 =Name:RIGHTAFTJUNCTOTRANSFERLEFTVALVE#Title:RightAftJuncToTransferLeftValve#Source:RIGHTAFTJUNCTION#Destination:TRANSFERLEFTVALVE +Line.36 =Name:TRANSFERLEFTVALVETOLEFTMAIN#Title:TransferLeftValveToLeftMain#Source:TRANSFERLEFTVALVE#Destination:LEFTMAIN +Line.37 =Name:TRANSFERRIGHTVALVETORIGHTMAIN#Title:TransferRightValveToRightMain#Source:TRANSFERRIGHTVALVE#Destination:RIGHTMAIN +Line.38 =Name:CENTERTANKTOSCAVENGEVALVELEFT#Title:CenterTankToScavengeValveLeft#Source:CENTER#Destination:SCAVENGEVALVELEFT#GravityBasedFuelFlow:500 +Line.39 =Name:CENTERTANKTOSCAVENGEVALVERIGHT#Title:CenterTankToScavengeValveRight#Source:CENTER#Destination:SCAVENGEVALVERIGHT#GravityBasedFuelFlow:500 +Line.40 =Name:SCAVENGEVALVELEFTTOLEFTMAINTANK#Title:ScavengeValveLeftToLeftMainTank#Source:SCAVENGEVALVELEFT#Destination:LEFTMAIN#GravityBasedFuelFlow:500 +Line.41 =Name:SCAVENGEVALVERIGHTTORIGHTMAINTANK#Title:ScavengeValveRightToRightMainTank#Source:SCAVENGEVALVERIGHT#Destination:RIGHTMAIN#GravityBasedFuelFlow:500 +Line.42 =Name:TANKLEFTTOTANKLEFTAFTMOCKPUMP#Title:TankLeftToTankLeftAftMockPump#Source:LEFTMAIN#Destination:LEFTAFTMOCKPUMP +Line.43 =Name:TANKLEFTAFTMOCKPUMPTOLEFTAFTPUMPSJUNC#Title:TankLeftAftMockPumpToLeftAftPumpsJunc#Source:LEFTAFTMOCKPUMP#Destination:LEFTAFTPUMPSJUNCTION +Line.44 =Name:APUJUNCTODCAPUJUNC#Title:ApuJuncToDcApuJunc#Source:APUJUNCTION#Destination:DCAPUJUNCTION +Line.45 =Name:TANKLEFTAFTPUMPTOLEFTAFTPUMPSJUNC#Title:TankLeftAftPumpToLeftAftPumpsJunc#Source:LEFTAFTPUMP#Destination:LEFTAFTPUMPSJUNCTION +Junction.1 =Name:LEFTAFTJUNCTION#Title:LeftAftJunction#InputOnlyLines:TANKCENTERLPUMPTOLEFTAFTJUNC,TANKLEFTAFTPUMPSJUNCTOLEFTAFTJUNC#OutputOnlyLines:LEFTAFTJUNCTOLEFTXFEEDJUNC +Junction.2 =Name:LEFTXFEEDJUNCTION#Title:LeftXFeedJunction#InputOnlyLines:LEFTAFTJUNCTOLEFTXFEEDJUNC +Junction.3 =Name:LEFTFWDJUNCTION#Title:LeftFwdJunction#InputOnlyLines:TANKLEFTFWDPUMPTOLEFTFWDJUNC#OutputOnlyLines:LEFTFWDJUNCTOAPUJUNC +Junction.4 =Name:APUJUNCTION#Title:APUJunction#InputOnlyLines:LEFTFWDJUNCTOAPUJUNC#OutputOnlyLines:APUJUNCTODCAPUJUNC,APUJUNCTOLEFTENGVALVE +Junction.5 =Name:RIGHTAFTJUNCTION#Title:RightAftJunction#InputOnlyLines:TANKCENTERRPUMPTORIGHTAFTJUNC,TANKRIGHTAFTPUMPTORIGHTAFTJUNC#OutputOnlyLines:RIGHTAFTJUNCTORIGHTXFEEDJUNC +Junction.6 =Name:RIGHTXFEEDJUNCTION#Title:RightXFeedJunction#InputOnlyLines:RIGHTAFTJUNCTORIGHTXFEEDJUNC +Junction.7 =Name:RIGHTFWDJUNCTION#Title:RightFwdJunction#InputOnlyLines:TANKRIGHTFWDPUMPTORIGHTFWDJUNC#OutputOnlyLines:RIGHTFWDJUNCTORIGHTENGVALVE Junction.8 =Name:JETTISONLEFTJUNCTION#Title:JettisonLeftJunction#InputOnlyLines:LEFTJETTISONARMINGVALVETOJETTISONLEFTJUNCTION Junction.9 =Name:JETTISONRIGHTJUNCTION#Title:JettisonRightJunction#InputOnlyLines:RIGHTJETTISONARMINGVALVETOJETTISONRIGHTJUNC -Junction.10 =Name:LEFTAFTAPUJUNCTION#Title:LeftAftAPUJunction#InputOnlyLines:TANKLEFTAFTPUMPTOLEFTAFTAPUJUNC#OutputOnlyLines:LEFTAFTAPUJUNCTOAPUDCPUMP,LEFTAFTAPUJUNCTOLEFTAFTJUNC -Valve.1 =Name:LEFTENGVALVE#Title:LeftEngValve#OpeningTime:3.0#Circuit:1 -Valve.2 =Name:RIGHTENGVALVE#Title:RightEngValve#OpeningTime:3.0#Circuit:2 -Valve.3 =Name:XFEEDVALVE#Title:XFeedValve#OpeningTime:3.0#Circuit:3 -Valve.4 =Name:LEFTJETTISONVALVE#Title:LeftJettisonValve#OpeningTime:3.0#Circuit:4 -Valve.5 =Name:RIGHTJETTISONVALVE#Title:RightJettisonValve#OpeningTime:3.0#Circuit:5 -Valve.6 =Name:TRANSFERLEFTVALVE#Title:TransferLeftValve#OpeningTime:3.0#Circuit:6 -Valve.7 =Name:TRANSFERRIGHTVALVE#Title:TransferRightValve#OpeningTime:3.0#Circuit:7 -Valve.8 =Name:LEFTJETTISONARMINGVALVE#Title:LeftJettisonArmingValve#OpeningTime:3.0#Circuit:8 -Valve.9 =Name:RIGHTJETTISONARMINGVALVE#Title:RightJettisonArmingValve#OpeningTime:3.0#Circuit:9 -Valve.10 =Name:SCAVENGEVALVELEFT#Title:ScavengeValveLeft#OpeningTime:3.0#Circuit:10 -Valve.11 =Name:SCAVENGEVALVERIGHT#Title:ScavengeValveRight#OpeningTime:3.0#Circuit:11 -Pump.1 =Name:CENTERLPUMP#Title:CenterLPump#Pressure:29#DestinationLine:TANKCENTERLPUMPTOLEFTAFTJUNC#TankFuelRequired:CENTER#Type:Electric#Index:1 -Pump.2 =Name:CENTERRPUMP#Title:CenterRPump#Pressure:29#DestinationLine:TANKCENTERRPUMPTORIGHTAFTJUNC#TankFuelRequired:CENTER#Type:Electric#Index:2 -Pump.3 =Name:LEFTAFTPUMP#Title:LeftAftPump#Pressure:25#DestinationLine:TANKLEFTAFTPUMPTOLEFTAFTAPUJUNC#TankFuelRequired:LEFTMAIN#Type:Electric#Index:3 -Pump.4 =Name:LEFTFWDPUMP#Title:LeftFwdPump#Pressure:25#DestinationLine:TANKLEFTFWDPUMPTOLEFTFWDJUNC#TankFuelRequired:LEFTMAIN#Type:Electric#Index:4 -Pump.5 =Name:RIGHTAFTPUMP#Title:RightAftPump#Pressure:25#DestinationLine:TANKRIGHTAFTPUMPTORIGHTAFTJUNC#TankFuelRequired:RIGHTMAIN#Type:Electric#Index:5 -Pump.6 =Name:RIGHTFWDPUMP#Title:RightFwdPump#Pressure:25#DestinationLine:TANKRIGHTFWDPUMPTORIGHTFWDJUNC#TankFuelRequired:RIGHTMAIN#Type:Electric#Index:6 -Pump.7 =Name:APUDCPUMP#Title:APUDCPump#Pressure:20#DestinationLine:APUDCPUMPTOAPU#TankFuelRequired:LEFTMAIN#Type:Electric#Index:7 -Trigger.1 = Name:AutoStart#Condition:Autostart_Enabled#Threshold:0.0#Index:-1#EffectTrue:OpenValve.LEFTENGVALVE,OpenValve.RIGHTENGVALVE,OpenValve.XFEEDVALVE,StartPump.CENTERLPUMP,StartPump.CENTERRPUMP,StartPump.LEFTAFTPUMP,StartPump.LEFTFWDPUMP,StartPump.RIGHTAFTPUMP,StartPump.RIGHTFWDPUMP#DelayTrue:0#DelayFalse:0 -Trigger.2 = Name:AutoShutdown#Condition:Autoshutdown_Enabled#Threshold:0.0#Index:-1#EffectTrue:CloseValve.LEFTENGVALVE,CloseValve.RIGHTENGVALVE,CloseValve.XFEEDVALVE,StopPump.CENTERLPUMP,StopPump.CENTERRPUMP,StopPump.LEFTAFTPUMP,StopPump.LEFTFWDPUMP,StopPump.RIGHTAFTPUMP,StopPump.RIGHTFWDPUMP#DelayTrue:0#DelayFalse:0 -Trigger.3 = Name:TransferLeftToRight#Condition:Manual#Threshold:0.0#Index:-1#EffectTrue:OpenValve.TRANSFERRIGHTVALVE#EffectFalse:CloseValve.TRANSFERRIGHTVALVE#DelayTrue:0#DelayFalse:0 -Trigger.4 = Name:TransferRightToLeft#Condition:Manual#Threshold:0.0#Index:-1#EffectTrue:OpenValve.TRANSFERLEFTVALVE#EffectFalse:CloseValve.TRANSFERLEFTVALVE#DelayTrue:0#DelayFalse:0 -Trigger.5 = Name:EndTransfer#Condition:TankAbsImbalanceBelow#Target:LEFTMAIN,RIGHTMAIN#Threshold:20.0#Index:-1#EffectTrue:StopTrigger.TRANSFERLEFTTORIGHT,StopTrigger.TRANSFERRIGHTTOLEFT#DelayTrue:0#DelayFalse:0 -Trigger.6 = Name:ScavengeFuel#Condition:TankQuantityBelow#Target:CENTER#Threshold:6060.0#Index:-1#EffectTrue:OpenValve.SCAVENGEVALVELEFT,OpenValve.SCAVENGEVALVERIGHT#EffectFalse:CloseValve.SCAVENGEVALVELEFT,CloseValve.SCAVENGEVALVERIGHT#DelayTrue:0#DelayFalse:0 - +Junction.10 =Name:DCAPUJUNCTION#Title:DCAPUJunction#InputOnlyLines:APUDCPUMPTODCAPUJUNC,APUJUNCTODCAPUJUNC#OutputOnlyLines:APUDCJUNCTOAPU +Junction.11 =Name:LEFTAFTPUMPSJUNCTION#Title:LeftAftPumpsJunction#InputOnlyLines:TANKLEFTAFTMOCKPUMPTOLEFTAFTPUMPSJUNC,TANKLEFTAFTPUMPTOLEFTAFTPUMPSJUNC#OutputOnlyLines:TANKLEFTAFTPUMPSJUNCTOLEFTAFTJUNC +Valve.1 =Name:LEFTENGVALVE#Title:LeftEngValve#OpeningTime:3#Circuit:1#DestinationLine:LEFTENGVALVETOLEFTENGINE +Valve.2 =Name:RIGHTENGVALVE#Title:RightEngValve#OpeningTime:3#Circuit:2#DestinationLine:RIGHTENGVALVETORIGHTENGINE +Valve.3 =Name:XFEEDVALVE#Title:XFeedValve#OpeningTime:3#Circuit:3 +Valve.4 =Name:LEFTJETTISONVALVE#Title:LeftJettisonValve#OpeningTime:3#Circuit:4 +Valve.5 =Name:RIGHTJETTISONVALVE#Title:RightJettisonValve#OpeningTime:3#Circuit:5 +Valve.6 =Name:TRANSFERLEFTVALVE#Title:TransferLeftValve#OpeningTime:3#Circuit:6 +Valve.7 =Name:TRANSFERRIGHTVALVE#Title:TransferRightValve#OpeningTime:3#Circuit:7 +Valve.8 =Name:LEFTJETTISONARMINGVALVE#Title:LeftJettisonArmingValve#OpeningTime:3#Circuit:8 +Valve.9 =Name:RIGHTJETTISONARMINGVALVE#Title:RightJettisonArmingValve#OpeningTime:3#Circuit:9 +Valve.10 =Name:SCAVENGEVALVELEFT#Title:ScavengeValveLeft#OpeningTime:3#Circuit:10#DestinationLine:SCAVENGEVALVELEFTTOLEFTMAINTANK +Valve.11 =Name:SCAVENGEVALVERIGHT#Title:ScavengeValveRight#OpeningTime:3#Circuit:11#DestinationLine:SCAVENGEVALVERIGHTTORIGHTMAINTANK +Pump.1 =Name:CENTERLPUMP#Title:CenterLPump#Pressure:29#TankFuelRequired:CENTER#DestinationLine:TANKCENTERLPUMPTOLEFTAFTJUNC#Type:Electric#Index:1 +Pump.2 =Name:CENTERRPUMP#Title:CenterRPump#Pressure:29#TankFuelRequired:CENTER#DestinationLine:TANKCENTERRPUMPTORIGHTAFTJUNC#Type:Electric#Index:2 +Pump.3 =Name:LEFTAFTPUMP#Title:LeftAftPump#Pressure:25#TankFuelRequired:LEFTMAIN#DestinationLine:TANKLEFTAFTPUMPTOLEFTAFTPUMPSJUNC#Type:Electric#Index:3 +Pump.4 =Name:LEFTFWDPUMP#Title:LeftFwdPump#Pressure:25#TankFuelRequired:LEFTMAIN#DestinationLine:TANKLEFTFWDPUMPTOLEFTFWDJUNC#Type:Electric#Index:4 +Pump.5 =Name:RIGHTAFTPUMP#Title:RightAftPump#Pressure:25#TankFuelRequired:RIGHTMAIN#DestinationLine:TANKRIGHTAFTPUMPTORIGHTAFTJUNC#Type:Electric#Index:5 +Pump.6 =Name:RIGHTFWDPUMP#Title:RightFwdPump#Pressure:25#TankFuelRequired:RIGHTMAIN#DestinationLine:TANKRIGHTFWDPUMPTORIGHTFWDJUNC#Type:Electric#Index:6 +Pump.7 =Name:APUDCPUMP#Title:APUDCPump#Pressure:20#TankFuelRequired:LEFTMAIN#DestinationLine:APUDCPUMPTODCAPUJUNC#Type:Electric#Index:7 +Pump.8 =Name:LEFTAFTMOCKPUMP#Title:LeftAftMockPump#Pressure:25#TankFuelRequired:LEFTMAIN#DestinationLine:TANKLEFTAFTMOCKPUMPTOLEFTAFTPUMPSJUNC#Type:Electric#Index:8 +Trigger.1 = Name:AutoStart#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Autostart_Enabled#EffectTrue:OpenValve.LEFTENGVALVE,OpenValve.RIGHTENGVALVE,OpenValve.XFEEDVALVE,StartPump.CENTERLPUMP,StartPump.CENTERRPUMP,StartPump.LEFTAFTPUMP,StartPump.LEFTFWDPUMP,StartPump.RIGHTAFTPUMP,StartPump.RIGHTFWDPUMP +Trigger.2 = Name:AutoShutdown#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Autoshutdown_Enabled#EffectTrue:CloseValve.LEFTENGVALVE,CloseValve.RIGHTENGVALVE,CloseValve.XFEEDVALVE,StopPump.CENTERLPUMP,StopPump.CENTERRPUMP,StopPump.LEFTAFTPUMP,StopPump.LEFTFWDPUMP,StopPump.RIGHTAFTPUMP,StopPump.RIGHTFWDPUMP +Trigger.3 = Name:TransferLeftToRight#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Manual#EffectTrue:OpenValve.TRANSFERRIGHTVALVE#EffectFalse:CloseValve.TRANSFERRIGHTVALVE +Trigger.4 = Name:TransferRightToLeft#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Manual#EffectTrue:OpenValve.TRANSFERLEFTVALVE#EffectFalse:CloseValve.TRANSFERLEFTVALVE +Trigger.5 = Name:ScavengeLeft#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Manual#EffectTrue:OpenValve.SCAVENGEVALVELEFT#EffectFalse:CloseValve.SCAVENGEVALVELEFT +Trigger.6 = Name:ScavengeRight#Threshold:0#Index:-1#DelayTrue:0#DelayFalse:0#Condition:Manual#EffectTrue:OpenValve.SCAVENGEVALVERIGHT#EffectFalse:CloseValve.SCAVENGEVALVERIGHT [AIRPLANE_GEOMETRY] wing_area =4058 @@ -173,7 +177,7 @@ wing_root_chord =50 wing_camber =1 wing_thickness_ratio =0.03 wing_dihedral =9 -wing_incidence =2 +wing_incidence =0 wing_twist =-3 oswald_efficiency_factor =0.73 wing_winglets_flag =0 @@ -184,7 +188,7 @@ htail_area =550 htail_span =64.3 htail_pos_lon =-115 htail_pos_vert =7 -htail_incidence =0 +htail_incidence =5 htail_sweep =45 htail_thickness_ratio =0.03 vtail_area =500 @@ -223,11 +227,12 @@ load_safety_factor =1.5 elevator_trim_neutral =0 aileron_to_rudder_scale =0 flap_to_aileron_scale =0 -fly_by_wire =1 +fly_by_wire =0 elevator_elasticity_table =0.000000:1.000000, 100.000000:1.000000, 250.000000:0.900000, 400.000000:0.330000 aileron_elasticity_table =0.000000:1.000000, 100.000000:1.000000, 250.000000:0.900000, 400.000000:0.330000 rudder_elasticity_table =0.000000:1.000000, 100.000000:1.000000, 250.000000:0.900000, 400.000000:0.330000 elevator_trim_elasticity_table =0.000000:1.000000, 100.000000:1.000000, 250.000000:0.900000, 400.000000:0.330000 +#elevator_trim_elasticity_table = 0:0.3, 100:0.35, 120:1, 400:1 # sim fbw (dga) air_spoiler_limit=45 spoiler_disabled_by_flaps=0 auto_spoiler_auto_retracts=1 @@ -237,19 +242,19 @@ lift_coef_pitch_rate =-47.77967 lift_coef_daoa =0 lift_coef_delta_elevator =-1.55198 lift_coef_horizontal_incidence =0 -lift_coef_flaps =1.0459 +lift_coef_flaps =1.6132 lift_coef_spoilers =-0.1 -drag_coef_zero_lift =0.025 -drag_coef_flaps =0.1595 -drag_coef_gear =0.005 -drag_coef_spoilers =0.1 +drag_coef_zero_lift =0.028 +drag_coef_flaps =0.1295 +drag_coef_gear =0.04373 +drag_coef_spoilers =0.035 side_force_slip_angle =-2.42571 side_force_roll_rate =1.73408 side_force_yaw_rate =16.58201 side_force_delta_rudder =-1.92396 pitch_moment_horizontal_incidence =0 -pitch_moment_delta_elevator =-5.58388 -pitch_moment_delta_trim =-5.58388 +pitch_moment_delta_elevator =-3.58388 +pitch_moment_delta_trim =-3.58388 pitch_moment_pitch_damping =-1112.32642 pitch_moment_aoa_0 =-0.08827 pitch_moment_daoa =0 @@ -275,8 +280,8 @@ yaw_moment_delta_rudder_propwash =0.17683 yaw_moment_delta_rudder_trim_scalar =0.70732 compute_aero_center =0 aero_center_lift =-15 -lift_coef_aoa_table =-3.150000:0.000000, -0.800000:-1.169000, -0.400000:-0.928000, -0.200000:-0.717000, -0.100000:-0.289000, 0.000000:0.317000, 0.200000:1.214000, 0.230000:1.287000, 0.260000:1.341000, 0.290000:1.264000, 0.310000:1.123000, 0.400000:0.941000, 0.800000:1.195000, 3.150000:0.000000 -lift_coef_ground_effect_mach_table =0.054000:1.1 +lift_coef_aoa_table =-3.150000:0.000000, -0.800000:-0.300000, -0.400000:-0.628000, -0.200000:-0.45, -0.112000:-0.200000, 0.000000:0.317000, 0.153000:1.00000, 0.164000:1.055000, 0.175000:1.101000, 0.192500:1.00000, 0.210000:0.600000, 0.220000:0.441000, 0.300000:0.195000, 0.400000:0.100000, 3.150000:0.000000 +lift_coef_ground_effect_mach_table =0.060000:0.22 lift_coef_mach_table =0.000000:1.000000 lift_coef_delta_elevator_mach_table =0.000000:0.000000 lift_coef_daoa_mach_table =0.000000:0.000000 @@ -319,28 +324,32 @@ elevator_scaling_table =0.000000:1.000000 aileron_scaling_table =0.000000:1.000000 rudder_scaling_table =0.000000:1.000000 aileron_load_factor_effectiveness_table =0.000000:1.000000 -lift_coef_at_drag_zero =0.3 -lift_coef_at_drag_zero_flaps =0.3 +lift_coef_at_drag_zero =0.317 +lift_coef_at_drag_zero_flaps =0.317 lift_coef_air_spoilers=-0.1 -elevator_lift_coef=5 -rudder_lift_coef=5 +elevator_lift_coef=3.14159 +rudder_lift_coef=1.25 fuselage_lateral_cx=0.4 drag_coef_air_spoilers=0.1 +StallDef_StartRatio=0.2 +StallDef_EndRatio=0.3 +Stall_TipAddTwist=0.01 +Stall_TipAddIncidence=-0.50 [FLIGHT_TUNING] modern_fm_only =1 cruise_lift_scalar =1 parasite_drag_scalar =1 -induced_drag_scalar =1.2 -flap_induced_drag_scalar =1.2 +induced_drag_scalar =1.3 +flap_induced_drag_scalar =1.3 elevator_effectiveness =0.75 elevator_maxangle_scalar =0.6 -aileron_effectiveness =1 +aileron_effectiveness =0.66 rudder_effectiveness =0.66 -rudder_maxangle_scalar =0.75 -pitch_stability =0.1 -roll_stability =0.1 -yaw_stability =0.1 +rudder_maxangle_scalar =0.33 +pitch_stability =1 +roll_stability =1 +yaw_stability =2.75 pitch_gyro_stability =2 roll_gyro_stability =2 yaw_gyro_stability =2 @@ -407,20 +416,14 @@ interactive_point.10 =0.400000 , -80.900002 , -5.200000, -5.000000, 1 , -92.0000 interactive_point.11 =0.330000 , -16.500000 , -63.849998, -12.600000, 3 , 0.000000, 0.000000, -90.000000 , 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 interactive_point.12 =0.330000 , 87.000000 , 10.800000, -10.470000, 4 , 0.000000, 0.000000, 45.000000 , 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 -[STALL PROTECTION] -stall_protection = 1 ; Stick Shaker -off_limit = 11.5 ; Stick Shaker Min -on_limit = 14.5 ; Stick Shaker Max - ;===================== FLAPS ===================== - [FLAPS.0] type=1 system_type=1 system_type_index=77 span-outboard=0.8 -extending-time=25 +extending-time=40 altitude-limit=20000 damaging-speed=200 blowout-speed=250 @@ -430,63 +433,61 @@ drag_scalar=1 pitch_scalar=1 max_on_ground_position=9 delay_between_flap_index=0 -flaps-position.0= 0, -1, 1, 1, 1, 0, 0 +flaps-position.0= 0, -1, 1, 1, 1, 0, 0 ; flaps 0 flaps-position-autoretract.0= -57.29578, -1, -1 flaps-position-maneuvering.0=0 flaps-position-speed-factor.0=0.000000:-1.000000 flaps-position-speed-override-above.0= -1, -1 flaps-position-speed-override-below.0= -1, -1 -flaps-position.1= 0, 260, 1, 1, 1, 0, 0 -flaps-position-inhibit.1=increasing,decreasing +flaps-position.1= 0, 260, 1, 1, 1, 0, 0 ; flaps 1 flaps-position-autoretract.1= -57.29578, -1, -1 flaps-position-maneuvering.1=0 flaps-position-speed-factor.1=0.000000:-1.000000 flaps-position-speed-override-above.1= -1, -1 flaps-position-speed-override-below.1= -1, -1 -flaps-position.2= 5, 240, 0.4, 1, 1, 0, 0 +flaps-position.2= 5, 240, 0.4, 1, 1, 0, 0.6; flaps 5 flaps-position-autoretract.2= -57.29578, -1, -1 flaps-position-maneuvering.2=0 flaps-position-speed-factor.2=0.000000:-1.000000 flaps-position-speed-override-above.2= -1, -1 flaps-position-speed-override-below.2= -1, -1 -flaps-position.3= 10, 230, 0.5, 1, 1, 0, 0 +flaps-position.3= 10, 230, 0.5, 1, 1, 0, 0.9 ; flaps 10 flaps-position-autoretract.3= -57.29578, -1, -1 flaps-position-maneuvering.3=0 flaps-position-speed-factor.3=0.000000:-1.000000 flaps-position-speed-override-above.3= -1, -1 flaps-position-speed-override-below.3= -1, -1 -flaps-position.4= 15, 225, 0.6, 1, 1, 0, 0 +flaps-position.4= 15, 225, 0.6, 1, 1, 0, 1.15 ; flaps 15 flaps-position-autoretract.4= -57.29578, -1, -1 flaps-position-maneuvering.4=0 flaps-position-speed-factor.4=0.000000:-1.000000 flaps-position-speed-override-above.4= -1, -1 flaps-position-speed-override-below.4= -1, -1 -flaps-position.5= 17, 220, 0.7, 1, 1, 0, 0 +flaps-position.5= 17, 220, 0.63, 1, 1, 0, 1.18 ; flaps 17 flaps-position-autoretract.5= -57.29578, -1, -1 flaps-position-maneuvering.5=0 flaps-position-speed-factor.5=0.000000:-1.000000 flaps-position-speed-override-above.5= -1, -1 flaps-position-speed-override-below.5= -1, -1 -flaps-position.6= 18, 215, 0.75, 1, 1, 0, 0 +flaps-position.6= 18, 215, 0.65, 1, 1, 0, 1.2 ; flaps 18 flaps-position-autoretract.6= -57.29578, -1, -1 flaps-position-maneuvering.6=0 flaps-position-speed-factor.6=0.000000:-1.000000 flaps-position-speed-override-above.6= -1, -1 flaps-position-speed-override-below.6= -1, -1 -flaps-position.7= 20, 210, 0.8, 1, 1, 0, 0 +flaps-position.7= 20, 210, 0.7, 1, 1, 0, 1.25 ; flaps 20 flaps-position-autoretract.7= -57.29578, -1, -1 flaps-position-maneuvering.7=0 flaps-position-speed-factor.7=0.000000:-1.000000 flaps-position-speed-override-above.7= -1, -1 flaps-position-speed-override-below.7= -1, -1 -flaps-position.8= 20, 190, 0.9, 1, 1, 0, 0 -flaps-position-inhibit.8=increasing,decreasing +flaps-position.8= 20, 190, 0.7, 1, 1, 0, 1.25 ; flaps 25 flaps-position-autoretract.8= -57.29578, -1, -1 flaps-position-maneuvering.8=0 flaps-position-speed-factor.8=0.000000:-1.000000 flaps-position-speed-override-above.8= -1, -1 flaps-position-speed-override-below.8= -1, -1 -flaps-position.9= 30, 180, 1, 1, 1, 0, 0 +flaps-position.9= 30, 180, 0.8, 0.725, 1, 0, 1.25 ; flaps 30 flaps-position-autoretract.9= -57.29578, -1, -1 flaps-position-maneuvering.9=0 flaps-position-speed-factor.9=0.000000:-1.000000 @@ -497,7 +498,7 @@ type=2 system_type=1 system_type_index=76 span-outboard=0.8 -extending-time=8 +extending-time=20 altitude-limit=20000 damaging-speed=250 blowout-speed=300 @@ -507,61 +508,61 @@ drag_scalar=0.5 pitch_scalar=0.5 max_on_ground_position=9 delay_between_flap_index=0 -flaps-position.0= 0, -1, 1, 1, 1, 0, 0 +flaps-position.0= 0, -1, 1, 1, 1, 0, 0 ; flaps 0 flaps-position-autoretract.0= -57.29578, -1, -1 flaps-position-maneuvering.0=0 flaps-position-speed-factor.0=0.000000:-1.000000 flaps-position-speed-override-above.0= -1, -1 flaps-position-speed-override-below.0= -1, -1 -flaps-position.1= 15, 260, 0.5, 1, 1, 0, 0 +flaps-position.1= 15, 260, 0.5, 1, 1, 0, 0 ; flaps 1 flaps-position-autoretract.1= -57.29578, -1, -1 flaps-position-maneuvering.1=0 flaps-position-speed-factor.1=0.000000:-1.000000 flaps-position-speed-override-above.1= -1, -1 flaps-position-speed-override-below.1= -1, -1 -flaps-position.2= 15.572958, 240, 0.5, 1, 1, 0, 0 +flaps-position.2= 15.572958, 240, 0.5, 1, 1, 0, 0.6 ; flaps 5 flaps-position-autoretract.2= -57.29578, -1, -1 flaps-position-maneuvering.2=0 flaps-position-speed-factor.2=0.000000:-1.000000 flaps-position-speed-override-above.2= -1, -1 flaps-position-speed-override-below.2= -1, -1 -flaps-position.3= 16.145916, 230, 0.5, 1, 1, 0, 0 +flaps-position.3= 16.145916, 230, 0.5, 1, 1, 0, 0.7 ; flaps 10 flaps-position-autoretract.3= -57.29578, -1, -1 flaps-position-maneuvering.3=0 flaps-position-speed-factor.3=0.000000:-1.000000 flaps-position-speed-override-above.3= -1, -1 flaps-position-speed-override-below.3= -1, -1 -flaps-position.4= 16.718873, 225, 0.5, 1, 1, 0, 0 +flaps-position.4= 16.718873, 225, 0.5, 1, 1, 0, 0.8 ; flaps 15 flaps-position-autoretract.4= -57.29578, -1, -1 flaps-position-maneuvering.4=0 flaps-position-speed-factor.4=0.000000:-1.000000 flaps-position-speed-override-above.4= -1, -1 flaps-position-speed-override-below.4= -1, -1 -flaps-position.5= 17.291831, 220, 0.5, 1, 1, 0, 0 +flaps-position.5= 17.291831, 220, 0.5, 1, 1, 0, 0.9 ; flaps 17 flaps-position-autoretract.5= -57.29578, -1, -1 flaps-position-maneuvering.5=0 flaps-position-speed-factor.5=0.000000:-1.000000 flaps-position-speed-override-above.5= -1, -1 flaps-position-speed-override-below.5= -1, -1 -flaps-position.6= 17.864789, 215, 0.5, 1, 1, 0, 0 +flaps-position.6= 17.864789, 215, 0.5, 1, 1, 0, 0.95 ; flaps 18 flaps-position-autoretract.6= -57.29578, -1, -1 flaps-position-maneuvering.6=0 flaps-position-speed-factor.6=0.000000:-1.000000 flaps-position-speed-override-above.6= -1, -1 flaps-position-speed-override-below.6= -1, -1 -flaps-position.7= 18.437747, 210, 0.5, 1, 1, 0, 0 +flaps-position.7= 18.437747, 210, 0.5, 1, 1, 0, 1 ; flaps 20 flaps-position-autoretract.7= -57.29578, -1, -1 flaps-position-maneuvering.7=0 flaps-position-speed-factor.7=0.000000:-1.000000 flaps-position-speed-override-above.7= -1, -1 flaps-position-speed-override-below.7= -1, -1 -flaps-position.8= 31, 190, 1, 1, 1, 0, 0 +flaps-position.8= 31, 190, 1, 0.58, 1, 0, 1 ; flaps 25 flaps-position-autoretract.8= -57.29578, -1, -1 flaps-position-maneuvering.8=0 flaps-position-speed-factor.8=0.000000:-1.000000 flaps-position-speed-override-above.8= -1, -1 flaps-position-speed-override-below.8= -1, -1 -flaps-position.9= 31.572958, 180, 1, 1, 1, 0, 0 +flaps-position.9= 31.572958, 180, 1, 0.58, 1, 0, 1 ; flaps 30 flaps-position-autoretract.9= -57.29578, -1, -1 flaps-position-maneuvering.9=0 flaps-position-speed-factor.9=0.000000:-1.000000 diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/gameplay.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/gameplay.cfg new file mode 100644 index 00000000..e7910c5f --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/gameplay.cfg @@ -0,0 +1,34 @@ +[VERSION] +major = 1 +minor = 0 + +[KEYBOARD_RESPONSE] +elevator = 150, 250 +aileron = 150, 250 +rudder = 150, 250 + +[FORCEFEEDBACK] +gear_bump_nose_magnitude = 3000 ; 0 - 10000 +gear_bump_nose_direction = 18000 ; 0 - 35999 degrees +gear_bump_nose_duration = 250000 ; in microseconds +gear_bump_left_magnitude = 2700 ; 0 - 10000 +gear_bump_left_direction = 35500 ; 0 - 35999 degrees +gear_bump_left_duration = 250000 ; in microseconds +gear_bump_right_magnitude = 2700 ; 0 - 10000 +gear_bump_right_direction = 00500 ; 0 - 35999 degrees +gear_bump_right_duration = 250000 ; in microseconds +ground_bumps_magnitude1 = 1300 ; 0 - 10000 +ground_bumps_angle1 = 08900 ; 0 - 35999 degrees +ground_bumps_intercept1 = 3.0 +ground_bumps_slope1 = 0.20 +ground_bumps_magnitude2 = 200 ; 0 - 10000 +ground_bumps_angle2 = 09100 ; 0 - 35999 degrees +ground_bumps_intercept2 = 1.075 +ground_bumps_slope2 = 0.035 +crash_magnitude1 = 10000 ; 0 - 10000 +crash_direction1 = 01000 ; 0 - 35999 degrees +crash_magnitude2 = 10000 ; 0 - 10000 +crash_direction2 = 9000 ; 0 - 35999 degrees +crash_period2 = 75000 ; in microseconds +crash_duration2 = 2500000 ; in microseconds + diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/hangar.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/hangar.flt new file mode 100644 index 00000000..8bc8fa6c --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/hangar.flt @@ -0,0 +1,195 @@ +[Avionics.0] +Comm1Active=124.850 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=0 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=False + +[Engine Parameters.1.0] +ThrottleLeverPct=0 +PropellerLeverPct=0.99951171875 +MixtureLeverPct=0.99951171875 +Pct Engine RPM=0 +MaxReachedEngineRPM=6479.5241826773144567 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +FuelPumpSwitch_EX1=0 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 + +[Engine Parameters.2.0] +ThrottleLeverPct=0 +PropellerLeverPct=0.99951171875 +MixtureLeverPct=0.99951171875 +Pct Engine RPM=0 +MaxReachedEngineRPM=6479.5241826773144567 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +FuelPumpSwitch_EX1=0 +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +IgnitionSwitch=0 +Afterburner=0 + +[FuelSystem.0] +Valve.1=False +Valve.2=False +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=False +Pump.2=False +Pump.3=False +Pump.4=False +Pump.5=False +Pump.6=False + + +[Systems.0] +BatterySwitch=False +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=0 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=False +PanelLights=False +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=29.921342849731445313 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=False +LogoLights=False +NavLights=False +PanelLights=False +RecognitionLights=False +StrobeLights=False +TaxiLights=False +WingLights=False +CabinLights=False +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=0 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=0 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=False +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.01 +Gear1=100.00 +Gear2=100.00 +Gear3=100.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=100.00 +RightBrake=100.00 +ParkingBrake=100.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787.xml b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787.xml new file mode 100644 index 00000000..77c8faac --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787.xml @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WING_BONE_LEFT_01 + + WING_BONE_LEFT_02 + + WING_BONE_LEFT_03 + + WING_BONE_LEFT_04 + + WING_BONE_RIGHT_01 + + WING_BONE_RIGHT_02 + + WING_BONE_RIGHT_03 + + WING_BONE_RIGHT_04 + + Engine_PIVOT_LEFT_1 + + Engine_PIVOT_LEFT_2 + + Engine_PIVOT_RIGHT_1 + + Engine_PIVOT_RIGHT_2 + + + + + + + + + c_gear + + + C_Door_02_right_LIVERYDECALS + + + C_Door_02_Left_LIVERYDECALS + + + l_gear + + + Door01_left_LIVERYDECAL + + + r_gear + + CAM_LANDINGGEARS + 0.5 + Both + + + Door01_right_LIVERYDECAL + + + c_tire_key + Wheel_Nose_center + Wheel_Nose_blurred + + + l_tire_key + LWHEEL_01_STILL + LWHEEL_01_BLURRED + LWHEEL_02_STILL + LWHEEL_02_BLURRED + + + r_tire_key + RWHEEL_01_STILL + RWHEEL_01_BLURRED + RWHEEL_02_STILL + RWHEEL_02_BLURRED + + + c_wheel + + + + + elevator_percent_key + + + True + trimtab_elevator_key + + + l_aileron_percent_key + r_aileron_percent_key + + + rudder_percent_key + True + + + RUDDER_LIVERYDECAL + True + + + CAM_SPOILERS + 0.5 + Both + l_spoiler_key + r_spoiler_key + + + 0 + l_flaperon_percent_key + r_flaperon_percent_key + + + l_flap_percent_key + r_flap_percent_key + + CAM_FLAPS01 + 0.01 + Both + CAM_FLAPS02 + 0.15 + Both + CAM_FLAPS03 + 0.29 + Both + CAM_FLAPS04 + 0.43 + Both + CAM_FLAPS05 + 0.58 + Both + + + l_slats_percent_key + r_slats_percent_key + + + 73 + + + + + 1 + 8000 + 19000 + 1_STILL_LEFT + 1_SLOW_LEFT + 1_BLURRED_LEFT + B787:Reactor_Prop_Still_left + N1_1_anim + + + 2 + 8000 + 19000 + 2_STILL_RIGHT + 2_SLOW_RIGHT + 2_BLURRED_RIGHT + B787:Reactor_Prop_Still_right + N1_2_anim + + + 1 + thrust_rev_1 + + + 2 + thrust_rev_2 + + + + + 8 + door_cargo + + + 8 + Cargo_Door_LIVERYDECAL + + + 0 + door_passenger + + + 7 + door_rear + + + 11 + GROUND_FUELPIPE + + + 12 + GROUND_GPUPIPE + + + + + + + + diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_10_interior.xml b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_10_interior.xml new file mode 100644 index 00000000..67cf0b92 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_10_interior.xml @@ -0,0 +1,2045 @@ + + + + + + + + + + + + + + + + + + + + + + @HID_CAPITAN + + + + + + + + + + + + + + + + @HID_FO + + + + + + + + + + + + + + + + + + + + + BOEING + 24 + + @ALT_CODE_DEFAULT + @HG_FALSE + @HG_TRUE + @HG_TRUE + + + + + + + + 1 + 0 + @HG_FALSE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + 2 + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + 2 + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + 2 + + + + + + + + 3 + + + + + + + + + 1 + 1 + + + + + + + + 2 + 1 + + + + + + + + 1 + 2 + + + + + + + + 2 + 2 + + + + + + + + + + + 1 + 1 + @HG_TRUE + + + + + + + + + 2 + 1 + @HG_TRUE + + + + + + + + + 1 + 2 + @HG_TRUE + + + + + + + + + + + + + 2 + 2 + @HG_TRUE + @HG_TRUE + + + + + + + + + + + + + + + + + + + Fwd_L + @HG_TRUE + + + + + + + + Fwd_R + @HG_TRUE + + + + + + + + + + Side_L + + + + + + + + Fwd_L + + + + + + + + Side_R + + + + + + + + Fwd_R + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + 2 + + + + + + + + + + L + + + + + + + + C1 + + + + + + + + C2 + + + + + + + + R + + + + + + + + + + DECALS_Text_181 + (A:HYDRAULIC RESERVOIR PERCENT:2, Percent) 1 < (L:B78XH_HYDRAULIC_ELEC_L_SWITCH_STATE, Number) 0 == or + @HG_TRUE + + + + + + + + DECALS_Text_423 + (A:HYDRAULIC RESERVOIR PERCENT:2, Percent) 1 < (L:B78XH_HYDRAULIC_ELEC_C1_SWITCH_STATE, Number) 0 == or + @HG_TRUE + + + + + + + + DECALS_Text_424 + (A:HYDRAULIC RESERVOIR PERCENT:2, Percent) 1 < (L:B78XH_HYDRAULIC_ELEC_C2_SWITCH_STATE, Number) 0 == or + @HG_TRUE + + + + + + + + DECALS_Text_182 + (A:HYDRAULIC RESERVOIR PERCENT:2, Percent) 1 < (L:B78XH_HYDRAULIC_ELEC_R_SWITCH_STATE, Number) 0 == or + @HG_TRUE + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + LIGHTING_Knob_MasterBright + LIGHTING_Knob_MasterBright + 31 + @TT_Package.LIGHTING_KNOB_MASTERBRIGHT_TITLE + @TT_Package.LIGHTING_KNOB_MASTERBRIGHT_ACTION + + + + + LIGHTING_Push_MasterBright + (L:XMLVAR_LightMasterActive) ! (>L:XMLVAR_LightMasterActive) + %((L:XMLVAR_LightMasterActive, Bool))%{if}TT:COCKPIT.TOOLTIPS.LIGHTING_KNOB_MASTER_BRIGHTNESS_TURN_OFF%{else}TT:COCKPIT.TOOLTIPS.LIGHTING_KNOB_MASTER_BRIGHTNESS_TURN_ON%{end} + lighting_masterbright_knob_push_on + 0.1 + lighting_masterbright_knob_push_off + 0.5 + + + + + + + + + + @HG_TRUE + @TT_Package.AIRLINER_LIGHTING_SWITCH_LIGHT_LANDING_ACTION + ONOFF + + + 1 + 2 + @TT_Left + + + + 2 + 3 + @TT_Right + + + + 3 + LIGHTING_Switch_Light_Landing_Nose + LIGHTING_Switch_Light_Landing_Nose + 1 + (R:1:@TT_Package.GT_STATE_NOSE) + + + + + + + + + + + + + + + + + 1 + @HG_TRUE + + + + + + + + + 2 + @HG_TRUE + + + + + + + + + + 1 + + + + + + + + 2 + + + + + + + + + + + + + BOEING + AS01B + + + + + + + 1 + FUEL_Push_Pump_Center_1 + FUEL_Push_Pump_Center_1 + 2 + Center_L + + + + + + + + 2 + FUEL_Push_Pump_Center_2 + FUEL_Push_Pump_Center_2 + 13 + Center_R + + + + + + + + 3 + FUEL_Push_Pump_1_AFT + FUEL_Push_Pump_1_AFT + 4 + Aft_L + + + + + + + + 5 + FUEL_Push_Pump_2_AFT + FUEL_Push_Pump_2_AFT + 15 + Aft_R + + + + + + + + 4 + FUEL_Push_Pump_1_FWD + FUEL_Push_Pump_1_FWD + 8 + Fwd_L + + + + + + + + 6 + FUEL_Push_Pump_2_FWD + FUEL_Push_Pump_2_FWD + 19 + Fwd_R + + + + + + + + 3 + FUEL_Push_Valve_1 + FUEL_Push_Valve_1 + Xfeed + + + + + + + + + + + + + + BOEING + + + + + + + 4 + FUEL_Push_Nozzle_1 + FUEL_Push_Nozzle_1 + FUEL_Push_Nozzle_1_Cover + FUEL_Push_Nozzle_1_Cover + Nozzle_L + + + + + + + + 5 + FUEL_Push_Nozzle_2 + FUEL_Push_Nozzle_2 + FUEL_Push_Nozzle_2_Cover + FUEL_Push_Nozzle_2_Cover + Nozzle_R + + + + + + + + 8 + 9 + FUEL_Push_Jettison_Arm + FUEL_Push_Jettison_Arm + Jettison + + + + + + + + + + + + OFF_AUTO_ON + ON_AUTO_OFF + HORIZONTAL + CURVED + ROTATE + + + + + + + + + + + + + + 1 + + + + + + + + + 2 + + + + + + + + + + AIRLINER + 24 + @HG_FALSE + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + OnOff + @HG_TRUE + + + + + + + 2 + LIGHTING_Switch_RunwayTurnOff_L + LIGHTING_Switch_RunwayTurnOff_L + 2 + @TT_Package.LIGHTING_SWITCH_LIGHT_RUNWAY_TITLE + @TT_Package.LIGHTING_SWITCH_LIGHT_RUNWAY_ACTION + (R:1:@TT_Package.GT_STATE_LEFT) + + + + + + + + 3 + LIGHTING_Switch_RunwayTurnOff_R + LIGHTING_Switch_RunwayTurnOff_R + 3 + @TT_Package.LIGHTING_SWITCH_LIGHT_RUNWAY_TITLE + @TT_Package.LIGHTING_SWITCH_LIGHT_RUNWAY_ACTION + (R:1:@TT_Package.GT_STATE_RIGHT) + + + + + + + + 1 + LIGHTING_Switch_Light_Taxi_1 + LIGHTING_Switch_Light_Taxi_1 + 1 + @TT_Package.LIGHTING_SWITCH_LIGHT_TAXI_TITLE + @TT_Package.LIGHTING_SWITCH_LIGHT_TAXI_ACTION_SET + + + + + + + + + + + + + + + + + + + + + + Cargo + + + + + + + + + + @HG_TRUE + Decals_Text_224 + Decals_Text_213 + + + + + + + + + + + + + + + FlightDeck + + + + + + + + Cabin + + + + + + + + + + Packs_1 + @HG_TRUE + PRESSURIZATION_Push_Packs_1_SEQ1 + PRESSURIZATION_Push_Packs_1_SEQ2 + + + + + + + + L_TrimAir + @HG_TRUE + Decals_Text_446 + Decals_Text_218 + + + + + + + + R_TrimAir + @HG_TRUE + Decals_Text_447 + Decals_Text_219 + + + + + + + + Packs_2 + @HG_TRUE + PRESSURIZATION_Push_Packs_2_SEQ1 + PRESSURIZATION_Push_Packs_2_SEQ2 + + + + + + + + + equipFwd + PRESSURIZATION_equipFwd + @HG_TRUE + Decals_Text_225 + Decals_Text_214 + + + + + + + + coolingAft + PRESSURIZATION_coolingAft + @HG_TRUE + Decals_Text_226 + Decals_Text_215 + + + + + + + + recircUpper + @HG_TRUE + Decals_Text_227 + Decals_Text_216 + + + + + + + + + fansLower + PRESSURIZATION_fansLower + @HG_TRUE + Decals_Text_228 + Decals_Text_444 + + + + + + + + + + + + + + + + + PRESSURIZATION_Push_fwd + PRESSURIZATION_Push_fwd + B78XH + PRESSURIZATION_Push_fwd + @HG_TRUE + Decals_Text_231 + Decals_Text_222 + battery_switch_on + battery_switch_off + + + + + + + + PRESSURIZATION_Push_aft + PRESSURIZATION_Push_aft + B78XH + PRESSURIZATION_Push_aft + @HG_TRUE + Decals_Text_232 + Decals_Text_223 + battery_switch_on + battery_switch_off + + + + + + + + + + + L + + + + R + + + + + + LIGHTING_Knob_LowerDisplay_Brightness + LIGHTING_Knob_LowerDisplay_Brightness + 30 + @TT_Package.LIGHTING_KNOB_LOWERDISPLAY_BRIGHTNESS_TITLE + @TT_Package.LIGHTING_KNOB_LOWERDISPLAY_BRIGHTNESS_ACTION + + + + + + + + + @ALT_CODE_DEFAULT + + + + + @HID_CAPITAN + 10 + 10 + @HG_TRUE + @HG_TRUE + AS01B + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21 + @HG_TRUE + AS01B + + + + + + + + + + + + + + + + + + + + + L + + + + R + + + + + + + + + + + + + + + + + + @HID_FO + 10 + 10 + @HG_TRUE + @HG_TRUE + AS01B + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21 + @HG_TRUE + AS01B + + + + + + + + + + + + + + + + + + + + + L + + + + R + + + + + + + + + + + + + + + + + + + + 10 + 10 + @HG_TRUE + @HG_TRUE + AS01B + + + + + + + @HG_FALSE + + + + @HID_CAPITAN + + + + + + + + + + @HID_FO + + + + + + + @HID_CAPITAN + 2 + + + + + + + + + + L + + + R + + + + + + + + + + + + + + + + + + + + AS01B + + + + + + + + + + + + + + + AS01B + + + + + + + + + + + + + + + + + AS01B + + + + + + + + + + + + + + + + AS01B + + + + + + + + + + + + + + + AS01B + + + + + + + + + + + + + + + + @HID_CAPITAN + + + + Screen_PFD_#ID# + 27 + 23 + + + + Screen_MFD_#ID# + 26 + 25 + + + + + + CAPITAN_OUTBOARD_DISPLAY_AMBIENT + 32 + 23 + (A:LIGHT POTENTIOMETER:27, Percent) 0.5 * 1 + (L:B787_10_PFD_ScreenLuminosity) * + + + + CAPITAN_INBOARD_DISPLAY_AMBIENT + 33 + 25 + (A:LIGHT POTENTIOMETER:26, Percent) 0.5 * 1 + (L:B787_10_MFD_1_ScreenLuminosity) * + + + + + + DISPLAY_Knob_Mode_#ID# + 50 + + + + + + + @HID_FO + + + + Screen_PFD_#ID# + 29 + 23 + + + + Screen_MFD_#ID# + 28 + 26 + + + + + + FIRST_OFFICER_OUTBOARD_DISPLAY_AMBIENT + 35 + 23 + (A:LIGHT POTENTIOMETER:29, Percent) 0.5 * 1 + (L:B787_10_PFD_ScreenLuminosity) * + + + + FIRST_OFFICER_INBOARD_AMBIENT + 34 + 26 + (A:LIGHT POTENTIOMETER:28, Percent) 0.5 * 1 + (L:B787_10_MFD_2_ScreenLuminosity) * + + + + + + DISPLAY_Knob_Mode_#ID# + 50 + + + + + + + + Screen_AttitudeDisplay + @EMISSIVE_CODE_DEFAULT + + + + + + + + + + + + + + + + + + + + + + + + @HID_CAPITAN + + + + + LIGHTING_Knob_PFD_#ID#_Brightness + LIGHTING_Knob_PFD_#ID#_Brightness + 27 + + + + LIGHTING_Knob_MFD_#ID#_Brightness + LIGHTING_Knob_MFD_#ID#_Brightness + 26 + + + + + + + @HID_FO + + + + + LIGHTING_Knob_PFD_#ID#_Brightness + LIGHTING_Knob_PFD_#ID#_Brightness + 29 + + + + LIGHTING_Knob_MFD_#ID#_Brightness + LIGHTING_Knob_MFD_#ID#_Brightness + 28 + + + + + + + @ALT_CODE_DEFAULT + + + + + 3 + Screen_MFD_3 + 30 + 27 + + + + + + @HID_CAPITAN + 23 + 0.5 + + + + + + + + + + @HID_FO + 23 + 0.5 + + TRUE + + + + + + + + + + @ALT_CODE_DEFAULT + + + + + + + + + 2 + + + + + + + + + + + + + 1 + + + + 2 + + + + + + 1 + + + + 2 + + + + + + + L + + + + R + + + + + + + + + + HANDLING_Knob_FlapsMode + 50 + + + + + + + @ALT_CODE_DEFAULT + + + + + @HID_CAPITAN + + + + + + + + + + + + + @HID_FO + + + + + + + + + + + + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + @HID_CAPITAN + + + + + + + + @HID_FO + + + + + + + + + + + Minimal + + (A:LIGHT POTENTIOMETER:26, Percent) + (A:LIGHT POTENTIOMETER:27, Percent) + + (A:LIGHT POTENTIOMETER:28, Percent) + + (A:LIGHT POTENTIOMETER:29, Percent) + + (A:LIGHT POTENTIOMETER:30, Percent) + + 5 / + (A:LIGHT POTENTIOMETER:31, Percent) + (A:LIGHT POTENTIOMETER:23, Percent) + (A:LIGHT POTENTIOMETER:24, Percent) + + (A:LIGHT POTENTIOMETER:17, Percent) + + (A:LIGHT POTENTIOMETER:19, Percent) + + 4 / + (L:XMLVAR_LightMasterActive) ? + max + + 40 + + + + + + + + + + + 5 + + + + @HID_CAPITAN + @POT_LIGHT_BASE_CAPITAN + + + + + @TT_Package.LIGHTING_SWITCH_LIGHT_FLOODLIGHT_BRIGHTNESS_PILOT_TITLE + @TT_Package.LIGHTING_SWITCH_LIGHT_FLOODLIGHT_BRIGHTNESS_PILOT_ACTION + + + + + + @HG_FALSE + 1 + + + + + + + + @HID_FO + #@POT_LIGHT_BASE_FIRST_OFFICER + + + + + @TT_Package.LIGHTING_SWITCH_LIGHT_FLOODLIGHT_BRIGHTNESS_COPILOT_TITLE + @TT_Package.LIGHTING_SWITCH_LIGHT_FLOODLIGHT_BRIGHTNESS_COPILOT_ACTION + + + + + + @HG_FALSE + 2 + + + + + + + + 2 + LIGHTING_Knob_Flood_Glareshield + LIGHTING_Knob_Flood_Glareshield + @POT_LIGHT_FLOODLIGHT_GLARESHIELD + 2 + @TT_Package.LIGHTING_KNOB_GLARESHIELD_TITLE + @TT_Package.LIGHTING_KNOB_GLARESHIELD_ACTION + + + + 4 + LIGHTING_Knob_Dome + LIGHTING_Knob_Dome + @POT_LIGHT_FLOODLIGHT_DOME + 4 + @TT_Package.AIRLINER_OVHD_KNOB_LIGHT_DOME_TITLE + @TT_Package.AIRLINER_OVHD_KNOB_LIGHT_DOME_ACTION + + + + 3 + LIGHTING_Knob_Flood_Pedestal + LIGHTING_Knob_Flood_Pedestal + @POT_LIGHT_FLOODLIGHT_AISLE_STAND + 3 + @TT_Package.AIRLINER_OVHD_KNOB_LIGHT_GLARESHIELD_PANELFLOOD2_TITLE + @TT_Package.AIRLINER_OVHD_KNOB_LIGHT_GLARESHIELD_PANELFLOOD2_ACTION + + + + + + + LIGHTING_Knob_Panel_Overhead + LIGHTING_Knob_Panel_Overhead + @POT_LIGHT_BACKLIGHT_OVERHEAD + 4 + @TT_Package.LIGHTING_KNOB_SUBPANEL_TITLE + @TT_Package.LIGHTING_KNOB_SUBPANEL_ACTION + + + + LIGHTING_Knob_Panel_Pedestal + LIGHTING_Knob_Panel_Pedestal + @POT_LIGHT_BACKLIGHT_AISLE_STAND + 3 + @HG_FALSE + + + + LIGHTING_Knob_Panel_Glareshield + LIGHTING_Knob_Panel_Glareshield + @POT_LIGHT_BACKLIGHT_GLARESHIELD + @TT_Package.LIGHTING_KNOB_GLARESHIELDBRIGHTNESS_TITLE + @TT_Package.LIGHTING_KNOB_GLARESHIELDBRIGHTNESS_ACTION_SET + + + + + + + + + (A:LIGHT POTENTIOMETER:31, Percent over 100) 0 (L:XMLVAR_LightMasterActive) ? + + + + @HID_CAPITAN + @POT_LIGHT_FLOODLIGHT_CAPITAN + + + + LIGHTING_Flood_#ID#_Emissive + 1 + + + + + + + @HID_FO + @POT_LIGHT_FLOODLIGHT_FIRST_OFFICER + + + + LIGHTING_Flood_#ID#_Emissive + 1 + + + + + + + LIGHTING_Flood_Glareshield_Emissive + @POT_LIGHT_FLOODLIGHT_GLARESHIELD + 2 + + + + LIGHTING_Dome_Emissive + @POT_LIGHT_FLOODLIGHT_DOME + 4 + + + + + LIGHTING_Storm_Emissive + @POT_LIGHT_FLOODLIGHT_DOME + 4 + + + + + ceiling_light_r + @POT_LIGHT_FLOODLIGHT_DOME + 4 + + + + LIGHTING_Flood_Pedestal_Emissive + @POT_LIGHT_FLOODLIGHT_AISLE_STAND + 3 + + + + + + + + (A:LIGHT POTENTIOMETER:31, Percent over 100) 0 (L:XMLVAR_LightMasterActive) ? + + + + + @HID_CAPITAN + @POT_LIGHT_BACKLIGHT_CAPITAN + + + + + + + + @HID_FO + @POT_LIGHT_BACKLIGHT_FIRST_OFFICER + + + + + + + + LIGHTING_Backlight_Glareshield_Emissive + @POT_LIGHT_BACKLIGHT_GLARESHIELD + @EMISSIVE_CODE_DEFAULT + + + + @POT_LIGHT_BACKLIGHT_OVERHEAD + + + + @POT_LIGHT_BACKLIGHT_AISLE_STAND + + + + @POT_LIGHT_BACKLIGHT_AISLE_STAND + + + + + + + + + IAS + + + + HDG + + + + VSPEED + + + + ALT + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.bin new file mode 100644 index 00000000..bf6769a1 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.gltf new file mode 100644 index 00000000..468189f0 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod0.gltf @@ -0,0 +1,50752 @@ +{ + "accessors": [ + { + "bufferView": 0, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 448, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1088, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1216, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1856, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2240, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2432, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2880, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3072, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3456, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4160, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4608, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 5120, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 5760, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6144, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6528, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6976, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7616, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 8128, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 8576, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9216, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9920, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 10560, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 10688, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 11136, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 11776, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 12416, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 12864, + "componentType": 5126, + "count": 5, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 13184, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 13632, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 14080, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 1, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 1608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 4020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 5628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 8040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 8844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 10452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 11256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 13668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 15276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 17688, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 18492, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 20100, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 20904, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 23316, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 24924, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 27336, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 28140, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 29748, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 30552, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 32964, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 60300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 34572, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 62712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 36984, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 65124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 37788, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 61104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 39396, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 69948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 40200, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 72360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 64320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 74772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 42612, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 44220, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 79596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 82008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 70752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 46632, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 84420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 47436, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 86832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 73968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 49044, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 89244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 49848, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 91656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 94068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 52260, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 96480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 80400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 53868, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 98892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 101304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 83616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 56280, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 103716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 57084, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 86832, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 57488, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 106128, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 57892, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 88448, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 58296, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 107340, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 58700, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 108552, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 59104, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 90064, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 59508, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 109764, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 59912, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 110976, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 60316, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 91680, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 60720, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 112188, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 61124, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 113400, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 61528, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 93296, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 61932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 114612, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 62336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 115824, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 62740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 94912, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 63144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 117036, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 63548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 118248, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 63952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 96528, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 64356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 119460, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 64760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 120672, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 65164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 98144, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 65568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 121884, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 65972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 123096, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 66376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 99760, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 66780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 124308, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 67184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 125520, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 67588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 101376, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 67992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 126732, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 68396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 127944, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 68800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 102992, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 69204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 129156, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 69608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 104608, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 106224, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 130368, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 70820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 107840, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 71224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 131580, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 71628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 132792, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 72032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 109456, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 72436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 134004, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 72840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 111072, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 73244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 135216, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 73648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 112688, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 74052, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 136428, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 74456, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 137640, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 74860, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 114304, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 75264, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 138852, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 75668, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 140064, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 76072, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 115920, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 76476, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 141276, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 76880, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 142488, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 77284, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 117536, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 77688, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 143700, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 78092, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 144912, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 78496, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 119152, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 78900, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 146124, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 79304, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 147336, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 79708, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 120768, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 80112, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 148548, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 80516, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 149760, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 80920, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 122384, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 81324, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 150972, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 81728, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 152184, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 82132, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 124000, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 82536, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 153396, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 82940, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 154608, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 83344, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 125616, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 83748, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 155820, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 84152, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 157032, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 84556, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 127232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 84960, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 158244, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 85364, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 159456, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 85768, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 128848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 86172, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 160668, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 86576, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 161880, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 86980, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 130464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 87384, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 163092, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 87788, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 164304, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 88192, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 132080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 88596, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 165516, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 89000, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 166728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 89404, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 133696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 89808, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 167940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 90212, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 169152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 90616, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 135312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 91020, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 170364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 91424, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 171576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 91828, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 136928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 92232, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 172788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 92636, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 174000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 93040, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 138544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 93444, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 175212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 93848, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 176424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 94252, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 140160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 94656, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 177636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 95060, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 178848, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 95464, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 141776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 95868, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 180060, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 96272, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 181272, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 96676, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 143392, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 97080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 182484, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 97484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 183696, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 97888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 145008, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 98292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 184908, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 98696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 186120, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 99100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 146624, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 99504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 187332, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 99908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 188544, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 100312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 148240, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 100716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 189756, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 101120, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 190968, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 101524, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 149856, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 101928, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 192180, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 102332, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 193392, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 102736, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 151472, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 103140, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 194604, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 103544, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 195816, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 103948, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 153088, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 104352, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 197028, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 104756, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 198240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 105560, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 154704, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 106364, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 200652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 107168, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 203064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 107972, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 157920, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 108776, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 205476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 109580, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 207888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 110384, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 161136, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 111188, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 210300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 111992, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 212712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 112796, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 164352, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 113600, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 215124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 114404, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 217536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 115208, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 167568, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 116012, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 219948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 116816, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 222360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 117620, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 170784, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 118424, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 224772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 119228, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 227184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 120032, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 174000, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 120836, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 229596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 121640, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 232008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 122444, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 177216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 123248, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 234420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 124052, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 236832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 124856, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 180432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 125660, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 239244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 126464, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 241656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 127268, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 183648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 128072, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 244068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 128876, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 246480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 129680, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 186864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 130484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 248892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 131288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 251304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 132092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 190080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 132896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 253716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 133700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 256128, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 134504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 193296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 135308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 258540, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 136112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 260952, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 136916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 196512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 137720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 263364, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 138524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 265776, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 139328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 199728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 140132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 268188, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 140936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 270600, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 141740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 202944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 142544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 273012, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 143348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 275424, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 144152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 206160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 144956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 277836, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 145760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 280248, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 146564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 209376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 147368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 282660, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 148172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 285072, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 148976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 212592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 149780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 287484, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 150584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 289896, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 151388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 215808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 152192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 292308, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 152996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 294720, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 153800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 219024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 154604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 297132, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 155408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 299544, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 156212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 222240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 157016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 301956, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 157820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 304368, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 158624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 225456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 159428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 306780, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 160232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 309192, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 161036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 228672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 161840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 311604, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 162644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 314016, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 163448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 231888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 164252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 316428, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 165056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 318840, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 165860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 235104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 166664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 321252, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 167468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 323664, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 168272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 238320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 169076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 326076, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 169880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 328488, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 170684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 241536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 171488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 330900, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 172292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 333312, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 173096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 244752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 173900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 335724, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 174704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 338136, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 175508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 247968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 176312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 340548, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 177116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 342960, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 177920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 251184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 178724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 345372, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 179528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 347784, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 180332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 254400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 181136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 350196, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 181940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 352608, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 182744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 257616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 183548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 355020, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 184352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 357432, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 185156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 260832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 185960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 359844, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 186764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 362256, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 187568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 264048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 188372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 364668, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 189176, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 367080, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 189980, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 267264, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 190784, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 369492, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 191588, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 371904, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 192392, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 270480, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 193196, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 374316, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 194000, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 376728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 194404, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 273696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 194808, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 377940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 195212, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 379152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 195616, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 275312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 196020, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 380364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 196424, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 381576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 196828, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 276928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 197232, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 382788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 197636, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 384000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 198040, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 278544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 198444, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 385212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 198848, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 386424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 199252, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 280160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 199656, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 387636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 200060, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 281776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 200464, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 283392, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 200868, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 388848, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 201272, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 285008, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 201676, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 390060, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 202080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 286624, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 202484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 391272, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 203288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 288240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 204092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 393684, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 204896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 396096, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 205700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 291456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 206504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 398508, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 207308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 400920, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 208112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 294672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 208916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 403332, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 209720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 405744, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 210524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 297888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 211328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 408156, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 212132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 410568, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 212936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 301104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 213740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 412980, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 214544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 415392, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 215348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 304320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 216152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 417804, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 216956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 420216, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 217760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 307536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 218564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 422628, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 219368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 425040, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 220172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 310752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 220976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 427452, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 221780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 429864, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 222584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 313968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 223388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 432276, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 224192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 434688, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 224996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 317184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 225800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 437100, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 226604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 439512, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 227408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 320400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 228212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 441924, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 229016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 444336, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 229820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 323616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 230624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 446748, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 231428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 449160, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 232232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 326832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 233036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 451572, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 233840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 453984, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 234644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 330048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 235448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 456396, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 236252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 458808, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 237056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 333264, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 237860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 461220, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 238664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 463632, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 239468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 336480, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 240272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 466044, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 241076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 468456, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 241880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 339696, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 242684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 470868, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 243488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 473280, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 244292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 342912, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 245096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 475692, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 245900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 478104, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 246704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 346128, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 247508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 480516, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 248312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 482928, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 249116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 349344, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 249920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 485340, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 250724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 487752, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 251528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 352560, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 252332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 490164, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 253136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 492576, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 253940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 355776, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 254744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 494988, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 255548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 497400, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 256352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 358992, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 257156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 499812, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 257960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 502224, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 258764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 362208, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 259568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 504636, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 260372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 507048, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 261176, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 365424, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 261980, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 509460, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 262784, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 511872, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 263588, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 368640, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 264392, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 514284, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 265196, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 516696, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 266000, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 371856, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 266804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 519108, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 267608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 521520, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 268412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 375072, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 269216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 523932, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 270020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 526344, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 270824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 378288, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 271628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 528756, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 272432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 531168, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 273236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 381504, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 274040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 533580, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 274844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 535992, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 275648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 384720, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 276452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 538404, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 277256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 540816, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 278060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 387936, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 278864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 543228, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 279668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 545640, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 280472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 391152, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 281276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 548052, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 282080, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 550464, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 282884, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 394368, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 283688, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 552876, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 284492, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 555288, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 285296, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 397584, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 286100, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 557700, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 286904, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 560112, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 287708, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 400800, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 288512, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 562524, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 289316, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 564936, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 289720, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 404016, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 290124, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 566148, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 290528, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 567360, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 290932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 405632, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 291336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 568572, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 291740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 569784, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 292144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 407248, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 292548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 570996, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 292952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 572208, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 293356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 408864, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 293760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 573420, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 294164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 574632, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 294568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 410480, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 294972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 575844, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 295376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 577056, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 295780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 412096, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 296184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 578268, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 296588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 579480, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 296992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 413712, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 297396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 580692, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 297800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 581904, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 298204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 415328, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 298608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 583116, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 299012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 584328, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 299416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 416944, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 299820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 585540, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 300224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 586752, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 300628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 418560, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 301032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 587964, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 301436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 589176, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 301840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 420176, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 302244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 590388, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 302648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 591600, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 303052, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 421792, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 303456, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 592812, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 303860, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 594024, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 304264, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 423408, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 304668, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 595236, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 305072, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 596448, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 305476, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 425024, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 305880, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 597660, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 306284, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 426640, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 306688, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 598872, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 307092, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 428256, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 307496, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 429872, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 307900, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 600084, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 308304, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 431488, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 308708, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 433104, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 309112, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 601296, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 309516, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 434720, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 309920, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 436336, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 310324, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 602508, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 310728, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 437952, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 311132, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 603720, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 311536, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 439568, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 311940, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 604932, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 312344, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 606144, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 312748, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 441184, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 313152, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 607356, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 313556, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 608568, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 313960, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 442800, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 314364, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 609780, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 314768, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 610992, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 315172, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 444416, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 315576, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 612204, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 315980, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 613416, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 316384, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 446032, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 316788, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 614628, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 317192, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 615840, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 317596, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 447648, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 318000, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 617052, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 318404, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 618264, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 318808, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 449264, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 319212, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 619476, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 319616, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 620688, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 320020, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 450880, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 320424, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 621900, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 320828, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 623112, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 321232, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 452496, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 321636, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 624324, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 322040, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 625536, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 322444, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 454112, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322848, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 626748, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 323252, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 627960, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 323656, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 455728, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 324060, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 629172, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 324464, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 630384, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 324868, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457344, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 325272, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 631596, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 325676, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 458960, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 326080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 632808, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 326484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 460576, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 326888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 634020, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 327292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 635232, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 327696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 462192, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 328100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 636444, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 328504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 637656, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 328908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 463808, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 329312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 465424, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 329716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 638868, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 330120, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467040, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 330132, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467088, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 330144, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467136, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 330156, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467184, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 330168, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 640080, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 330572, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 330976, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 641292, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 331380, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 642504, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 331784, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 468848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 332188, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 643716, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 332592, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 644928, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 332996, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 470464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 333400, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 646140, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 333804, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 647352, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 334208, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 472080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 334612, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 648564, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 335016, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 649776, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 335420, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 473696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 335824, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 650988, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 336228, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 652200, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 336632, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 475312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 337036, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 653412, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 337440, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 654624, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 337844, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 476928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 338248, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 655836, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 338652, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 657048, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 339056, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 478544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 339460, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 658260, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 339864, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 659472, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 340268, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 480160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 340672, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 660684, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 341076, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 661896, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 341480, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 481776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 341884, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 663108, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 4, + "componentType": 5126, + "count": 5114, + "min": [ + -6.895031452178955, -2.3814215660095215, -0.2689531147480011 + ], + "max": [ + 4.041303634643555, 0.531066358089447, 0.2689531147480011 + ], + "type": "VEC3", + "name": "x0_Rudder_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 12, + "componentType": 5120, + "count": 5114, + "type": "VEC4", + "name": "x0_Rudder_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16, + "componentType": 5120, + "count": 5114, + "type": "VEC4", + "name": "x0_Rudder_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20, + "componentType": 5122, + "count": 5114, + "type": "VEC2", + "name": "x0_Rudder_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24, + "componentType": 5122, + "count": 5114, + "type": "VEC2", + "name": "x0_Rudder_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28, + "componentType": 5123, + "count": 5114, + "type": "VEC4", + "name": "x0_Rudder_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "componentType": 5123, + "count": 9054, + "type": "SCALAR", + "name": "x0_Rudder_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 184104, + "componentType": 5126, + "count": 293, + "min": [ + -0.22164234519004822, -0.5556049346923828, -1.0652618408203125 + ], + "max": [ + 0.22164209187030792, 0.5556044578552246, 1.0652612447738647 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_Rudder_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 184116, + "componentType": 5120, + "count": 293, + "type": "VEC4", + "name": "x0_Livery_KLM_Rudder_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 184120, + "componentType": 5120, + "count": 293, + "type": "VEC4", + "name": "x0_Livery_KLM_Rudder_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 184124, + "componentType": 5122, + "count": 293, + "type": "VEC2", + "name": "x0_Livery_KLM_Rudder_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 184128, + "componentType": 5122, + "count": 293, + "type": "VEC2", + "name": "x0_Livery_KLM_Rudder_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 184132, + "componentType": 5123, + "count": 293, + "type": "VEC4", + "name": "x0_Livery_KLM_Rudder_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 18108, + "componentType": 5123, + "count": 573, + "type": "SCALAR", + "name": "x0_Livery_KLM_Rudder_indices#0" + }, { + "bufferView": 4, + "byteOffset": 194652, + "componentType": 5126, + "count": 2343, + "min": [ + -0.5780094861984253, -0.15811221301555634, -0.009549008682370186 + ], + "max": [ + 0.8411221504211426, 0.14889466762542725, 0.7393605709075928 + ], + "type": "VEC3", + "name": "x0_C_Door_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 194664, + "componentType": 5120, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 194668, + "componentType": 5120, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 194672, + "componentType": 5122, + "count": 2343, + "type": "VEC2", + "name": "x0_C_Door_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 194676, + "componentType": 5122, + "count": 2343, + "type": "VEC2", + "name": "x0_C_Door_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 194680, + "componentType": 5123, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 19254, + "componentType": 5123, + "count": 5706, + "type": "SCALAR", + "name": "x0_C_Door_02_right_indices#2" + }, { + "bufferView": 4, + "byteOffset": 279000, + "componentType": 5126, + "count": 20, + "min": [ + -0.05284452438354492, -0.35190147161483765, -0.6955661177635193 + ], + "max": [ + 0.05284440517425537, 0.3519015908241272, 0.6955662369728088 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_RGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 279012, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_RGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 279016, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_RGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 279020, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x0_Livery_KLM_RGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 279024, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x0_Livery_KLM_RGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 279028, + "componentType": 5123, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_RGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 30666, + "componentType": 5123, + "count": 42, + "type": "SCALAR", + "name": "x0_Livery_KLM_RGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 279720, + "componentType": 5126, + "count": 2947, + "min": [ + -0.95469731092453, -0.150915265083313, -0.010486898943781853 + ], + "max": [ + 0.9596250057220459, 0.15049631893634796, 0.743729293346405 + ], + "type": "VEC3", + "name": "x0_C_Door_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 279732, + "componentType": 5120, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 279736, + "componentType": 5120, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 279740, + "componentType": 5122, + "count": 2947, + "type": "VEC2", + "name": "x0_C_Door_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 279744, + "componentType": 5122, + "count": 2947, + "type": "VEC2", + "name": "x0_C_Door_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 279748, + "componentType": 5123, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 30750, + "componentType": 5123, + "count": 7170, + "type": "SCALAR", + "name": "x0_C_Door_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 385812, + "componentType": 5126, + "count": 228, + "min": [ + -0.5312079191207886, -0.000050067901611328125, -1.8897520303726196 + ], + "max": [ + 0.009289532899856567, 0.06960731744766235, 0.008812926709651947 + ], + "type": "VEC3", + "name": "x0_Door_Right01_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 385824, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Right01_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 385828, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Right01_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 385832, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_Door_Right01_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 385836, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_Door_Right01_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 385840, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Right01_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 45090, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x0_Door_Right01_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 394020, + "componentType": 5126, + "count": 400, + "min": [ + -0.2219356894493103, -0.011762261390686035, -0.01235198974609375 + ], + "max": [ + 0.025243699550628662, 0.901509165763855, 0.023754119873046875 + ], + "type": "VEC3", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 394032, + "componentType": 5120, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 394036, + "componentType": 5120, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 394040, + "componentType": 5122, + "count": 400, + "type": "VEC2", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 394044, + "componentType": 5122, + "count": 400, + "type": "VEC2", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 394048, + "componentType": 5123, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 45774, + "componentType": 5123, + "count": 978, + "type": "SCALAR", + "name": "x0_C_Door_03_hydraulic01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 408420, + "componentType": 5126, + "count": 2343, + "min": [ + -0.8411222100257874, -0.14889460802078247, -0.739360511302948 + ], + "max": [ + 0.5780096054077148, 0.15811218321323395, 0.009549014270305634 + ], + "type": "VEC3", + "name": "x0_C_Door_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 408432, + "componentType": 5120, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 408436, + "componentType": 5120, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 408440, + "componentType": 5122, + "count": 2343, + "type": "VEC2", + "name": "x0_C_Door_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 408444, + "componentType": 5122, + "count": 2343, + "type": "VEC2", + "name": "x0_C_Door_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 408448, + "componentType": 5123, + "count": 2343, + "type": "VEC4", + "name": "x0_C_Door_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 47730, + "componentType": 5123, + "count": 5706, + "type": "SCALAR", + "name": "x0_C_Door_02_left_indices#2" + }, { + "bufferView": 4, + "byteOffset": 492768, + "componentType": 5126, + "count": 20, + "min": [ + -0.052844561636447906, -0.3519015312194824, -0.6955661773681641 + ], + "max": [ + 0.05284450575709343, 0.3519015312194824, 0.6955661773681641 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_LGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 492780, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_LGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 492784, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_LGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 492788, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x0_Livery_KLM_LGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 492792, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x0_Livery_KLM_LGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 492796, + "componentType": 5123, + "count": 20, + "type": "VEC4", + "name": "x0_Livery_KLM_LGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 59142, + "componentType": 5123, + "count": 42, + "type": "SCALAR", + "name": "x0_Livery_KLM_LGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 493488, + "componentType": 5126, + "count": 2947, + "min": [ + -0.9572601914405823, -0.15091374516487122, -0.7437293529510498 + ], + "max": [ + 0.9570619463920593, 0.15049797296524048, 0.01048695482313633 + ], + "type": "VEC3", + "name": "x0_C_Door_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 493500, + "componentType": 5120, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 493504, + "componentType": 5120, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 493508, + "componentType": 5122, + "count": 2947, + "type": "VEC2", + "name": "x0_C_Door_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 493512, + "componentType": 5122, + "count": 2947, + "type": "VEC2", + "name": "x0_C_Door_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 493516, + "componentType": 5123, + "count": 2947, + "type": "VEC4", + "name": "x0_C_Door_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 59226, + "componentType": 5123, + "count": 7170, + "type": "SCALAR", + "name": "x0_C_Door_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 599580, + "componentType": 5126, + "count": 228, + "min": [ + -0.009289711713790894, -0.00005075335502624512, -1.8903310298919678 + ], + "max": [ + 0.5315931439399719, 0.06988906860351562, 0.00886744074523449 + ], + "type": "VEC3", + "name": "x0_Door_Left01_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 599592, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Left01_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 599596, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Left01_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 599600, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_Door_Left01_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 599604, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_Door_Left01_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 599608, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x0_Door_Left01_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 73566, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x0_Door_Left01_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 607788, + "componentType": 5126, + "count": 400, + "min": [ + -0.034725770354270935, -0.00883104931563139, -0.018454285338521004 + ], + "max": [ + 0.018234550952911377, 0.923231303691864, 0.013966739177703857 + ], + "type": "VEC3", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 607800, + "componentType": 5120, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 607804, + "componentType": 5120, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 607808, + "componentType": 5122, + "count": 400, + "type": "VEC2", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 607812, + "componentType": 5122, + "count": 400, + "type": "VEC2", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 607816, + "componentType": 5123, + "count": 400, + "type": "VEC4", + "name": "x0_C_Door_03_hydraulic01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 74250, + "componentType": 5123, + "count": 978, + "type": "SCALAR", + "name": "x0_C_Door_03_hydraulic01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 622188, + "componentType": 5126, + "count": 2337, + "min": [ + -4.574008941650391, -0.06374841928482056, -1.6991119384765625 + ], + "max": [ + 4.927887916564941, 0.3158720135688782, 0.09549474716186523 + ], + "type": "VEC3", + "name": "x0_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 622200, + "componentType": 5120, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 622204, + "componentType": 5120, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 622208, + "componentType": 5122, + "count": 2337, + "type": "VEC2", + "name": "x0_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 622212, + "componentType": 5122, + "count": 2337, + "type": "VEC2", + "name": "x0_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 622216, + "componentType": 5123, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 76206, + "componentType": 5123, + "count": 7416, + "type": "SCALAR", + "name": "x0_Elevator_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 706320, + "componentType": 5126, + "count": 4266, + "min": [ + -0.15392804145812988, -1.9489127397537231, -0.9255704879760742 + ], + "max": [ + 9.495527267456055, 6.3095855712890625, 0.7741210460662842 + ], + "type": "VEC3", + "name": "x0_Trim_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 706332, + "componentType": 5120, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 706336, + "componentType": 5120, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 706340, + "componentType": 5122, + "count": 4266, + "type": "VEC2", + "name": "x0_Trim_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 706344, + "componentType": 5122, + "count": 4266, + "type": "VEC2", + "name": "x0_Trim_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 706348, + "componentType": 5123, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 91038, + "componentType": 5123, + "count": 11700, + "type": "SCALAR", + "name": "x0_Trim_Elevator_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 859896, + "componentType": 5126, + "count": 49, + "min": [ + -0.0586848258972168, -0.02840903401374817, -0.058672428131103516 + ], + "max": [ + 0.058685302734375, -0.010132819414138794, 0.0586705207824707 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 859908, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 859912, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 859916, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 859920, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 859924, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 114438, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 861660, + "componentType": 5126, + "count": 979, + "min": [ + 1.1026737689971924, 0.43623489141464233, -39.12284851074219 + ], + "max": [ + 9.873924255371094, 2.5371522903442383, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 861672, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 861676, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 861680, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 861684, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 861688, + "componentType": 5123, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 114726, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 896904, + "componentType": 5126, + "count": 686, + "min": [ + -0.2061307430267334, -0.8431019186973572, -1.0106937885284424 + ], + "max": [ + 0.2061305046081543, 0.8431016802787781, 1.010697603225708 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 896916, + "componentType": 5120, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 896920, + "componentType": 5120, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 896924, + "componentType": 5122, + "count": 686, + "type": "VEC2", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 896928, + "componentType": 5122, + "count": 686, + "type": "VEC2", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 896932, + "componentType": 5123, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 119172, + "componentType": 5123, + "count": 2166, + "type": "SCALAR", + "name": "x0_Livery_KLM_ElevatorTrimL_indices#0" + }, { + "bufferView": 4, + "byteOffset": 921600, + "componentType": 5126, + "count": 120, + "min": [ + -0.027080535888671875, -0.05844545364379883, -0.03809928894042969 + ], + "max": [ + 0.03014373779296875, 0.058444976806640625, -0.0065708160400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 921612, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 921616, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 921620, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 921624, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 921628, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 123504, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 925920, + "componentType": 5126, + "count": 784, + "min": [ + -0.0548553466796875, -0.024386882781982422, -0.04414558410644531 + ], + "max": [ + 0.0811614990234375, 0.02438640594482422, 0.06327056884765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 925932, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 925936, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 925940, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 925944, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 925948, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 124416, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 954144, + "componentType": 5126, + "count": 588, + "min": [ + -0.03925895690917969, -0.018535852432250977, -0.010842323303222656 + ], + "max": [ + 0.05913734436035156, 0.018535375595092773, 0.06278228759765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 954156, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 954160, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 954164, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 954168, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 954172, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 130176, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationRed_indices#0" + }, { + "bufferView": 4, + "byteOffset": 975312, + "componentType": 5126, + "count": 148, + "min": [ + -0.9412508010864258, -0.028407521545886993, -0.06704974174499512 + ], + "max": [ + 0.06539316475391388, 0.02253228798508644, 0.06579326093196869 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_19_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 975324, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 975328, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 975332, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_19_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 975336, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_19_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 975340, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 134496, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_19_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 980640, + "componentType": 5126, + "count": 192, + "min": [ + -314.1433410644531, -17.255861282348633, -18.728187561035156 + ], + "max": [ + 18.74176597595215, 0.017389876767992973, 18.722412109375 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_11_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 980652, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 980656, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 980660, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_11_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 980664, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_11_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 980668, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 134856, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_11_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 987552, + "componentType": 5126, + "count": 312, + "min": [ + -0.03666797652840614, -0.03814227879047394, -0.03670148178935051 + ], + "max": [ + 0.2619094252586365, 0.004247376229614019, 0.03665846958756447 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_12_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 987564, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 987568, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 987572, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_12_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 987576, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_12_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 987580, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 135336, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_12_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 998784, + "componentType": 5126, + "count": 178, + "min": [ + -225.2566680908203, -18.041534423828125, -18.733232498168945 + ], + "max": [ + 18.740161895751953, 0.014937862753868103, 18.721954345703125 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_13_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 998796, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 998800, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 998804, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x0_flap_hydrolics_13_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 998808, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x0_flap_hydrolics_13_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 998812, + "componentType": 5123, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 136152, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_13_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1005192, + "componentType": 5126, + "count": 312, + "min": [ + -0.03667290136218071, -0.038152098655700684, -0.036705683916807175 + ], + "max": [ + 0.22800947725772858, 0.00424253661185503, 0.03665519505739212 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_14_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1005204, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1005208, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1005212, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_14_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1005216, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_14_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1005220, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 136632, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_14_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1016424, + "componentType": 5126, + "count": 192, + "min": [ + -247.9581298828125, -17.199684143066406, -18.736663818359375 + ], + "max": [ + 18.736948013305664, 0.012261970899999142, 18.715316772460938 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_15_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1016436, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1016440, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1016444, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_15_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1016448, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_15_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1016452, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 137448, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_15_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1023336, + "componentType": 5126, + "count": 312, + "min": [ + -0.0366707444190979, -0.038078080862760544, -0.036706313490867615 + ], + "max": [ + 0.19622930884361267, 0.004311724565923214, 0.036653876304626465 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_16_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1023348, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1023352, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1023356, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_16_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1023360, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_16_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1023364, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 137928, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_16_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1034568, + "componentType": 5126, + "count": 148, + "min": [ + -0.9414101839065552, -0.04680825397372246, -0.06552967429161072 + ], + "max": [ + 0.06537886708974838, 0.000011909755812666845, 0.06589889526367188 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_18_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1034580, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1034584, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1034588, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_18_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1034592, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_18_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1034596, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 138744, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_18_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1039896, + "componentType": 5126, + "count": 191, + "min": [ + -1.1099910736083984, -0.15033118426799774, -0.7317358255386353 + ], + "max": [ + 1.1136797666549683, 0.007669446989893913, -2.3841217000608594e-7 + ], + "type": "VEC3", + "name": "x0_Spoiler_2_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1039908, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1039912, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1039916, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x0_Spoiler_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1039920, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x0_Spoiler_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1039924, + "componentType": 5123, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 139104, + "componentType": 5123, + "count": 702, + "type": "SCALAR", + "name": "x0_Spoiler_2_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1046772, + "componentType": 5126, + "count": 2306, + "min": [ + -0.942308247089386, 0.011289829388260841, -1.5219906568527222 + ], + "max": [ + 0.9072993993759155, 0.5806432366371155, 0.13432779908180237 + ], + "type": "VEC3", + "name": "x0_Flaps_1_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1046784, + "componentType": 5120, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1046788, + "componentType": 5120, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1046792, + "componentType": 5122, + "count": 2306, + "type": "VEC2", + "name": "x0_Flaps_1_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1046796, + "componentType": 5122, + "count": 2306, + "type": "VEC2", + "name": "x0_Flaps_1_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1046800, + "componentType": 5123, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 140508, + "componentType": 5123, + "count": 5619, + "type": "SCALAR", + "name": "x0_Flaps_1_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 1129788, + "componentType": 5126, + "count": 144, + "min": [ + -0.705247163772583, -0.3054843246936798, -0.04462653771042824 + ], + "max": [ + 0.662817120552063, 0.04638179391622543, 0.5727829933166504 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_07_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1129800, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1129804, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1129808, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_07_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1129812, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_07_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1129816, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 151746, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_07_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1134972, + "componentType": 5126, + "count": 144, + "min": [ + -0.004622459411621094, -0.06194639205932617, -0.4337277412414551 + ], + "max": [ + 1.3936243057250977, 0.250946044921875, 0.05965018272399902 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_08_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1134984, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1134988, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1134992, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_08_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1134996, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_08_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1135000, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 152562, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_08_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1140156, + "componentType": 5126, + "count": 192, + "min": [ + -406.351318359375, -17.31585693359375, -18.72844123840332 + ], + "max": [ + 18.745559692382812, 0.008923252113163471, 18.724159240722656 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_09_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1140168, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1140172, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1140176, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_09_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1140180, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_09_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1140184, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 153378, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_09_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1147068, + "componentType": 5126, + "count": 312, + "min": [ + -0.036682721227407455, -0.03814125061035156, -0.03669166937470436 + ], + "max": [ + 0.34864097833633423, 0.004251241683959961, 0.036668263375759125 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_10_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1147080, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1147084, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1147088, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_10_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1147092, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_10_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1147096, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 153858, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_10_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1158300, + "componentType": 5126, + "count": 1332, + "min": [ + -3.0591790676116943, -0.05917462706565857, -0.0004385724023450166 + ], + "max": [ + 3.2449114322662354, 0.6459475159645081, 0.8577603101730347 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1158312, + "componentType": 5120, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1158316, + "componentType": 5120, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1158320, + "componentType": 5122, + "count": 1332, + "type": "VEC2", + "name": "x0_FlapsKrueger_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1158324, + "componentType": 5122, + "count": 1332, + "type": "VEC2", + "name": "x0_FlapsKrueger_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1158328, + "componentType": 5123, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 154674, + "componentType": 5123, + "count": 2868, + "type": "SCALAR", + "name": "x0_FlapsKrueger_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 1206252, + "componentType": 5126, + "count": 92, + "min": [ + 3.323636531829834, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + 8.716888427734375, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1206264, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1206268, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1206272, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1206276, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1206280, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 160410, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1209564, + "componentType": 5126, + "count": 122, + "min": [ + -0.9412904977798462, -0.08554023504257202, -0.06711690127849579 + ], + "max": [ + 0.06540646404027939, -0.03917830064892769, 0.06535213440656662 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1209576, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1209580, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1209584, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x0_flap_hydrolics_17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1209588, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x0_flap_hydrolics_17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1209592, + "componentType": 5123, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 160734, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1213956, + "componentType": 5126, + "count": 5909, + "min": [ + -3.463487148284912, -0.1092616468667984, -2.4217193126678467 + ], + "max": [ + 4.219029903411865, 0.886864960193634, 0.5424180626869202 + ], + "type": "VEC3", + "name": "x0_Flaps_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1213968, + "componentType": 5120, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1213972, + "componentType": 5120, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1213976, + "componentType": 5122, + "count": 5909, + "type": "VEC2", + "name": "x0_Flaps_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1213980, + "componentType": 5122, + "count": 5909, + "type": "VEC2", + "name": "x0_Flaps_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1213984, + "componentType": 5123, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 161094, + "componentType": 5123, + "count": 12048, + "type": "SCALAR", + "name": "x0_Flaps_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 1426680, + "componentType": 5126, + "count": 7644, + "min": [ + -0.008949005044996738, -0.4000689685344696, -0.38229358196258545 + ], + "max": [ + 1.4797327518463135, 2.7486069202423096, 0.35194945335388184 + ], + "type": "VEC3", + "name": "x0_Landing_gear_Root_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1426692, + "componentType": 5120, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1426696, + "componentType": 5120, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1426700, + "componentType": 5122, + "count": 7644, + "type": "VEC2", + "name": "x0_Landing_gear_Root_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1426704, + "componentType": 5122, + "count": 7644, + "type": "VEC2", + "name": "x0_Landing_gear_Root_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1426708, + "componentType": 5123, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 185190, + "componentType": 5123, + "count": 22977, + "type": "SCALAR", + "name": "x0_Landing_gear_Root_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1701864, + "componentType": 5126, + "count": 9, + "min": [ + 4.9253621101379395, 1.6113545894622803, 5.390591621398926 + ], + "max": [ + 5.012457370758057, 1.8535652160644531, 5.497723579406738 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1701876, + "componentType": 5120, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1701880, + "componentType": 5120, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1701884, + "componentType": 5122, + "count": 9, + "type": "VEC2", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1701888, + "componentType": 5122, + "count": 9, + "type": "VEC2", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1701892, + "componentType": 5123, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 231144, + "componentType": 5123, + "count": 24, + "type": "SCALAR", + "name": "x0_Landing_Gear_RightPart32_Decal_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1702188, + "componentType": 5126, + "count": 240, + "min": [ + -0.018456974998116493, -0.02890080027282238, -0.01848308928310871 + ], + "max": [ + 0.32188308238983154, 0.026015400886535645, 0.19058309495449066 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_18_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1702200, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1702204, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1702208, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x0_Landing_Gear_18_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1702212, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x0_Landing_Gear_18_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1702216, + "componentType": 5123, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 231192, + "componentType": 5123, + "count": 744, + "type": "SCALAR", + "name": "x0_Landing_Gear_18_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1710828, + "componentType": 5126, + "count": 970, + "min": [ + -0.7242705225944519, -0.6438199877738953, -0.09001309424638748 + ], + "max": [ + 0.07568792998790741, 0.0569014810025692, 0.3174648880958557 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_31_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1710840, + "componentType": 5120, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1710844, + "componentType": 5120, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1710848, + "componentType": 5122, + "count": 970, + "type": "VEC2", + "name": "x0_Landing_Gear_31_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1710852, + "componentType": 5122, + "count": 970, + "type": "VEC2", + "name": "x0_Landing_Gear_31_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1710856, + "componentType": 5123, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 232680, + "componentType": 5123, + "count": 2844, + "type": "SCALAR", + "name": "x0_Landing_Gear_31_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1745748, + "componentType": 5126, + "count": 282, + "min": [ + -0.028108853846788406, -0.4666445255279541, -0.060520343482494354 + ], + "max": [ + 0.03629181534051895, 0.06144043803215027, 0.0530744306743145 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1745760, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1745764, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1745768, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x0_Landing_Gear_17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1745772, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x0_Landing_Gear_17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1745776, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 238368, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x0_Landing_Gear_17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1755900, + "componentType": 5126, + "count": 658, + "min": [ + -0.19332768023014069, -0.00007702750735916197, -0.15694572031497955 + ], + "max": [ + 0.0694643035531044, 0.2069033682346344, 0.07235575467348099 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_33_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1755912, + "componentType": 5120, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1755916, + "componentType": 5120, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1755920, + "componentType": 5122, + "count": 658, + "type": "VEC2", + "name": "x0_Landing_Gear_33_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1755924, + "componentType": 5122, + "count": 658, + "type": "VEC2", + "name": "x0_Landing_Gear_33_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1755928, + "componentType": 5123, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 240024, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x0_Landing_Gear_33_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1779588, + "componentType": 5126, + "count": 646, + "min": [ + -0.19468499720096588, -0.017697783187031746, -0.07370807975530624 + ], + "max": [ + 0.07473479211330414, 0.18911036849021912, 0.1806185394525528 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_34_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1779600, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1779604, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1779608, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_34_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1779612, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_34_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1779616, + "componentType": 5123, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 243888, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x0_Landing_Gear_34_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1802844, + "componentType": 5126, + "count": 773, + "min": [ + -0.12650687992572784, -1.0021127462387085, -0.11373410373926163 + ], + "max": [ + 0.12398655712604523, 0.06739023327827454, 0.13272172212600708 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_32_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1802856, + "componentType": 5120, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1802860, + "componentType": 5120, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1802864, + "componentType": 5122, + "count": 773, + "type": "VEC2", + "name": "x0_Landing_Gear_32_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1802868, + "componentType": 5122, + "count": 773, + "type": "VEC2", + "name": "x0_Landing_Gear_32_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1802872, + "componentType": 5123, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 247752, + "componentType": 5123, + "count": 2244, + "type": "SCALAR", + "name": "x0_Landing_Gear_32_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1830672, + "componentType": 5126, + "count": 1356, + "min": [ + -1.3771650791168213, -0.11779718846082687, -0.15450967848300934 + ], + "max": [ + 0.05799823999404907, 0.07318174093961716, 0.23625938594341278 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_30_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1830684, + "componentType": 5120, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1830688, + "componentType": 5120, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1830692, + "componentType": 5122, + "count": 1356, + "type": "VEC2", + "name": "x0_Landing_Gear_30_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1830696, + "componentType": 5122, + "count": 1356, + "type": "VEC2", + "name": "x0_Landing_Gear_30_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1830700, + "componentType": 5123, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 252240, + "componentType": 5123, + "count": 3984, + "type": "SCALAR", + "name": "x0_Landing_Gear_30_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1879488, + "componentType": 5126, + "count": 494, + "min": [ + -0.24867121875286102, -0.4787163734436035, -0.12202516943216324 + ], + "max": [ + 0.25053778290748596, 0.4637439548969269, 0.11836782097816467 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_27_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1879500, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1879504, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1879508, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x0_Landing_Gear_27_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1879512, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x0_Landing_Gear_27_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1879516, + "componentType": 5123, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 260208, + "componentType": 5123, + "count": 1428, + "type": "SCALAR", + "name": "x0_Landing_Gear_27_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1897272, + "componentType": 5126, + "count": 266, + "min": [ + -0.07572513073682785, -0.4879245460033417, -0.06174151971936226 + ], + "max": [ + 0.08383386582136154, 0.04136434197425842, 0.08959703892469406 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_28_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1897284, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1897288, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1897292, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x0_Landing_Gear_28_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1897296, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x0_Landing_Gear_28_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1897300, + "componentType": 5123, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 263064, + "componentType": 5123, + "count": 780, + "type": "SCALAR", + "name": "x0_Landing_Gear_28_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1906848, + "componentType": 5126, + "count": 363, + "min": [ + -0.04315566644072533, -0.03454704210162163, -0.07332596182823181 + ], + "max": [ + 0.04689168184995651, 0.5837953090667725, 0.06437623500823975 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_23_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1906860, + "componentType": 5120, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1906864, + "componentType": 5120, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1906868, + "componentType": 5122, + "count": 363, + "type": "VEC2", + "name": "x0_Landing_Gear_23_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1906872, + "componentType": 5122, + "count": 363, + "type": "VEC2", + "name": "x0_Landing_Gear_23_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1906876, + "componentType": 5123, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 264624, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x0_Landing_Gear_23_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1919916, + "componentType": 5126, + "count": 614, + "min": [ + -0.14675076305866241, -0.23596766591072083, -0.10759732872247696 + ], + "max": [ + 0.1463344693183899, 0.23549720644950867, 0.10751046985387802 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_26_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1919928, + "componentType": 5120, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1919932, + "componentType": 5120, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1919936, + "componentType": 5122, + "count": 614, + "type": "VEC2", + "name": "x0_Landing_Gear_26_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1919940, + "componentType": 5122, + "count": 614, + "type": "VEC2", + "name": "x0_Landing_Gear_26_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1919944, + "componentType": 5123, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 266688, + "componentType": 5123, + "count": 1968, + "type": "SCALAR", + "name": "x0_Landing_Gear_26_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1942020, + "componentType": 5126, + "count": 702, + "min": [ + -0.10368535667657852, -0.1160377785563469, -0.36521172523498535 + ], + "max": [ + 0.12878398597240448, 0.3993384838104248, 0.11348287016153336 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_29_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1942032, + "componentType": 5120, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1942036, + "componentType": 5120, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1942040, + "componentType": 5122, + "count": 702, + "type": "VEC2", + "name": "x0_Landing_Gear_29_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1942044, + "componentType": 5122, + "count": 702, + "type": "VEC2", + "name": "x0_Landing_Gear_29_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1942048, + "componentType": 5123, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 270624, + "componentType": 5123, + "count": 1848, + "type": "SCALAR", + "name": "x0_Landing_Gear_29_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1967292, + "componentType": 5126, + "count": 96, + "min": [ + -0.032359592616558075, 0.010993212461471558, 0.10500214993953705 + ], + "max": [ + 0.03310972452163696, 0.18166229128837585, 0.6278931498527527 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_19_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1967304, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1967308, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1967312, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x0_Landing_Gear_19_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1967316, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x0_Landing_Gear_19_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1967320, + "componentType": 5123, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 274320, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x0_Landing_Gear_19_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1970748, + "componentType": 5126, + "count": 536, + "min": [ + -0.12917187809944153, -0.5469763875007629, -0.09618484973907471 + ], + "max": [ + 0.12803617119789124, 0.030347267165780067, 0.05151597782969475 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_21_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1970760, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1970764, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1970768, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Landing_Gear_21_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1970772, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Landing_Gear_21_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1970776, + "componentType": 5123, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 274896, + "componentType": 5123, + "count": 1404, + "type": "SCALAR", + "name": "x0_Landing_Gear_21_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1990044, + "componentType": 5126, + "count": 303, + "min": [ + -0.04917677119374275, -0.000009629848136682995, -0.07162171602249146 + ], + "max": [ + 0.03977948799729347, 0.09793295711278915, 0.0642813965678215 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_20_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1990056, + "componentType": 5120, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1990060, + "componentType": 5120, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1990064, + "componentType": 5122, + "count": 303, + "type": "VEC2", + "name": "x0_Landing_Gear_20_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1990068, + "componentType": 5122, + "count": 303, + "type": "VEC2", + "name": "x0_Landing_Gear_20_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1990072, + "componentType": 5123, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 277704, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x0_Landing_Gear_20_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2000952, + "componentType": 5126, + "count": 826, + "min": [ + -0.09448172897100449, -0.26032304763793945, -0.14123685657978058 + ], + "max": [ + 0.5627886056900024, 0.26210975646972656, 0.28911852836608887 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_07_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2000964, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2000968, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2000972, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x0_Landing_Gear_07_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2000976, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x0_Landing_Gear_07_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2000980, + "componentType": 5123, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 279360, + "componentType": 5123, + "count": 2364, + "type": "SCALAR", + "name": "x0_Landing_Gear_07_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2030688, + "componentType": 5126, + "count": 1854, + "min": [ + -0.3379495441913605, -1.755534291267395, -0.42696040868759155 + ], + "max": [ + 0.3379504382610321, 0.15793973207473755, 0.22050267457962036 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_10_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2030700, + "componentType": 5120, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2030704, + "componentType": 5120, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2030708, + "componentType": 5122, + "count": 1854, + "type": "VEC2", + "name": "x0_Landing_Gear_10_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2030712, + "componentType": 5122, + "count": 1854, + "type": "VEC2", + "name": "x0_Landing_Gear_10_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2030716, + "componentType": 5123, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 284088, + "componentType": 5123, + "count": 5490, + "type": "SCALAR", + "name": "x0_Landing_Gear_10_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2097432, + "componentType": 5126, + "count": 849, + "min": [ + -0.09510672092437744, -0.2612183392047882, -0.2976394593715668 + ], + "max": [ + 0.562705397605896, 0.26121801137924194, 0.08521465212106705 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_08_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2097444, + "componentType": 5120, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2097448, + "componentType": 5120, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2097452, + "componentType": 5122, + "count": 849, + "type": "VEC2", + "name": "x0_Landing_Gear_08_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2097456, + "componentType": 5122, + "count": 849, + "type": "VEC2", + "name": "x0_Landing_Gear_08_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2097460, + "componentType": 5123, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 295068, + "componentType": 5123, + "count": 2460, + "type": "SCALAR", + "name": "x0_Landing_Gear_08_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2127996, + "componentType": 5126, + "count": 31236, + "min": [ + -0.42271745204925537, -0.3439873456954956, -1.1232128143310547 + ], + "max": [ + 0.4227442741394043, 0.40204107761383057, 1.0605225563049316 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_09_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2128008, + "componentType": 5120, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2128012, + "componentType": 5120, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2128016, + "componentType": 5122, + "count": 31236, + "type": "VEC2", + "name": "x0_Landing_Gear_09_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2128020, + "componentType": 5122, + "count": 31236, + "type": "VEC2", + "name": "x0_Landing_Gear_09_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2128024, + "componentType": 5123, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 299988, + "componentType": 5123, + "count": 83586, + "type": "SCALAR", + "name": "x0_Landing_Gear_09_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3252492, + "componentType": 5126, + "count": 478, + "min": [ + -0.05306252837181091, -0.22926025092601776, -0.05234402418136597 + ], + "max": [ + 0.7682449817657471, 0.22793050110340118, 0.10178564488887787 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_35_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3252504, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3252508, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3252512, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_Landing_Gear_35_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3252516, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_Landing_Gear_35_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3252520, + "componentType": 5123, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 467160, + "componentType": 5123, + "count": 1284, + "type": "SCALAR", + "name": "x0_Landing_Gear_35_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3269700, + "componentType": 5126, + "count": 458, + "min": [ + -0.7106466889381409, -0.23557336628437042, -0.05251873657107353 + ], + "max": [ + 0.05200745165348053, 0.22163447737693787, 0.10002290457487106 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_36_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3269712, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3269716, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3269720, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x0_Landing_Gear_36_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3269724, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x0_Landing_Gear_36_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3269728, + "componentType": 5123, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 469728, + "componentType": 5123, + "count": 1212, + "type": "SCALAR", + "name": "x0_Landing_Gear_36_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3286188, + "componentType": 5126, + "count": 1576, + "min": [ + -0.041386786848306656, -0.019434453919529915, -0.08656199276447296 + ], + "max": [ + 0.6188173890113831, 0.1080646738409996, 0.13369940221309662 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_06_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3286200, + "componentType": 5120, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3286204, + "componentType": 5120, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3286208, + "componentType": 5122, + "count": 1576, + "type": "VEC2", + "name": "x0_Landing_Gear_06_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3286212, + "componentType": 5122, + "count": 1576, + "type": "VEC2", + "name": "x0_Landing_Gear_06_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3286216, + "componentType": 5123, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 472152, + "componentType": 5123, + "count": 3168, + "type": "SCALAR", + "name": "x0_Landing_Gear_06_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3342924, + "componentType": 5126, + "count": 20264, + "min": [ + -1.0000739097595215, -0.6637558937072754, -0.6649067997932434 + ], + "max": [ + 1.0001029968261719, 0.6660622358322144, 0.6648836731910706 + ], + "type": "VEC3", + "name": "x0_LWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3342936, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3342940, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3342944, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_LWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3342948, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_LWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3342952, + "componentType": 5123, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 478488, + "componentType": 5123, + "count": 46620, + "type": "SCALAR", + "name": "x0_LWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4072428, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917589426040649, -0.6608234643936157, -0.6620064377784729 + ], + "max": [ + 0.9917637705802917, 0.6631320118904114, 0.6619722843170166 + ], + "type": "VEC3", + "name": "x0_LWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4072440, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4072444, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4072448, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_LWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4072452, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_LWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4072456, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 571728, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x0_LWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4237740, + "componentType": 5126, + "count": 20264, + "min": [ + -1.000076174736023, -0.6673151254653931, -0.6636988520622253 + ], + "max": [ + 1.0001046657562256, 0.6625059843063354, 0.6660887002944946 + ], + "type": "VEC3", + "name": "x0_LWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4237752, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4237756, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4237760, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_LWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4237764, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_LWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4237768, + "componentType": 5123, + "count": 20264, + "type": "VEC4", + "name": "x0_LWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 589680, + "componentType": 5123, + "count": 46620, + "type": "SCALAR", + "name": "x0_LWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4967244, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917914867401123, -0.6618000864982605, -0.6619616746902466 + ], + "max": [ + 0.9918091297149658, 0.6621331572532654, 0.6619909405708313 + ], + "type": "VEC3", + "name": "x0_LWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4967256, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4967260, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4967264, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_LWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4967268, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_LWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4967272, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x0_LWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 682920, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x0_LWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5132556, + "componentType": 5126, + "count": 60, + "min": [ + -0.0488433837890625, -0.05116844177246094, -0.03795480728149414 + ], + "max": [ + 0.8753352165222168, 0.051168859004974365, 0.03795576095581055 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_14_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5132568, + "componentType": 5120, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5132572, + "componentType": 5120, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5132576, + "componentType": 5122, + "count": 60, + "type": "VEC2", + "name": "x0_Landing_Gear_14_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5132580, + "componentType": 5122, + "count": 60, + "type": "VEC2", + "name": "x0_Landing_Gear_14_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5132584, + "componentType": 5123, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 700872, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x0_Landing_Gear_14_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5134716, + "componentType": 5126, + "count": 192, + "min": [ + -0.018723536282777786, -0.008138671517372131, -0.01874077506363392 + ], + "max": [ + 0.01876211166381836, 0.009295818395912647, 0.48693957924842834 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_05_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5134728, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5134732, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5134736, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_05_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5134740, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_05_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5134744, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 701160, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_05_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5141628, + "componentType": 5126, + "count": 312, + "min": [ + -0.036692168563604355, -0.039940252900123596, -0.42940112948417664 + ], + "max": [ + 0.03666689619421959, 0.0024476556573063135, 0.03666086867451668 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_06_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5141640, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5141644, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5141648, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_06_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5141652, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_06_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5141656, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 701640, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_06_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5152860, + "componentType": 5126, + "count": 646, + "min": [ + -0.2336142212152481, -0.00205461704172194, -0.0965968444943428 + ], + "max": [ + 0.09660275280475616, 0.4407203793525696, 0.28719744086265564 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_15_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5152872, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5152876, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5152880, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_15_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5152884, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_15_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5152888, + "componentType": 5123, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 702456, + "componentType": 5123, + "count": 1800, + "type": "SCALAR", + "name": "x0_Landing_Gear_15_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5176116, + "componentType": 5126, + "count": 1164, + "min": [ + -0.15022248029708862, -1.0136297941207886, -0.09331947565078735 + ], + "max": [ + 0.14326131343841553, 0.05540420487523079, 0.0719151496887207 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_16_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5176128, + "componentType": 5120, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5176132, + "componentType": 5120, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5176136, + "componentType": 5122, + "count": 1164, + "type": "VEC2", + "name": "x0_Landing_Gear_16_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5176140, + "componentType": 5122, + "count": 1164, + "type": "VEC2", + "name": "x0_Landing_Gear_16_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5176144, + "componentType": 5123, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 706056, + "componentType": 5123, + "count": 3396, + "type": "SCALAR", + "name": "x0_Landing_Gear_16_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5218020, + "componentType": 5126, + "count": 522, + "min": [ + -0.5850164890289307, -0.1507597416639328, -0.029622560366988182 + ], + "max": [ + 0.555263340473175, 0.917120099067688, 0.6377001404762268 + ], + "type": "VEC3", + "name": "x0_Door02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5218032, + "componentType": 5120, + "count": 522, + "type": "VEC4", + "name": "x0_Door02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5218036, + "componentType": 5120, + "count": 522, + "type": "VEC4", + "name": "x0_Door02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5218040, + "componentType": 5122, + "count": 522, + "type": "VEC2", + "name": "x0_Door02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5218044, + "componentType": 5122, + "count": 522, + "type": "VEC2", + "name": "x0_Door02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5218048, + "componentType": 5123, + "count": 522, + "type": "VEC4", + "name": "x0_Door02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 712848, + "componentType": 5123, + "count": 1365, + "type": "SCALAR", + "name": "x0_Door02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5236812, + "componentType": 5126, + "count": 124, + "min": [ + -0.004744803998619318, -0.003587823361158371, -0.004750960506498814 + ], + "max": [ + 1.0192136764526367, 0.000021334199118427932, 0.1693190485239029 + ], + "type": "VEC3", + "name": "x0_R_Door02_Decals_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5236824, + "componentType": 5120, + "count": 124, + "type": "VEC4", + "name": "x0_R_Door02_Decals_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5236828, + "componentType": 5120, + "count": 124, + "type": "VEC4", + "name": "x0_R_Door02_Decals_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5236832, + "componentType": 5122, + "count": 124, + "type": "VEC2", + "name": "x0_R_Door02_Decals_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5236836, + "componentType": 5122, + "count": 124, + "type": "VEC2", + "name": "x0_R_Door02_Decals_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5236840, + "componentType": 5123, + "count": 124, + "type": "VEC4", + "name": "x0_R_Door02_Decals_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 715578, + "componentType": 5123, + "count": 186, + "type": "SCALAR", + "name": "x0_R_Door02_Decals_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5241276, + "componentType": 5126, + "count": 124, + "min": [ + -0.004744804464280605, -0.000019428174709901214, -0.004744810983538628 + ], + "max": [ + 1.0192137956619263, 0.0031560189090669155, 0.16933207213878632 + ], + "type": "VEC3", + "name": "x0_Door02_Decals_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5241288, + "componentType": 5120, + "count": 124, + "type": "VEC4", + "name": "x0_Door02_Decals_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5241292, + "componentType": 5120, + "count": 124, + "type": "VEC4", + "name": "x0_Door02_Decals_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5241296, + "componentType": 5122, + "count": 124, + "type": "VEC2", + "name": "x0_Door02_Decals_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5241300, + "componentType": 5122, + "count": 124, + "type": "VEC2", + "name": "x0_Door02_Decals_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5241304, + "componentType": 5123, + "count": 124, + "type": "VEC4", + "name": "x0_Door02_Decals_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 715950, + "componentType": 5123, + "count": 186, + "type": "SCALAR", + "name": "x0_Door02_Decals_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5245740, + "componentType": 5126, + "count": 1020, + "min": [ + -0.6317733526229858, -0.022261139005422592, -0.23163428902626038 + ], + "max": [ + 0.3594142198562622, 1.011795163154602, 0.1624697744846344 + ], + "type": "VEC3", + "name": "x0_Door03_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5245752, + "componentType": 5120, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5245756, + "componentType": 5120, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5245760, + "componentType": 5122, + "count": 1020, + "type": "VEC2", + "name": "x0_Door03_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5245764, + "componentType": 5122, + "count": 1020, + "type": "VEC2", + "name": "x0_Door03_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5245768, + "componentType": 5123, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 716322, + "componentType": 5123, + "count": 3156, + "type": "SCALAR", + "name": "x0_Door03_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5282460, + "componentType": 5126, + "count": 1223, + "min": [ + -0.14000946283340454, -0.18412408232688904, -1.2881016731262207 + ], + "max": [ + 0.3011426627635956, 2.0216476917266846, 1.2881017923355103 + ], + "type": "VEC3", + "name": "x0_Door04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5282472, + "componentType": 5120, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5282476, + "componentType": 5120, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5282480, + "componentType": 5122, + "count": 1223, + "type": "VEC2", + "name": "x0_Door04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5282484, + "componentType": 5122, + "count": 1223, + "type": "VEC2", + "name": "x0_Door04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5282488, + "componentType": 5123, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 722634, + "componentType": 5123, + "count": 2550, + "type": "SCALAR", + "name": "x0_Door04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5326488, + "componentType": 5126, + "count": 228, + "min": [ + -0.30195483565330505, -0.48649635910987854, -1.888513207435608 + ], + "max": [ + 0.7854310870170593, 0.000058531761169433594, 0.0102299265563488 + ], + "type": "VEC3", + "name": "x0_R_Door04_Decals_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5326500, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5326504, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5326508, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_R_Door04_Decals_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5326512, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_R_Door04_Decals_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5326516, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 727734, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x0_R_Door04_Decals_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5334696, + "componentType": 5126, + "count": 538, + "min": [ + -1.450434684753418, -1.4424866437911987, -1.2827177047729492 + ], + "max": [ + 1.4504305124282837, 1.4424870014190674, 9.536740321891557e-7 + ], + "type": "VEC3", + "name": "x0_1_blurred_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5334708, + "componentType": 5120, + "count": 538, + "type": "VEC4", + "name": "x0_1_blurred_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5334712, + "componentType": 5120, + "count": 538, + "type": "VEC4", + "name": "x0_1_blurred_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5334716, + "componentType": 5122, + "count": 538, + "type": "VEC2", + "name": "x0_1_blurred_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5334720, + "componentType": 5122, + "count": 538, + "type": "VEC2", + "name": "x0_1_blurred_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5334724, + "componentType": 5123, + "count": 538, + "type": "VEC4", + "name": "x0_1_blurred_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 728418, + "componentType": 5123, + "count": 2700, + "type": "SCALAR", + "name": "x0_1_blurred_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5354064, + "componentType": 5126, + "count": 478, + "min": [ + -1.450434684753418, -1.44248628616333, -1.2827177047729492 + ], + "max": [ + 1.4504303932189941, 1.4424867630004883, 9.536740321891557e-7 + ], + "type": "VEC3", + "name": "x0_1_slow_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5354076, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_1_slow_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5354080, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_1_slow_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5354084, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_1_slow_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5354088, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_1_slow_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5354092, + "componentType": 5123, + "count": 478, + "type": "VEC4", + "name": "x0_1_slow_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 733818, + "componentType": 5123, + "count": 2520, + "type": "SCALAR", + "name": "x0_1_slow_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5371272, + "componentType": 5126, + "count": 4416, + "min": [ + -30.416528701782227, 27.35049819946289, 8.35725212097168 + ], + "max": [ + -27.79710578918457, 29.093143463134766, 11.25493335723877 + ], + "type": "VEC3", + "name": "x0_1_Still_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5371284, + "componentType": 5120, + "count": 4416, + "type": "VEC4", + "name": "x0_1_Still_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5371288, + "componentType": 5120, + "count": 4416, + "type": "VEC4", + "name": "x0_1_Still_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5371292, + "componentType": 5122, + "count": 4416, + "type": "VEC2", + "name": "x0_1_Still_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5371296, + "componentType": 5122, + "count": 4416, + "type": "VEC2", + "name": "x0_1_Still_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5371300, + "componentType": 5123, + "count": 4416, + "type": "VEC4", + "name": "x0_1_Still_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 738858, + "componentType": 5123, + "count": 17100, + "type": "SCALAR", + "name": "x0_1_Still_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5530248, + "componentType": 5126, + "count": 12594, + "min": [ + -1.9560017585754395, -1.9257581233978271, -1.2277724742889404 + ], + "max": [ + 1.9560022354125977, 1.9257562160491943, 1.2277724742889404 + ], + "type": "VEC3", + "name": "x0_Engine_Duct_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5530260, + "componentType": 5120, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5530264, + "componentType": 5120, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5530268, + "componentType": 5122, + "count": 12594, + "type": "VEC2", + "name": "x0_Engine_Duct_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5530272, + "componentType": 5122, + "count": 12594, + "type": "VEC2", + "name": "x0_Engine_Duct_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5530276, + "componentType": 5123, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 773058, + "componentType": 5123, + "count": 38484, + "type": "SCALAR", + "name": "x0_Engine_Duct_left_indices#2" + }, { + "bufferView": 4, + "byteOffset": 5983632, + "componentType": 5126, + "count": 9448, + "min": [ + -29.76658821105957, 25.69625473022461, 8.172950744628906 + ], + "max": [ + -26.73828887939453, 27.78619956970215, 11.439047813415527 + ], + "type": "VEC3", + "name": "x0_Engine_Details_04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5983644, + "componentType": 5120, + "count": 9448, + "type": "VEC4", + "name": "x0_Engine_Details_04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5983648, + "componentType": 5120, + "count": 9448, + "type": "VEC4", + "name": "x0_Engine_Details_04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5983652, + "componentType": 5122, + "count": 9448, + "type": "VEC2", + "name": "x0_Engine_Details_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5983656, + "componentType": 5122, + "count": 9448, + "type": "VEC2", + "name": "x0_Engine_Details_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5983660, + "componentType": 5123, + "count": 9448, + "type": "VEC4", + "name": "x0_Engine_Details_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 850026, + "componentType": 5123, + "count": 19572, + "type": "SCALAR", + "name": "x0_Engine_Details_04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6323760, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_LEFT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6323772, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6323776, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6323780, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6323784, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6323788, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 889170, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_LEFT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6323904, + "componentType": 5126, + "count": 5637, + "min": [ + 7.761521339416504, -3.588141918182373, -6.928446292877197 + ], + "max": [ + 11.850577354431152, 0.6290028691291809, 4.622333526611328 + ], + "type": "VEC3", + "name": "FROST_ENGINEL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6323916, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6323920, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6323924, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6323928, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6323932, + "componentType": 5123, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 889182, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINEL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6526836, + "componentType": 5126, + "count": 30, + "min": [ + -2.0173912048339844, -0.27122175693511963, -0.4341895580291748 + ], + "max": [ + 2.017392158508301, 0.2712216377258301, 0.434190034866333 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_EngA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6526848, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6526852, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6526856, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x0_Livery_KLM_EngA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6526860, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x0_Livery_KLM_EngA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6526864, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 913038, + "componentType": 5123, + "count": 96, + "type": "SCALAR", + "name": "x0_Livery_KLM_EngA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6527916, + "componentType": 5126, + "count": 605, + "min": [ + -1.5235580205917358, -0.6418091058731079, -0.7518234848976135 + ], + "max": [ + 1.3070539236068726, -0.3945200741291046, 0.15262633562088013 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6527928, + "componentType": 5120, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6527932, + "componentType": 5120, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6527936, + "componentType": 5122, + "count": 605, + "type": "VEC2", + "name": "x0_Spoiler_1_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6527940, + "componentType": 5122, + "count": 605, + "type": "VEC2", + "name": "x0_Spoiler_1_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6527944, + "componentType": 5123, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 913230, + "componentType": 5123, + "count": 1782, + "type": "SCALAR", + "name": "x0_Spoiler_1_1_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6549696, + "componentType": 5126, + "count": 617, + "min": [ + -1.0108203887939453, 0.24269093573093414, -0.8766886591911316 + ], + "max": [ + 1.197335124015808, 0.4789634943008423, 0.030738171190023422 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_3_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6549708, + "componentType": 5120, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6549712, + "componentType": 5120, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6549716, + "componentType": 5122, + "count": 617, + "type": "VEC2", + "name": "x0_Spoiler_1_3_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6549720, + "componentType": 5122, + "count": 617, + "type": "VEC2", + "name": "x0_Spoiler_1_3_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6549724, + "componentType": 5123, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 916794, + "componentType": 5123, + "count": 1782, + "type": "SCALAR", + "name": "x0_Spoiler_1_3_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6571908, + "componentType": 5126, + "count": 611, + "min": [ + -1.208500862121582, -0.17577537894248962, -0.8176218271255493 + ], + "max": [ + 1.2636868953704834, 0.06423252820968628, 0.08986556529998779 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_2_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6571920, + "componentType": 5120, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6571924, + "componentType": 5120, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6571928, + "componentType": 5122, + "count": 611, + "type": "VEC2", + "name": "x0_Spoiler_1_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6571932, + "componentType": 5122, + "count": 611, + "type": "VEC2", + "name": "x0_Spoiler_1_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6571936, + "componentType": 5123, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 920358, + "componentType": 5123, + "count": 1788, + "type": "SCALAR", + "name": "x0_Spoiler_1_2_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6593904, + "componentType": 5126, + "count": 192, + "min": [ + -0.39819106459617615, -0.010832074098289013, -0.019930103793740273 + ], + "max": [ + 0.021505268290638924, 0.006431172601878643, 0.020922916010022163 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_03_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6593916, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6593920, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6593924, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_03_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6593928, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_03_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6593932, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 923934, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_03_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6600816, + "componentType": 5126, + "count": 312, + "min": [ + -0.03713954612612724, -0.03811311349272728, -0.037660565227270126 + ], + "max": [ + 0.3483870327472687, 0.0042800866067409515, 0.0356592983007431 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6600828, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6600832, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6600836, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6600840, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6600844, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 924414, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6612048, + "componentType": 5126, + "count": 312, + "min": [ + -0.037144340574741364, -0.03811116889119148, -0.03766323998570442 + ], + "max": [ + 0.3483675420284271, 0.004280551336705685, 0.035664282739162445 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6612060, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6612064, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6612068, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6612072, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6612076, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 925230, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6623280, + "componentType": 5126, + "count": 192, + "min": [ + -0.40019235014915466, -0.009568147361278534, -0.01927156001329422 + ], + "max": [ + 0.019491689279675484, 0.007843511179089546, 0.0186501145362854 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6623292, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6623296, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6623300, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6623304, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6623308, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 926046, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6630192, + "componentType": 5126, + "count": 267, + "min": [ + -0.12099575996398926, -0.15073537826538086, -0.2017841339111328 + ], + "max": [ + 0.11765575408935547, 0.14239418506622314, 0.15215301513671875 + ], + "type": "VEC3", + "name": "x0_wing_landinglight_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6630204, + "componentType": 5120, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6630208, + "componentType": 5120, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6630212, + "componentType": 5122, + "count": 267, + "type": "VEC2", + "name": "x0_wing_landinglight_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6630216, + "componentType": 5122, + "count": 267, + "type": "VEC2", + "name": "x0_wing_landinglight_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6630220, + "componentType": 5123, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 926526, + "componentType": 5123, + "count": 1038, + "type": "SCALAR", + "name": "x0_wing_landinglight_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6639804, + "componentType": 5126, + "count": 91, + "min": [ + -0.040706634521484375, -0.033503055572509766, -0.07558143138885498 + ], + "max": [ + 0.30609628558158875, 1.0481839179992676, 0.03409171104431152 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6639816, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6639820, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6639824, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x0_Landing_Gear_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6639828, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x0_Landing_Gear_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6639832, + "componentType": 5123, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 928602, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "x0_Landing_Gear_02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6643080, + "componentType": 5126, + "count": 213, + "min": [ + -0.29485851526260376, -1.1350083351135254, -0.04442405700683594 + ], + "max": [ + 0.03963810205459595, 0.039636459201574326, 0.004242420196533203 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6643092, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6643096, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6643100, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x0_Landing_Gear_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6643104, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x0_Landing_Gear_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6643108, + "componentType": 5123, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 929274, + "componentType": 5123, + "count": 816, + "type": "SCALAR", + "name": "x0_Landing_Gear_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6650748, + "componentType": 5126, + "count": 1494, + "min": [ + -0.2652150094509125, -0.2706133723258972, -1.6312917470932007 + ], + "max": [ + 0.8295285105705261, 2.1070189476013184, 1.8943572044372559 + ], + "type": "VEC3", + "name": "x0_R_Door01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6650760, + "componentType": 5120, + "count": 1494, + "type": "VEC4", + "name": "x0_R_Door01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6650764, + "componentType": 5120, + "count": 1494, + "type": "VEC4", + "name": "x0_R_Door01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6650768, + "componentType": 5122, + "count": 1494, + "type": "VEC2", + "name": "x0_R_Door01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6650772, + "componentType": 5122, + "count": 1494, + "type": "VEC2", + "name": "x0_R_Door01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6650776, + "componentType": 5123, + "count": 1494, + "type": "VEC4", + "name": "x0_R_Door01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 930906, + "componentType": 5123, + "count": 3858, + "type": "SCALAR", + "name": "x0_R_Door01_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6704532, + "componentType": 5126, + "count": 80, + "min": [ + -2.813749313354492, -0.029162079095840454, -0.0010647773742675781 + ], + "max": [ + 0.022885531187057495, 0.33496615290641785, 0.35142356157302856 + ], + "type": "VEC3", + "name": "x0_R_Door01_Decals_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6704544, + "componentType": 5120, + "count": 80, + "type": "VEC4", + "name": "x0_R_Door01_Decals_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6704548, + "componentType": 5120, + "count": 80, + "type": "VEC4", + "name": "x0_R_Door01_Decals_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6704552, + "componentType": 5122, + "count": 80, + "type": "VEC2", + "name": "x0_R_Door01_Decals_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6704556, + "componentType": 5122, + "count": 80, + "type": "VEC2", + "name": "x0_R_Door01_Decals_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6704560, + "componentType": 5123, + "count": 80, + "type": "VEC4", + "name": "x0_R_Door01_Decals_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 938622, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x0_R_Door01_Decals_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6707412, + "componentType": 5126, + "count": 552, + "min": [ + -2.8610517978668213, -2.0603983402252197, -37.41227340698242 + ], + "max": [ + 2.8607866764068604, 1.778921127319336, 25.77922821044922 + ], + "type": "VEC3", + "name": "x0_Body_front_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6707424, + "componentType": 5120, + "count": 552, + "type": "VEC4", + "name": "x0_Body_front_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6707428, + "componentType": 5120, + "count": 552, + "type": "VEC4", + "name": "x0_Body_front_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6707432, + "componentType": 5122, + "count": 552, + "type": "VEC2", + "name": "x0_Body_front_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6707436, + "componentType": 5122, + "count": 552, + "type": "VEC2", + "name": "x0_Body_front_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6707440, + "componentType": 5123, + "count": 552, + "type": "VEC4", + "name": "x0_Body_front_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 938862, + "componentType": 5123, + "count": 1368, + "type": "SCALAR", + "name": "x0_Body_front_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6727284, + "componentType": 5126, + "count": 2664, + "min": [ + -2.821240186691284, 1.1378698348999023, -26.904094696044922 + ], + "max": [ + 2.821239709854126, 1.78813636302948, 22.001354217529297 + ], + "type": "VEC3", + "name": "x0_windowGlass_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6727296, + "componentType": 5120, + "count": 2664, + "type": "VEC4", + "name": "x0_windowGlass_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6727300, + "componentType": 5120, + "count": 2664, + "type": "VEC4", + "name": "x0_windowGlass_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6727304, + "componentType": 5122, + "count": 2664, + "type": "VEC2", + "name": "x0_windowGlass_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6727308, + "componentType": 5122, + "count": 2664, + "type": "VEC2", + "name": "x0_windowGlass_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6727312, + "componentType": 5123, + "count": 2664, + "type": "VEC4", + "name": "x0_windowGlass_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 941598, + "componentType": 5123, + "count": 7956, + "type": "SCALAR", + "name": "x0_windowGlass_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6823188, + "componentType": 5126, + "count": 197469, + "min": [ + -3.255725860595703, -2.7663183212280273, -39.45466995239258 + ], + "max": [ + 3.255725860595703, 12.46463394165039, 28.476634979248047 + ], + "type": "VEC3", + "name": "x0_Body_front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6823200, + "componentType": 5120, + "count": 197469, + "type": "VEC4", + "name": "x0_Body_front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6823204, + "componentType": 5120, + "count": 197469, + "type": "VEC4", + "name": "x0_Body_front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6823208, + "componentType": 5122, + "count": 197469, + "type": "VEC2", + "name": "x0_Body_front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6823212, + "componentType": 5122, + "count": 197469, + "type": "VEC2", + "name": "x0_Body_front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6823216, + "componentType": 5123, + "count": 197469, + "type": "VEC4", + "name": "x0_Body_front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 957510, + "componentType": 5123, + "count": 417690, + "type": "SCALAR", + "name": "x0_Body_front_center_indices#10" + }, { + "bufferView": 4, + "byteOffset": 13932072, + "componentType": 5126, + "count": 18874, + "min": [ + -0.6842957139015198, -1.2334191799163818, -0.38600975275039673 + ], + "max": [ + 0.6873666644096375, 0.23608949780464172, 0.4601714015007019 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 13932084, + "componentType": 5120, + "count": 18874, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 13932088, + "componentType": 5120, + "count": 18874, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 13932092, + "componentType": 5122, + "count": 18874, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 13932096, + "componentType": 5122, + "count": 18874, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 13932100, + "componentType": 5123, + "count": 18874, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1792890, + "componentType": 5123, + "count": 52524, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart16_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14611536, + "componentType": 5126, + "count": 1477, + "min": [ + -0.060352593660354614, -0.11294680833816528, -0.09622730314731598 + ], + "max": [ + 0.09581354260444641, 0.09739643335342407, 0.31501254439353943 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14611548, + "componentType": 5120, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14611552, + "componentType": 5120, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14611556, + "componentType": 5122, + "count": 1477, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14611560, + "componentType": 5122, + "count": 1477, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14611564, + "componentType": 5123, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart10_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1897938, + "componentType": 5123, + "count": 4686, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart10_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14664708, + "componentType": 5126, + "count": 202, + "min": [ + -0.04366140440106392, -0.045600950717926025, -0.05423348769545555 + ], + "max": [ + 0.15206390619277954, 0.0006025433540344238, 0.259892076253891 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14664720, + "componentType": 5120, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14664724, + "componentType": 5120, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14664728, + "componentType": 5122, + "count": 202, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14664732, + "componentType": 5122, + "count": 202, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14664736, + "componentType": 5123, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart11_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1907310, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart11_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14671980, + "componentType": 5126, + "count": 1477, + "min": [ + -0.095248281955719, -0.2148498296737671, -0.09844669699668884 + ], + "max": [ + 0.06396561861038208, -0.0045092105865478516, 0.31307291984558105 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14671992, + "componentType": 5120, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14671996, + "componentType": 5120, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14672000, + "componentType": 5122, + "count": 1477, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14672004, + "componentType": 5122, + "count": 1477, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14672008, + "componentType": 5123, + "count": 1477, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart09_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1908774, + "componentType": 5123, + "count": 4686, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart09_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14725152, + "componentType": 5126, + "count": 202, + "min": [ + -0.04010430723428726, -0.04563194140791893, -0.05983662232756615 + ], + "max": [ + 0.067792147397995, 0.000606834830250591, 0.28443315625190735 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14725164, + "componentType": 5120, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14725168, + "componentType": 5120, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14725172, + "componentType": 5122, + "count": 202, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14725176, + "componentType": 5122, + "count": 202, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14725180, + "componentType": 5123, + "count": 202, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart12_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1918146, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart12_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14732424, + "componentType": 5126, + "count": 1281, + "min": [ + -0.1729661524295807, -0.08840900659561157, -0.22619377076625824 + ], + "max": [ + 0.26754724979400635, 0.09122806787490845, 0.2290666252374649 + ], + "type": "VEC3", + "name": "x0_Gear_Wheel_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14732436, + "componentType": 5120, + "count": 1281, + "type": "VEC4", + "name": "x0_Gear_Wheel_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14732440, + "componentType": 5120, + "count": 1281, + "type": "VEC4", + "name": "x0_Gear_Wheel_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14732444, + "componentType": 5122, + "count": 1281, + "type": "VEC2", + "name": "x0_Gear_Wheel_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14732448, + "componentType": 5122, + "count": 1281, + "type": "VEC2", + "name": "x0_Gear_Wheel_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14732452, + "componentType": 5123, + "count": 1281, + "type": "VEC4", + "name": "x0_Gear_Wheel_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1919610, + "componentType": 5123, + "count": 4266, + "type": "SCALAR", + "name": "x0_Gear_Wheel_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14778540, + "componentType": 5126, + "count": 924, + "min": [ + -0.326070100069046, -1.9048434495925903, -0.25345379114151 + ], + "max": [ + 0.3254068195819855, -0.8368078470230103, 0.2994488775730133 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14778552, + "componentType": 5120, + "count": 924, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14778556, + "componentType": 5120, + "count": 924, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14778560, + "componentType": 5122, + "count": 924, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14778564, + "componentType": 5122, + "count": 924, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14778568, + "componentType": 5123, + "count": 924, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart13_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1928142, + "componentType": 5123, + "count": 2508, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart13_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14811804, + "componentType": 5126, + "count": 1212, + "min": [ + -0.13897648453712463, -0.4176607131958008, -0.597161054611206 + ], + "max": [ + 0.11730798333883286, 0.056268565356731415, 0.05218049883842468 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14811816, + "componentType": 5120, + "count": 1212, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14811820, + "componentType": 5120, + "count": 1212, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14811824, + "componentType": 5122, + "count": 1212, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14811828, + "componentType": 5122, + "count": 1212, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14811832, + "componentType": 5123, + "count": 1212, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart14_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1933158, + "componentType": 5123, + "count": 3396, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart14_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 14855436, + "componentType": 5126, + "count": 11500, + "min": [ + -0.5625399351119995, -0.5057219862937927, -0.5057204365730286 + ], + "max": [ + 0.5625399351119995, 0.5057191252708435, 0.5057223439216614 + ], + "type": "VEC3", + "name": "x0_Wheel_Nose_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 14855448, + "componentType": 5120, + "count": 11500, + "type": "VEC4", + "name": "x0_Wheel_Nose_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 14855452, + "componentType": 5120, + "count": 11500, + "type": "VEC4", + "name": "x0_Wheel_Nose_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 14855456, + "componentType": 5122, + "count": 11500, + "type": "VEC2", + "name": "x0_Wheel_Nose_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 14855460, + "componentType": 5122, + "count": 11500, + "type": "VEC2", + "name": "x0_Wheel_Nose_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 14855464, + "componentType": 5123, + "count": 11500, + "type": "VEC4", + "name": "x0_Wheel_Nose_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1939950, + "componentType": 5123, + "count": 24900, + "type": "SCALAR", + "name": "x0_Wheel_Nose_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15269436, + "componentType": 5126, + "count": 4056, + "min": [ + -0.5598625540733337, -0.5029525756835938, -0.5029498338699341 + ], + "max": [ + 0.5598625540733337, 0.50295090675354, 0.5029536485671997 + ], + "type": "VEC3", + "name": "x0_Wheel_Nose_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15269448, + "componentType": 5120, + "count": 4056, + "type": "VEC4", + "name": "x0_Wheel_Nose_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15269452, + "componentType": 5120, + "count": 4056, + "type": "VEC4", + "name": "x0_Wheel_Nose_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15269456, + "componentType": 5122, + "count": 4056, + "type": "VEC2", + "name": "x0_Wheel_Nose_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15269460, + "componentType": 5122, + "count": 4056, + "type": "VEC2", + "name": "x0_Wheel_Nose_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15269464, + "componentType": 5123, + "count": 4056, + "type": "VEC4", + "name": "x0_Wheel_Nose_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1989750, + "componentType": 5123, + "count": 8112, + "type": "SCALAR", + "name": "x0_Wheel_Nose_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15415452, + "componentType": 5126, + "count": 476, + "min": [ + -0.03624583035707474, -0.11790384352207184, -0.03628304973244667 + ], + "max": [ + 0.3546740710735321, 0.11790402978658676, 0.05115937441587448 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15415464, + "componentType": 5120, + "count": 476, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15415468, + "componentType": 5120, + "count": 476, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15415472, + "componentType": 5122, + "count": 476, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15415476, + "componentType": 5122, + "count": 476, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15415480, + "componentType": 5123, + "count": 476, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart15_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2005974, + "componentType": 5123, + "count": 1284, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart15_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15432588, + "componentType": 5126, + "count": 189, + "min": [ + -0.01997852325439453, -0.015537261962890625, 0.0922081470489502 + ], + "max": [ + 0.018337488174438477, 0.05706787109375, 0.17237341403961182 + ], + "type": "VEC3", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15432600, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15432604, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15432608, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15432612, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15432616, + "componentType": 5123, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2008542, + "componentType": 5123, + "count": 444, + "type": "SCALAR", + "name": "x0_Door_Left02_hydraulic02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15439392, + "componentType": 5126, + "count": 306, + "min": [ + -0.05076947063207626, -0.061460427939891815, -0.8579513430595398 + ], + "max": [ + 0.04492057114839554, 0.08313360810279846, 0.06006242334842682 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15439404, + "componentType": 5120, + "count": 306, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15439408, + "componentType": 5120, + "count": 306, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15439412, + "componentType": 5122, + "count": 306, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15439416, + "componentType": 5122, + "count": 306, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15439420, + "componentType": 5123, + "count": 306, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart07_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2009430, + "componentType": 5123, + "count": 1020, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart07_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15450408, + "componentType": 5126, + "count": 187, + "min": [ + -0.036708831787109375, -1.042737364768982, 0.07490110397338867 + ], + "max": [ + 0.07288551330566406, -0.9773615598678589, 1.1132006645202637 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15450420, + "componentType": 5120, + "count": 187, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15450424, + "componentType": 5120, + "count": 187, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15450428, + "componentType": 5122, + "count": 187, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15450432, + "componentType": 5122, + "count": 187, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15450436, + "componentType": 5123, + "count": 187, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart04_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2011470, + "componentType": 5123, + "count": 708, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart04_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15457140, + "componentType": 5126, + "count": 172, + "min": [ + -0.08781242370605469, -1.110895037651062, 0.03920698165893555 + ], + "max": [ + 0.058147430419921875, -0.9635742902755737, 0.9703898429870605 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15457152, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15457156, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15457160, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15457164, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15457168, + "componentType": 5123, + "count": 172, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart05_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2012886, + "componentType": 5123, + "count": 480, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart05_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15463332, + "componentType": 5126, + "count": 32, + "min": [ + -0.07677067816257477, -0.04003610834479332, -0.1452082395553589 + ], + "max": [ + 0.005206617992371321, 0.0001384316710755229, 0.004933052230626345 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15463344, + "componentType": 5120, + "count": 32, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15463348, + "componentType": 5120, + "count": 32, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15463352, + "componentType": 5122, + "count": 32, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15463356, + "componentType": 5122, + "count": 32, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15463360, + "componentType": 5123, + "count": 32, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart16_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2013846, + "componentType": 5123, + "count": 48, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart16_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15464484, + "componentType": 5126, + "count": 148, + "min": [ + -0.3641424775123596, -0.1244007870554924, -0.015546221286058426 + ], + "max": [ + 0.3641424775123596, 0.12534229457378387, 0.011311886832118034 + ], + "type": "VEC3", + "name": "x0_cgear_landinglight_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15464496, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_cgear_landinglight_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15464500, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_cgear_landinglight_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15464504, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_cgear_landinglight_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15464508, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_cgear_landinglight_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15464512, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x0_cgear_landinglight_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2013942, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x0_cgear_landinglight_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15469812, + "componentType": 5126, + "count": 189, + "min": [ + -0.035149574279785156, -0.05077552795410156, -0.012537360191345215 + ], + "max": [ + 0.0007467269897460938, 0.013807296752929688, 0.06459999084472656 + ], + "type": "VEC3", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15469824, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15469828, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15469832, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15469836, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15469840, + "componentType": 5123, + "count": 189, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2015094, + "componentType": 5123, + "count": 444, + "type": "SCALAR", + "name": "x0_Door_Right02_hydraulic02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15476616, + "componentType": 5126, + "count": 336, + "min": [ + -0.05591854453086853, -0.06089082360267639, 0.015495792031288147 + ], + "max": [ + 0.061689287424087524, 0.05669650435447693, 0.07396075129508972 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15476628, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15476632, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15476636, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15476640, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15476644, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2015982, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15488712, + "componentType": 5126, + "count": 336, + "min": [ + -0.05926698446273804, -0.06006696820259094, 0.014746665954589844 + ], + "max": [ + 0.05834090709686279, 0.05752035975456238, 0.07321162521839142 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15488724, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15488728, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15488732, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15488736, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15488740, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2017038, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15500808, + "componentType": 5126, + "count": 336, + "min": [ + -0.06035532057285309, -0.05839133262634277, 0.01306241750717163 + ], + "max": [ + 0.05670058727264404, 0.05864408612251282, 0.07599139213562012 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15500820, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15500824, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15500828, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15500832, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15500836, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2018094, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15512904, + "componentType": 5126, + "count": 336, + "min": [ + -0.053412288427352905, -0.057750552892684937, 0.012313216924667358 + ], + "max": [ + 0.06364355981349945, 0.059284865856170654, 0.07211384922266006 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15512916, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15512920, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15512924, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15512928, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15512932, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2019150, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15525000, + "componentType": 5126, + "count": 308, + "min": [ + -0.06131787225604057, -0.16340357065200806, -0.10155516117811203 + ], + "max": [ + 0.7181879878044128, 0.21221040189266205, 0.0551629438996315 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15525012, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15525016, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15525020, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15525024, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15525028, + "componentType": 5123, + "count": 308, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2020206, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart01_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15536088, + "componentType": 5126, + "count": 496, + "min": [ + -0.08662214875221252, -0.1922169178724289, -0.09896650910377502 + ], + "max": [ + 0.3318083584308624, 0.18464632332324982, 0.07483071088790894 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15536100, + "componentType": 5120, + "count": 496, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15536104, + "componentType": 5120, + "count": 496, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15536108, + "componentType": 5122, + "count": 496, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15536112, + "componentType": 5122, + "count": 496, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15536116, + "componentType": 5123, + "count": 496, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2021430, + "componentType": 5123, + "count": 966, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15553944, + "componentType": 5126, + "count": 104, + "min": [ + -0.031855180859565735, -0.7680961489677429, -0.1983286291360855 + ], + "max": [ + 0.019964242354035378, -0.0019619471859186888, 0.1924799084663391 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15553956, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15553960, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15553964, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15553968, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15553972, + "componentType": 5123, + "count": 104, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart03_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2023362, + "componentType": 5123, + "count": 264, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart03_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15557688, + "componentType": 5126, + "count": 381, + "min": [ + -0.059207916259765625, -0.6851544380187988, -0.059002041816711426 + ], + "max": [ + 0.05928802490234375, 0.6858001947402954, 1.434278130531311 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15557700, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15557704, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15557708, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15557712, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15557716, + "componentType": 5123, + "count": 381, + "type": "VEC4", + "name": "x0_Landing_Gear_NosePart06_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2023890, + "componentType": 5123, + "count": 990, + "type": "SCALAR", + "name": "x0_Landing_Gear_NosePart06_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15571404, + "componentType": 5126, + "count": 91, + "min": [ + -0.3060963451862335, -1.0481839179992676, -0.03409171104431152 + ], + "max": [ + 0.04070660471916199, 0.033503055572509766, 0.07558143138885498 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15571416, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15571420, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15571424, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x0_Landing_Gear_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15571428, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x0_Landing_Gear_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15571432, + "componentType": 5123, + "count": 91, + "type": "VEC4", + "name": "x0_Landing_Gear_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2025870, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "x0_Landing_Gear_02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15574680, + "componentType": 5126, + "count": 2337, + "min": [ + -4.927886009216309, -0.31587278842926025, -0.0954904556274414 + ], + "max": [ + 4.574014663696289, 0.06374800205230713, 1.6991190910339355 + ], + "type": "VEC3", + "name": "x0_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15574692, + "componentType": 5120, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15574696, + "componentType": 5120, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15574700, + "componentType": 5122, + "count": 2337, + "type": "VEC2", + "name": "x0_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15574704, + "componentType": 5122, + "count": 2337, + "type": "VEC2", + "name": "x0_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15574708, + "componentType": 5123, + "count": 2337, + "type": "VEC4", + "name": "x0_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2026542, + "componentType": 5123, + "count": 7416, + "type": "SCALAR", + "name": "x0_Elevator_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15658812, + "componentType": 5126, + "count": 4266, + "min": [ + -9.495525360107422, -6.309585094451904, -0.7741330862045288 + ], + "max": [ + 0.15392446517944336, 1.948912262916565, 0.92555832862854 + ], + "type": "VEC3", + "name": "x0_Trim_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15658824, + "componentType": 5120, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15658828, + "componentType": 5120, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15658832, + "componentType": 5122, + "count": 4266, + "type": "VEC2", + "name": "x0_Trim_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15658836, + "componentType": 5122, + "count": 4266, + "type": "VEC2", + "name": "x0_Trim_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15658840, + "componentType": 5123, + "count": 4266, + "type": "VEC4", + "name": "x0_Trim_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2041374, + "componentType": 5123, + "count": 11700, + "type": "SCALAR", + "name": "x0_Trim_Elevator_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 15812388, + "componentType": 5126, + "count": 49, + "min": [ + -0.058685302734375, -0.02209782600402832, -0.058669209480285645 + ], + "max": [ + 0.058684349060058594, -0.0038215811364352703, 0.058673858642578125 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15812400, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15812404, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15812408, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15812412, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15812416, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2064774, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 15814152, + "componentType": 5126, + "count": 993, + "min": [ + -9.87392520904541, 0.4362349510192871, -39.12284469604492 + ], + "max": [ + -1.1026742458343506, 2.5371527671813965, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15814164, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15814168, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15814172, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15814176, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15814180, + "componentType": 5123, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2065062, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 15849900, + "componentType": 5126, + "count": 686, + "min": [ + -0.20613035559654236, -0.8431015014648438, -1.0106983184814453 + ], + "max": [ + 0.20613044500350952, 0.843102216720581, 1.0106931924819946 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15849912, + "componentType": 5120, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15849916, + "componentType": 5120, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15849920, + "componentType": 5122, + "count": 686, + "type": "VEC2", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15849924, + "componentType": 5122, + "count": 686, + "type": "VEC2", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15849928, + "componentType": 5123, + "count": 686, + "type": "VEC4", + "name": "x0_Livery_KLM_ElevatorTrimR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2069508, + "componentType": 5123, + "count": 2166, + "type": "SCALAR", + "name": "x0_Livery_KLM_ElevatorTrimR_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15874596, + "componentType": 5126, + "count": 770, + "min": [ + -0.5556193590164185, -0.9081850647926331, -0.6309080719947815 + ], + "max": [ + 0.5846603512763977, 0.1596960723400116, 0.03641451150178909 + ], + "type": "VEC3", + "name": "x0_Door02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15874608, + "componentType": 5120, + "count": 770, + "type": "VEC4", + "name": "x0_Door02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15874612, + "componentType": 5120, + "count": 770, + "type": "VEC4", + "name": "x0_Door02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15874616, + "componentType": 5122, + "count": 770, + "type": "VEC2", + "name": "x0_Door02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15874620, + "componentType": 5122, + "count": 770, + "type": "VEC2", + "name": "x0_Door02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15874624, + "componentType": 5123, + "count": 770, + "type": "VEC4", + "name": "x0_Door02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2073840, + "componentType": 5123, + "count": 1737, + "type": "SCALAR", + "name": "x0_Door02_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 15902316, + "componentType": 5126, + "count": 1020, + "min": [ + -0.36338624358177185, -1.0168973207473755, -0.19277378916740417 + ], + "max": [ + 0.6204641461372375, 0.02228240855038166, 0.23058198392391205 + ], + "type": "VEC3", + "name": "x0_Door03_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15902328, + "componentType": 5120, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15902332, + "componentType": 5120, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15902336, + "componentType": 5122, + "count": 1020, + "type": "VEC2", + "name": "x0_Door03_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15902340, + "componentType": 5122, + "count": 1020, + "type": "VEC2", + "name": "x0_Door03_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15902344, + "componentType": 5123, + "count": 1020, + "type": "VEC4", + "name": "x0_Door03_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2077314, + "componentType": 5123, + "count": 3156, + "type": "SCALAR", + "name": "x0_Door03_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15939036, + "componentType": 5126, + "count": 12594, + "min": [ + -1.9560039043426514, -1.925757646560669, -1.2277722358703613 + ], + "max": [ + 1.9560034275054932, 1.9257595539093018, 1.2277722358703613 + ], + "type": "VEC3", + "name": "x0_Engine_Duct_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15939048, + "componentType": 5120, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15939052, + "componentType": 5120, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15939056, + "componentType": 5122, + "count": 12594, + "type": "VEC2", + "name": "x0_Engine_Duct_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15939060, + "componentType": 5122, + "count": 12594, + "type": "VEC2", + "name": "x0_Engine_Duct_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15939064, + "componentType": 5123, + "count": 12594, + "type": "VEC4", + "name": "x0_Engine_Duct_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2083626, + "componentType": 5123, + "count": 38484, + "type": "SCALAR", + "name": "x0_Engine_Duct_right_indices#2" + }, { + "bufferView": 4, + "byteOffset": 16392420, + "componentType": 5126, + "count": 6480, + "min": [ + -1.6271486282348633, -0.2923080623149872, -0.03522161766886711 + ], + "max": [ + 1.6758681535720825, 0.5452633500099182, 3.2886152267456055 + ], + "type": "VEC3", + "name": "x0_Engine_Details_04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16392432, + "componentType": 5120, + "count": 6480, + "type": "VEC4", + "name": "x0_Engine_Details_04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16392436, + "componentType": 5120, + "count": 6480, + "type": "VEC4", + "name": "x0_Engine_Details_04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16392440, + "componentType": 5122, + "count": 6480, + "type": "VEC2", + "name": "x0_Engine_Details_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16392444, + "componentType": 5122, + "count": 6480, + "type": "VEC2", + "name": "x0_Engine_Details_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16392448, + "componentType": 5123, + "count": 6480, + "type": "VEC4", + "name": "x0_Engine_Details_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2160594, + "componentType": 5123, + "count": 13752, + "type": "SCALAR", + "name": "x0_Engine_Details_04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16625700, + "componentType": 5126, + "count": 4416, + "min": [ + -30.416528701782227, 27.35049819946289, 8.35725212097168 + ], + "max": [ + -27.79710578918457, 29.093143463134766, 11.25493335723877 + ], + "type": "VEC3", + "name": "x0_2_Still_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16625712, + "componentType": 5120, + "count": 4416, + "type": "VEC4", + "name": "x0_2_Still_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16625716, + "componentType": 5120, + "count": 4416, + "type": "VEC4", + "name": "x0_2_Still_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16625720, + "componentType": 5122, + "count": 4416, + "type": "VEC2", + "name": "x0_2_Still_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16625724, + "componentType": 5122, + "count": 4416, + "type": "VEC2", + "name": "x0_2_Still_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16625728, + "componentType": 5123, + "count": 4416, + "type": "VEC4", + "name": "x0_2_Still_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2188098, + "componentType": 5123, + "count": 17100, + "type": "SCALAR", + "name": "x0_2_Still_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16784676, + "componentType": 5126, + "count": 538, + "min": [ + -1.4504389762878418, -1.4424870014190674, -1.2827143669128418 + ], + "max": [ + 1.4504318237304688, 1.4424867630004883, 0.000004053110387758352 + ], + "type": "VEC3", + "name": "x0_2_blurred_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16784688, + "componentType": 5120, + "count": 538, + "type": "VEC4", + "name": "x0_2_blurred_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16784692, + "componentType": 5120, + "count": 538, + "type": "VEC4", + "name": "x0_2_blurred_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16784696, + "componentType": 5122, + "count": 538, + "type": "VEC2", + "name": "x0_2_blurred_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16784700, + "componentType": 5122, + "count": 538, + "type": "VEC2", + "name": "x0_2_blurred_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16784704, + "componentType": 5123, + "count": 538, + "type": "VEC4", + "name": "x0_2_blurred_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2222298, + "componentType": 5123, + "count": 2700, + "type": "SCALAR", + "name": "x0_2_blurred_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 16804044, + "componentType": 5126, + "count": 478, + "min": [ + -1.4504358768463135, -1.44248628616333, -1.2827143669128418 + ], + "max": [ + 1.4504315853118896, 1.4424867630004883, 0.000004053110842505703 + ], + "type": "VEC3", + "name": "x0_2_slow_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16804056, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_2_slow_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16804060, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_2_slow_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16804064, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_2_slow_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16804068, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_2_slow_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16804072, + "componentType": 5123, + "count": 478, + "type": "VEC4", + "name": "x0_2_slow_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2227698, + "componentType": 5123, + "count": 2520, + "type": "SCALAR", + "name": "x0_2_slow_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 16821252, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_RIGHT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16821264, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16821268, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16821272, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16821276, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16821280, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2232738, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_RIGHT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16821396, + "componentType": 5126, + "count": 6446, + "min": [ + -11.850570678710938, -3.588144302368164, -6.928446292877197 + ], + "max": [ + -7.761514663696289, 0.6290009021759033, 4.6223344802856445 + ], + "type": "VEC3", + "name": "FROST_ENGINER_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16821408, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16821412, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16821416, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16821420, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16821424, + "componentType": 5123, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2232750, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINER_indices#1" + }, { + "bufferView": 4, + "byteOffset": 17053452, + "componentType": 5126, + "count": 30, + "min": [ + -2.017392635345459, -0.27122175693511963, -0.4341893196105957 + ], + "max": [ + 2.017390251159668, 0.2712215185165405, 0.434190034866333 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_EngB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17053464, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17053468, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17053472, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x0_Livery_KLM_EngB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17053476, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x0_Livery_KLM_EngB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17053480, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "x0_Livery_KLM_EngB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2256606, + "componentType": 5123, + "count": 96, + "type": "SCALAR", + "name": "x0_Livery_KLM_EngB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17054532, + "componentType": 5126, + "count": 1332, + "min": [ + -3.2449164390563965, -0.6459484100341797, -0.8577696084976196 + ], + "max": [ + 3.059187412261963, 0.059174470603466034, 0.0004389174282550812 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17054544, + "componentType": 5120, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17054548, + "componentType": 5120, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17054552, + "componentType": 5122, + "count": 1332, + "type": "VEC2", + "name": "x0_FlapsKrueger_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17054556, + "componentType": 5122, + "count": 1332, + "type": "VEC2", + "name": "x0_FlapsKrueger_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17054560, + "componentType": 5123, + "count": 1332, + "type": "VEC4", + "name": "x0_FlapsKrueger_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2256798, + "componentType": 5123, + "count": 2868, + "type": "SCALAR", + "name": "x0_FlapsKrueger_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 17102484, + "componentType": 5126, + "count": 92, + "min": [ + -8.716888427734375, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + -3.323636531829834, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17102496, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17102500, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17102504, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17102508, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17102512, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2262534, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17105796, + "componentType": 5126, + "count": 122, + "min": [ + -0.0654066726565361, 0.039178356528282166, -0.06535229831933975 + ], + "max": [ + 0.941293478012085, 0.08554047346115112, 0.0671166479587555 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17105808, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17105812, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17105816, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x0_flap_hydrolics_17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17105820, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x0_flap_hydrolics_17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17105824, + "componentType": 5123, + "count": 122, + "type": "VEC4", + "name": "x0_flap_hydrolics_17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2262858, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17110188, + "componentType": 5126, + "count": 5909, + "min": [ + -4.219038963317871, -0.8868670463562012, -0.5424181222915649 + ], + "max": [ + 3.4634947776794434, 0.10926290601491928, 2.4217185974121094 + ], + "type": "VEC3", + "name": "x0_Flaps_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17110200, + "componentType": 5120, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17110204, + "componentType": 5120, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17110208, + "componentType": 5122, + "count": 5909, + "type": "VEC2", + "name": "x0_Flaps_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17110212, + "componentType": 5122, + "count": 5909, + "type": "VEC2", + "name": "x0_Flaps_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17110216, + "componentType": 5123, + "count": 5909, + "type": "VEC4", + "name": "x0_Flaps_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2263218, + "componentType": 5123, + "count": 12048, + "type": "SCALAR", + "name": "x0_Flaps_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 17322912, + "componentType": 5126, + "count": 1164, + "min": [ + -0.14326146245002747, -0.05539548397064209, -0.07190461456775665 + ], + "max": [ + 0.15022283792495728, 1.013633370399475, 0.09332045912742615 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_16_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17322924, + "componentType": 5120, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17322928, + "componentType": 5120, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17322932, + "componentType": 5122, + "count": 1164, + "type": "VEC2", + "name": "x0_Landing_Gear_16_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17322936, + "componentType": 5122, + "count": 1164, + "type": "VEC2", + "name": "x0_Landing_Gear_16_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17322940, + "componentType": 5123, + "count": 1164, + "type": "VEC4", + "name": "x0_Landing_Gear_16_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2287314, + "componentType": 5123, + "count": 3396, + "type": "SCALAR", + "name": "x0_Landing_Gear_16_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17364816, + "componentType": 5126, + "count": 646, + "min": [ + -0.09660282731056213, -0.44072139263153076, -0.28719794750213623 + ], + "max": [ + 0.23361441493034363, 0.002054621698334813, 0.09659701585769653 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_15_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17364828, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17364832, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17364836, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_15_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17364840, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_15_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17364844, + "componentType": 5123, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_15_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2294106, + "componentType": 5123, + "count": 1800, + "type": "SCALAR", + "name": "x0_Landing_Gear_15_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17388072, + "componentType": 5126, + "count": 605, + "min": [ + -1.3070533275604248, 0.3945200443267822, -0.1526266634464264 + ], + "max": [ + 1.523559331893921, 0.6418092250823975, 0.7518248558044434 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17388084, + "componentType": 5120, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17388088, + "componentType": 5120, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17388092, + "componentType": 5122, + "count": 605, + "type": "VEC2", + "name": "x0_Spoiler_1_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17388096, + "componentType": 5122, + "count": 605, + "type": "VEC2", + "name": "x0_Spoiler_1_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17388100, + "componentType": 5123, + "count": 605, + "type": "VEC4", + "name": "x0_Spoiler_1_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2297706, + "componentType": 5123, + "count": 1782, + "type": "SCALAR", + "name": "x0_Spoiler_1_1_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17409852, + "componentType": 5126, + "count": 611, + "min": [ + -1.263595461845398, -0.06424017250537872, -0.08987658470869064 + ], + "max": [ + 1.2084039449691772, 0.17574748396873474, 0.8176826238632202 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_2_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17409864, + "componentType": 5120, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17409868, + "componentType": 5120, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17409872, + "componentType": 5122, + "count": 611, + "type": "VEC2", + "name": "x0_Spoiler_1_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17409876, + "componentType": 5122, + "count": 611, + "type": "VEC2", + "name": "x0_Spoiler_1_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17409880, + "componentType": 5123, + "count": 611, + "type": "VEC4", + "name": "x0_Spoiler_1_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2301270, + "componentType": 5123, + "count": 1788, + "type": "SCALAR", + "name": "x0_Spoiler_1_2_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17431848, + "componentType": 5126, + "count": 617, + "min": [ + -1.1973021030426025, -0.4789884686470032, -0.030734792351722717 + ], + "max": [ + 1.0107816457748413, -0.2427229881286621, 0.8767213225364685 + ], + "type": "VEC3", + "name": "x0_Spoiler_1_3_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17431860, + "componentType": 5120, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17431864, + "componentType": 5120, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17431868, + "componentType": 5122, + "count": 617, + "type": "VEC2", + "name": "x0_Spoiler_1_3_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17431872, + "componentType": 5122, + "count": 617, + "type": "VEC2", + "name": "x0_Spoiler_1_3_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17431876, + "componentType": 5123, + "count": 617, + "type": "VEC4", + "name": "x0_Spoiler_1_3_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2304846, + "componentType": 5123, + "count": 1782, + "type": "SCALAR", + "name": "x0_Spoiler_1_3_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17454060, + "componentType": 5126, + "count": 192, + "min": [ + -0.019491693004965782, -0.00784351211041212, -0.018650086596608162 + ], + "max": [ + 0.400192528963089, 0.00956814456731081, 0.019271548837423325 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17454072, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17454076, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17454080, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17454084, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17454088, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2308410, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17460972, + "componentType": 5126, + "count": 312, + "min": [ + -0.3483678102493286, -0.004280552268028259, -0.03566432744264603 + ], + "max": [ + 0.03714437037706375, 0.03811117634177208, 0.037663284689188004 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17460984, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17460988, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17460992, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17460996, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17461000, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2308890, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17472204, + "componentType": 5126, + "count": 192, + "min": [ + -0.021507004275918007, -0.006430620793253183, -0.020924195647239685 + ], + "max": [ + 0.3982177972793579, 0.010830853134393692, 0.019930420443415642 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_03_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17472216, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17472220, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17472224, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_03_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17472228, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_03_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17472232, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_03_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2309706, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_03_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17479116, + "componentType": 5126, + "count": 312, + "min": [ + -0.3483842611312866, -0.0042794677428901196, -0.03566480427980423 + ], + "max": [ + 0.03713925555348396, 0.038107600063085556, 0.037666384130716324 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17479128, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17479132, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17479136, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17479140, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17479144, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2310186, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17490348, + "componentType": 5126, + "count": 192, + "min": [ + -0.01876339316368103, -0.009295557625591755, -0.48694342374801636 + ], + "max": [ + 0.0187238659709692, 0.00813813041895628, 0.01874113269150257 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_05_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17490360, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17490364, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17490368, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_05_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17490372, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_05_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17490376, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_05_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2311002, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_05_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17497260, + "componentType": 5126, + "count": 312, + "min": [ + -0.036668501794338226, -0.0024475539103150368, -0.03666091710329056 + ], + "max": [ + 0.03669377416372299, 0.03993859142065048, 0.429401695728302 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_06_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17497272, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17497276, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17497280, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_06_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17497284, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_06_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17497288, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_06_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2311482, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_06_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17508492, + "componentType": 5126, + "count": 148, + "min": [ + -0.06537909060716629, -0.000011900700883415993, -0.06589868664741516 + ], + "max": [ + 0.941413164138794, 0.046807825565338135, 0.06552988290786743 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_18_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17508504, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17508508, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17508512, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_18_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17508516, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_18_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17508520, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_18_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2312298, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_18_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17513820, + "componentType": 5126, + "count": 192, + "min": [ + -0.018745606765151024, -0.000008923259883886203, -0.018724162131547928 + ], + "max": [ + 0.40635234117507935, 0.017315872013568878, 0.01872844435274601 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_09_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17513832, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17513836, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17513840, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_09_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17513844, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_09_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17513848, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_09_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2312658, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_09_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17520732, + "componentType": 5126, + "count": 2306, + "min": [ + -0.8973516225814819, -0.5806439518928528, -0.1343267410993576 + ], + "max": [ + 0.9278517961502075, -0.011290023103356361, 1.521992802619934 + ], + "type": "VEC3", + "name": "x0_Flaps_1_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17520744, + "componentType": 5120, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17520748, + "componentType": 5120, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17520752, + "componentType": 5122, + "count": 2306, + "type": "VEC2", + "name": "x0_Flaps_1_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17520756, + "componentType": 5122, + "count": 2306, + "type": "VEC2", + "name": "x0_Flaps_1_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17520760, + "componentType": 5123, + "count": 2306, + "type": "VEC4", + "name": "x0_Flaps_1_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2313138, + "componentType": 5123, + "count": 5619, + "type": "SCALAR", + "name": "x0_Flaps_1_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 17603748, + "componentType": 5126, + "count": 144, + "min": [ + -0.6628190279006958, -0.046383168548345566, -0.5727856755256653 + ], + "max": [ + 0.7052490711212158, 0.30548399686813354, 0.04462588578462601 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_07_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17603760, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17603764, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17603768, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_07_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17603772, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_07_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17603776, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_07_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2324376, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_07_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17608932, + "componentType": 5126, + "count": 144, + "min": [ + -1.3936281204223633, -0.2509453296661377, -0.059652090072631836 + ], + "max": [ + 0.004619598388671875, 0.06194746494293213, 0.43372607231140137 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_08_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17608944, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17608948, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17608952, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_08_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17608956, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x0_flap_hydrolics_08_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17608960, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x0_flap_hydrolics_08_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2325192, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_08_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17614116, + "componentType": 5126, + "count": 312, + "min": [ + -0.34864184260368347, -0.004251252394169569, -0.036668259650468826 + ], + "max": [ + 0.03668281435966492, 0.03814134746789932, 0.03669166564941406 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_10_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17614128, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17614132, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17614136, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_10_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17614140, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_10_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17614144, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_10_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2326008, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_10_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17625348, + "componentType": 5126, + "count": 148, + "min": [ + -0.06539328396320343, -0.022532273083925247, -0.06579331308603287 + ], + "max": [ + 0.9412535429000854, 0.028408857062458992, 0.06704947352409363 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_19_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17625360, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17625364, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17625368, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_19_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17625372, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x0_flap_hydrolics_19_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17625376, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x0_flap_hydrolics_19_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2326824, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x0_flap_hydrolics_19_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17630676, + "componentType": 5126, + "count": 192, + "min": [ + -0.018741777166724205, -0.000017389891581842676, -0.018722418695688248 + ], + "max": [ + 0.3141435384750366, 0.01725587621331215, 0.018728194758296013 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_11_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17630688, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17630692, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17630696, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_11_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17630700, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_11_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17630704, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_11_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2327184, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_11_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17637588, + "componentType": 5126, + "count": 178, + "min": [ + -0.018740180879831314, -0.000014937856576580089, -0.018722014501690865 + ], + "max": [ + 0.22525689005851746, 0.018041526898741722, 0.018733292818069458 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_13_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17637600, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17637604, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17637608, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x0_flap_hydrolics_13_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17637612, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x0_flap_hydrolics_13_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17637616, + "componentType": 5123, + "count": 178, + "type": "VEC4", + "name": "x0_flap_hydrolics_13_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2327664, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_13_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17643996, + "componentType": 5126, + "count": 192, + "min": [ + -0.018737010657787323, -0.000012261953088454902, -0.018715355545282364 + ], + "max": [ + 0.2479589432477951, 0.01719965972006321, 0.01873670145869255 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_15_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17644008, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17644012, + "componentType": 5120, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17644016, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_15_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17644020, + "componentType": 5122, + "count": 192, + "type": "VEC2", + "name": "x0_flap_hydrolics_15_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17644024, + "componentType": 5123, + "count": 192, + "type": "VEC4", + "name": "x0_flap_hydrolics_15_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2328144, + "componentType": 5123, + "count": 240, + "type": "SCALAR", + "name": "x0_flap_hydrolics_15_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17650908, + "componentType": 5126, + "count": 312, + "min": [ + -0.26190903782844543, -0.004247383680194616, -0.03665846586227417 + ], + "max": [ + 0.036667924374341965, 0.03814234957098961, 0.03670147806406021 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_12_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17650920, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17650924, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17650928, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_12_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17650932, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_12_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17650936, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_12_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2328624, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_12_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17662140, + "componentType": 5126, + "count": 312, + "min": [ + -0.2280098795890808, -0.004242545459419489, -0.036655209958553314 + ], + "max": [ + 0.03667296841740608, 0.03815218061208725, 0.03670569881796837 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_14_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17662152, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17662156, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17662160, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_14_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17662164, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_14_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17662168, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_14_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2329440, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_14_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17673372, + "componentType": 5126, + "count": 312, + "min": [ + -0.19622927904129028, -0.004311735741794109, -0.03665383160114288 + ], + "max": [ + 0.0366707406938076, 0.038078177720308304, 0.03670626878738403 + ], + "type": "VEC3", + "name": "x0_flap_hydrolics_16_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17673384, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17673388, + "componentType": 5120, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17673392, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_16_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17673396, + "componentType": 5122, + "count": 312, + "type": "VEC2", + "name": "x0_flap_hydrolics_16_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17673400, + "componentType": 5123, + "count": 312, + "type": "VEC4", + "name": "x0_flap_hydrolics_16_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2330256, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x0_flap_hydrolics_16_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17684604, + "componentType": 5126, + "count": 120, + "min": [ + -0.028615951538085938, -0.05844759941101074, -0.03970527648925781 + ], + "max": [ + 0.028608322143554688, 0.05844283103942871, -0.008176803588867188 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17684616, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17684620, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17684624, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17684628, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17684632, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2331072, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17688924, + "componentType": 5126, + "count": 784, + "min": [ + -0.068023681640625, -0.024389028549194336, -0.04748344421386719 + ], + "max": [ + 0.06799697875976562, 0.024384260177612305, 0.0599365234375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17688936, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17688940, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17688944, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17688948, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17688952, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2331984, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17717148, + "componentType": 5126, + "count": 588, + "min": [ + -0.058094024658203125, -0.018535852432250977, -0.022484779357910156 + ], + "max": [ + 0.040302276611328125, 0.018535375595092773, 0.05113983154296875 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17717160, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17717164, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17717168, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17717172, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17717176, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2337744, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationGreen_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17738316, + "componentType": 5126, + "count": 191, + "min": [ + -1.113651156425476, -0.007669421844184399, 1.7881393432617188e-7 + ], + "max": [ + 1.1099627017974854, 0.1503312736749649, 0.7317566871643066 + ], + "type": "VEC3", + "name": "x0_Spoiler_2_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17738328, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17738332, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17738336, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x0_Spoiler_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17738340, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x0_Spoiler_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17738344, + "componentType": 5123, + "count": 191, + "type": "VEC4", + "name": "x0_Spoiler_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2342064, + "componentType": 5123, + "count": 702, + "type": "SCALAR", + "name": "x0_Spoiler_2_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17745192, + "componentType": 5126, + "count": 1223, + "min": [ + -0.3011436462402344, -2.0216541290283203, -1.2881041765213013 + ], + "max": [ + 0.14000952243804932, 0.1841242015361786, 1.2881042957305908 + ], + "type": "VEC3", + "name": "x0_Door04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17745204, + "componentType": 5120, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17745208, + "componentType": 5120, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17745212, + "componentType": 5122, + "count": 1223, + "type": "VEC2", + "name": "x0_Door04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17745216, + "componentType": 5122, + "count": 1223, + "type": "VEC2", + "name": "x0_Door04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17745220, + "componentType": 5123, + "count": 1223, + "type": "VEC4", + "name": "x0_Door04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2343468, + "componentType": 5123, + "count": 2550, + "type": "SCALAR", + "name": "x0_Door04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17789220, + "componentType": 5126, + "count": 228, + "min": [ + -0.7854331135749817, -0.00005874037742614746, -0.010230106301605701 + ], + "max": [ + 0.3019554913043976, 0.4864971339702606, 1.888521671295166 + ], + "type": "VEC3", + "name": "x0_R_Door04_Decals_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17789232, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17789236, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17789240, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_R_Door04_Decals_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17789244, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x0_R_Door04_Decals_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17789248, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x0_R_Door04_Decals_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2348568, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x0_R_Door04_Decals_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17797428, + "componentType": 5126, + "count": 826, + "min": [ + -0.5627890229225159, -0.2621106207370758, -0.289119154214859 + ], + "max": [ + 0.0944816917181015, 0.26032400131225586, 0.14123699069023132 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_07_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17797440, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17797444, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17797448, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x0_Landing_Gear_07_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17797452, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x0_Landing_Gear_07_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17797456, + "componentType": 5123, + "count": 826, + "type": "VEC4", + "name": "x0_Landing_Gear_07_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2349252, + "componentType": 5123, + "count": 2364, + "type": "SCALAR", + "name": "x0_Landing_Gear_07_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17827164, + "componentType": 5126, + "count": 849, + "min": [ + -0.5627066493034363, -0.26122209429740906, -0.0852096676826477 + ], + "max": [ + 0.09510819613933563, 0.261221706867218, 0.2976388931274414 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_08_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17827176, + "componentType": 5120, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17827180, + "componentType": 5120, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17827184, + "componentType": 5122, + "count": 849, + "type": "VEC2", + "name": "x0_Landing_Gear_08_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17827188, + "componentType": 5122, + "count": 849, + "type": "VEC2", + "name": "x0_Landing_Gear_08_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17827192, + "componentType": 5123, + "count": 849, + "type": "VEC4", + "name": "x0_Landing_Gear_08_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2353980, + "componentType": 5123, + "count": 2460, + "type": "SCALAR", + "name": "x0_Landing_Gear_08_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17857728, + "componentType": 5126, + "count": 1576, + "min": [ + -0.6188173294067383, -0.1080646961927414, -0.1336996853351593 + ], + "max": [ + 0.04138660430908203, 0.019434455782175064, 0.08656206727027893 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_06_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17857740, + "componentType": 5120, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17857744, + "componentType": 5120, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17857748, + "componentType": 5122, + "count": 1576, + "type": "VEC2", + "name": "x0_Landing_Gear_06_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17857752, + "componentType": 5122, + "count": 1576, + "type": "VEC2", + "name": "x0_Landing_Gear_06_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17857756, + "componentType": 5123, + "count": 1576, + "type": "VEC4", + "name": "x0_Landing_Gear_06_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2358900, + "componentType": 5123, + "count": 3168, + "type": "SCALAR", + "name": "x0_Landing_Gear_06_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17914464, + "componentType": 5126, + "count": 478, + "min": [ + -0.7682446837425232, -0.22793100774288177, -0.10178571939468384 + ], + "max": [ + 0.053063273429870605, 0.22925972938537598, 0.05234414339065552 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_35_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17914476, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17914480, + "componentType": 5120, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17914484, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_Landing_Gear_35_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17914488, + "componentType": 5122, + "count": 478, + "type": "VEC2", + "name": "x0_Landing_Gear_35_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17914492, + "componentType": 5123, + "count": 478, + "type": "VEC4", + "name": "x0_Landing_Gear_35_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2365236, + "componentType": 5123, + "count": 1284, + "type": "SCALAR", + "name": "x0_Landing_Gear_35_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17931672, + "componentType": 5126, + "count": 458, + "min": [ + -0.05200737714767456, -0.22163458168506622, -0.10002298653125763 + ], + "max": [ + 0.7106457948684692, 0.23557348549365997, 0.05251884087920189 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_36_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17931684, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17931688, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17931692, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x0_Landing_Gear_36_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17931696, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x0_Landing_Gear_36_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17931700, + "componentType": 5123, + "count": 458, + "type": "VEC4", + "name": "x0_Landing_Gear_36_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2367804, + "componentType": 5123, + "count": 1212, + "type": "SCALAR", + "name": "x0_Landing_Gear_36_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17948160, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917252063751221, -0.6631564497947693, -0.6619774103164673 + ], + "max": [ + 0.99172043800354, 0.6608477830886841, 0.6620115637779236 + ], + "type": "VEC3", + "name": "x0_RWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17948172, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17948176, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17948180, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_RWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17948184, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_RWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17948188, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2370228, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x0_RWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 18113472, + "componentType": 5126, + "count": 20264, + "min": [ + -1.0000791549682617, -0.6660848259925842, -0.6648812890052795 + ], + "max": [ + 1.0000500679016113, 0.6637783646583557, 0.6649044156074524 + ], + "type": "VEC3", + "name": "x0_RWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 18113484, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 18113488, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 18113492, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_RWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 18113496, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_RWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 18113500, + "componentType": 5123, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2388180, + "componentType": 5123, + "count": 46620, + "type": "SCALAR", + "name": "x0_RWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 18842976, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9918404221534729, -0.6607991456985474, -0.6619898080825806 + ], + "max": [ + 0.9918227791786194, 0.6630999445915222, 0.6619605422019958 + ], + "type": "VEC3", + "name": "x0_RWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 18842988, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 18842992, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 18842996, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_RWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 18843000, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x0_RWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 18843004, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x0_RWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2481420, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x0_RWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 19008288, + "componentType": 5126, + "count": 20264, + "min": [ + -1.0127999782562256, -0.6673529148101807, -0.6637985110282898 + ], + "max": [ + 0.987066388130188, 0.6625683903694153, 0.6659882068634033 + ], + "type": "VEC3", + "name": "x0_RWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 19008300, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 19008304, + "componentType": 5120, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 19008308, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_RWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 19008312, + "componentType": 5122, + "count": 20264, + "type": "VEC2", + "name": "x0_RWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 19008316, + "componentType": 5123, + "count": 20264, + "type": "VEC4", + "name": "x0_RWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2499372, + "componentType": 5123, + "count": 46620, + "type": "SCALAR", + "name": "x0_RWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 19737792, + "componentType": 5126, + "count": 31236, + "min": [ + -0.4227447211742401, -0.4020414650440216, -1.0605237483978271 + ], + "max": [ + 0.4227178990840912, 0.34398770332336426, 1.1232142448425293 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_09_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 19737804, + "componentType": 5120, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 19737808, + "componentType": 5120, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 19737812, + "componentType": 5122, + "count": 31236, + "type": "VEC2", + "name": "x0_Landing_Gear_09_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 19737816, + "componentType": 5122, + "count": 31236, + "type": "VEC2", + "name": "x0_Landing_Gear_09_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 19737820, + "componentType": 5123, + "count": 31236, + "type": "VEC4", + "name": "x0_Landing_Gear_09_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2592612, + "componentType": 5123, + "count": 83586, + "type": "SCALAR", + "name": "x0_Landing_Gear_09_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20862288, + "componentType": 5126, + "count": 1854, + "min": [ + -0.33795031905174255, -0.1579401195049286, -0.2205030918121338 + ], + "max": [ + 0.3379494249820709, 1.755537748336792, 0.42696091532707214 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_10_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20862300, + "componentType": 5120, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20862304, + "componentType": 5120, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20862308, + "componentType": 5122, + "count": 1854, + "type": "VEC2", + "name": "x0_Landing_Gear_10_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20862312, + "componentType": 5122, + "count": 1854, + "type": "VEC2", + "name": "x0_Landing_Gear_10_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20862316, + "componentType": 5123, + "count": 1854, + "type": "VEC4", + "name": "x0_Landing_Gear_10_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2759784, + "componentType": 5123, + "count": 5490, + "type": "SCALAR", + "name": "x0_Landing_Gear_10_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20929032, + "componentType": 5126, + "count": 60, + "min": [ + -0.8753366470336914, -0.05116915702819824, -0.03795814514160156 + ], + "max": [ + 0.048842430114746094, 0.05116826295852661, 0.037952423095703125 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_14_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20929044, + "componentType": 5120, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20929048, + "componentType": 5120, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20929052, + "componentType": 5122, + "count": 60, + "type": "VEC2", + "name": "x0_Landing_Gear_14_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20929056, + "componentType": 5122, + "count": 60, + "type": "VEC2", + "name": "x0_Landing_Gear_14_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20929060, + "componentType": 5123, + "count": 60, + "type": "VEC4", + "name": "x0_Landing_Gear_14_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2770764, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x0_Landing_Gear_14_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20931192, + "componentType": 5126, + "count": 240, + "min": [ + -0.32188355922698975, -0.02601533755660057, -0.1905834674835205 + ], + "max": [ + 0.01845681667327881, 0.028901012614369392, 0.018482990562915802 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_18_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20931204, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20931208, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20931212, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x0_Landing_Gear_18_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20931216, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x0_Landing_Gear_18_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20931220, + "componentType": 5123, + "count": 240, + "type": "VEC4", + "name": "x0_Landing_Gear_18_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2771052, + "componentType": 5123, + "count": 744, + "type": "SCALAR", + "name": "x0_Landing_Gear_18_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20939832, + "componentType": 5126, + "count": 96, + "min": [ + -0.03310777619481087, -0.18166464567184448, -0.6278961896896362 + ], + "max": [ + 0.032361648976802826, -0.010993033647537231, -0.10500246286392212 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_19_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20939844, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20939848, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20939852, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x0_Landing_Gear_19_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20939856, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x0_Landing_Gear_19_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20939860, + "componentType": 5123, + "count": 96, + "type": "VEC4", + "name": "x0_Landing_Gear_19_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2772540, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x0_Landing_Gear_19_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20943288, + "componentType": 5126, + "count": 536, + "min": [ + -0.12803608179092407, -0.030347168445587158, -0.05151781439781189 + ], + "max": [ + 0.1291724145412445, 0.5469766855239868, 0.09618433564901352 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_21_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20943300, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20943304, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20943308, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Landing_Gear_21_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20943312, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Landing_Gear_21_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20943316, + "componentType": 5123, + "count": 536, + "type": "VEC4", + "name": "x0_Landing_Gear_21_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2773116, + "componentType": 5123, + "count": 1404, + "type": "SCALAR", + "name": "x0_Landing_Gear_21_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20962584, + "componentType": 5126, + "count": 303, + "min": [ + -0.03977963328361511, -0.09793320298194885, -0.06428121030330658 + ], + "max": [ + 0.04917668551206589, 0.00000965222716331482, 0.07162171602249146 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_20_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20962596, + "componentType": 5120, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20962600, + "componentType": 5120, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20962604, + "componentType": 5122, + "count": 303, + "type": "VEC2", + "name": "x0_Landing_Gear_20_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20962608, + "componentType": 5122, + "count": 303, + "type": "VEC2", + "name": "x0_Landing_Gear_20_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20962612, + "componentType": 5123, + "count": 303, + "type": "VEC4", + "name": "x0_Landing_Gear_20_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2775924, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x0_Landing_Gear_20_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20973492, + "componentType": 5126, + "count": 282, + "min": [ + -0.03629007562994957, -0.06144164502620697, -0.053074710071086884 + ], + "max": [ + 0.02810722589492798, 0.4666457176208496, 0.06052086502313614 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20973504, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20973508, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20973512, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x0_Landing_Gear_17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20973516, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x0_Landing_Gear_17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20973520, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x0_Landing_Gear_17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2777580, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x0_Landing_Gear_17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 20983644, + "componentType": 5126, + "count": 970, + "min": [ + -0.07568806409835815, -0.056901395320892334, -0.31746500730514526 + ], + "max": [ + 0.7242720723152161, 0.6438239812850952, 0.09001299738883972 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_31_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 20983656, + "componentType": 5120, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 20983660, + "componentType": 5120, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20983664, + "componentType": 5122, + "count": 970, + "type": "VEC2", + "name": "x0_Landing_Gear_31_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 20983668, + "componentType": 5122, + "count": 970, + "type": "VEC2", + "name": "x0_Landing_Gear_31_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 20983672, + "componentType": 5123, + "count": 970, + "type": "VEC4", + "name": "x0_Landing_Gear_31_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2779236, + "componentType": 5123, + "count": 2844, + "type": "SCALAR", + "name": "x0_Landing_Gear_31_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21018564, + "componentType": 5126, + "count": 658, + "min": [ + -0.06946443021297455, -0.2069040685892105, -0.07235594093799591 + ], + "max": [ + 0.19332803785800934, 0.00007702776929363608, 0.1569461077451706 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_33_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21018576, + "componentType": 5120, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21018580, + "componentType": 5120, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21018584, + "componentType": 5122, + "count": 658, + "type": "VEC2", + "name": "x0_Landing_Gear_33_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21018588, + "componentType": 5122, + "count": 658, + "type": "VEC2", + "name": "x0_Landing_Gear_33_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21018592, + "componentType": 5123, + "count": 658, + "type": "VEC4", + "name": "x0_Landing_Gear_33_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2784924, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x0_Landing_Gear_33_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21042252, + "componentType": 5126, + "count": 363, + "min": [ + -0.04688739776611328, -0.583795964717865, -0.06437128782272339 + ], + "max": [ + 0.043160438537597656, 0.03454720228910446, 0.07333236932754517 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_23_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21042264, + "componentType": 5120, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21042268, + "componentType": 5120, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21042272, + "componentType": 5122, + "count": 363, + "type": "VEC2", + "name": "x0_Landing_Gear_23_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21042276, + "componentType": 5122, + "count": 363, + "type": "VEC2", + "name": "x0_Landing_Gear_23_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21042280, + "componentType": 5123, + "count": 363, + "type": "VEC4", + "name": "x0_Landing_Gear_23_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2788788, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x0_Landing_Gear_23_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21055320, + "componentType": 5126, + "count": 266, + "min": [ + -0.08383713662624359, -0.04136320948600769, -0.08959659934043884 + ], + "max": [ + 0.07572659850120544, 0.48792627453804016, 0.061741940677165985 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_28_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21055332, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21055336, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21055340, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x0_Landing_Gear_28_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21055344, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x0_Landing_Gear_28_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21055348, + "componentType": 5123, + "count": 266, + "type": "VEC4", + "name": "x0_Landing_Gear_28_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2790852, + "componentType": 5123, + "count": 780, + "type": "SCALAR", + "name": "x0_Landing_Gear_28_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21064896, + "componentType": 5126, + "count": 614, + "min": [ + -0.146334707736969, -0.2354990839958191, -0.1075105369091034 + ], + "max": [ + 0.14675100147724152, 0.23596954345703125, 0.10759738832712173 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_26_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21064908, + "componentType": 5120, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21064912, + "componentType": 5120, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21064916, + "componentType": 5122, + "count": 614, + "type": "VEC2", + "name": "x0_Landing_Gear_26_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21064920, + "componentType": 5122, + "count": 614, + "type": "VEC2", + "name": "x0_Landing_Gear_26_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21064924, + "componentType": 5123, + "count": 614, + "type": "VEC4", + "name": "x0_Landing_Gear_26_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2792412, + "componentType": 5123, + "count": 1968, + "type": "SCALAR", + "name": "x0_Landing_Gear_26_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21087000, + "componentType": 5126, + "count": 494, + "min": [ + -0.25053825974464417, -0.463747501373291, -0.11836744099855423 + ], + "max": [ + 0.24867171049118042, 0.478720098733902, 0.12202474474906921 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_27_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21087012, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21087016, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21087020, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x0_Landing_Gear_27_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21087024, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x0_Landing_Gear_27_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21087028, + "componentType": 5123, + "count": 494, + "type": "VEC4", + "name": "x0_Landing_Gear_27_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2796348, + "componentType": 5123, + "count": 1428, + "type": "SCALAR", + "name": "x0_Landing_Gear_27_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21104784, + "componentType": 5126, + "count": 702, + "min": [ + -0.12877976894378662, -0.3993404507637024, -0.11348820477724075 + ], + "max": [ + 0.1036844253540039, 0.11603908240795135, 0.36521682143211365 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_29_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21104796, + "componentType": 5120, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21104800, + "componentType": 5120, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21104804, + "componentType": 5122, + "count": 702, + "type": "VEC2", + "name": "x0_Landing_Gear_29_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21104808, + "componentType": 5122, + "count": 702, + "type": "VEC2", + "name": "x0_Landing_Gear_29_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21104812, + "componentType": 5123, + "count": 702, + "type": "VEC4", + "name": "x0_Landing_Gear_29_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2799204, + "componentType": 5123, + "count": 1848, + "type": "SCALAR", + "name": "x0_Landing_Gear_29_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21130056, + "componentType": 5126, + "count": 1356, + "min": [ + -0.05799895524978638, -0.07318378239870071, -0.2362593412399292 + ], + "max": [ + 1.3771679401397705, 0.11779632419347763, 0.15450751781463623 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_30_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21130068, + "componentType": 5120, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21130072, + "componentType": 5120, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21130076, + "componentType": 5122, + "count": 1356, + "type": "VEC2", + "name": "x0_Landing_Gear_30_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21130080, + "componentType": 5122, + "count": 1356, + "type": "VEC2", + "name": "x0_Landing_Gear_30_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21130084, + "componentType": 5123, + "count": 1356, + "type": "VEC4", + "name": "x0_Landing_Gear_30_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2802900, + "componentType": 5123, + "count": 3984, + "type": "SCALAR", + "name": "x0_Landing_Gear_30_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21178872, + "componentType": 5126, + "count": 773, + "min": [ + -0.1239895224571228, -0.06739091873168945, -0.1327195018529892 + ], + "max": [ + 0.12650294601917267, 1.0021158456802368, 0.11373689770698547 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_32_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21178884, + "componentType": 5120, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21178888, + "componentType": 5120, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21178892, + "componentType": 5122, + "count": 773, + "type": "VEC2", + "name": "x0_Landing_Gear_32_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21178896, + "componentType": 5122, + "count": 773, + "type": "VEC2", + "name": "x0_Landing_Gear_32_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21178900, + "componentType": 5123, + "count": 773, + "type": "VEC4", + "name": "x0_Landing_Gear_32_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2810868, + "componentType": 5123, + "count": 2244, + "type": "SCALAR", + "name": "x0_Landing_Gear_32_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21206700, + "componentType": 5126, + "count": 646, + "min": [ + -0.07473486661911011, -0.18911081552505493, -0.18061916530132294 + ], + "max": [ + 0.19468536972999573, 0.017697855830192566, 0.07370837032794952 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_34_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21206712, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21206716, + "componentType": 5120, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21206720, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_34_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21206724, + "componentType": 5122, + "count": 646, + "type": "VEC2", + "name": "x0_Landing_Gear_34_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21206728, + "componentType": 5123, + "count": 646, + "type": "VEC4", + "name": "x0_Landing_Gear_34_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2815356, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x0_Landing_Gear_34_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21229956, + "componentType": 5126, + "count": 7644, + "min": [ + -1.4797345399856567, -2.748610734939575, -0.35194987058639526 + ], + "max": [ + 0.008949022740125656, 0.40006938576698303, 0.38229402899742126 + ], + "type": "VEC3", + "name": "x0_Landing_gear_Root_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21229968, + "componentType": 5120, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21229972, + "componentType": 5120, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21229976, + "componentType": 5122, + "count": 7644, + "type": "VEC2", + "name": "x0_Landing_gear_Root_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21229980, + "componentType": 5122, + "count": 7644, + "type": "VEC2", + "name": "x0_Landing_gear_Root_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21229984, + "componentType": 5123, + "count": 7644, + "type": "VEC4", + "name": "x0_Landing_gear_Root_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2819220, + "componentType": 5123, + "count": 22977, + "type": "SCALAR", + "name": "x0_Landing_gear_Root_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21505140, + "componentType": 5126, + "count": 9, + "min": [ + -5.0124664306640625, -1.8535722494125366, -5.497735500335693 + ], + "max": [ + -4.925370693206787, -1.6113606691360474, -5.390603542327881 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21505152, + "componentType": 5120, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21505156, + "componentType": 5120, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21505160, + "componentType": 5122, + "count": 9, + "type": "VEC2", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21505164, + "componentType": 5122, + "count": 9, + "type": "VEC2", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21505168, + "componentType": 5123, + "count": 9, + "type": "VEC4", + "name": "x0_Landing_Gear_RightPart32_Decal_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2865174, + "componentType": 5123, + "count": 24, + "type": "SCALAR", + "name": "x0_Landing_Gear_RightPart32_Decal_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21505464, + "componentType": 5126, + "count": 267, + "min": [ + -0.11765575408935547, -0.1423940658569336, -0.15215301513671875 + ], + "max": [ + 0.12099552154541016, 0.15073537826538086, 0.2017841339111328 + ], + "type": "VEC3", + "name": "x0_wing_landinglight_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21505476, + "componentType": 5120, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21505480, + "componentType": 5120, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21505484, + "componentType": 5122, + "count": 267, + "type": "VEC2", + "name": "x0_wing_landinglight_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21505488, + "componentType": 5122, + "count": 267, + "type": "VEC2", + "name": "x0_wing_landinglight_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21505492, + "componentType": 5123, + "count": 267, + "type": "VEC4", + "name": "x0_wing_landinglight_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2865222, + "componentType": 5123, + "count": 1038, + "type": "SCALAR", + "name": "x0_wing_landinglight_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 21515076, + "componentType": 5126, + "count": 213, + "min": [ + -0.039637863636016846, -0.039636433124542236, -0.004243016242980957 + ], + "max": [ + 0.2948586940765381, 1.1350085735321045, 0.044423460960388184 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21515088, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21515092, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21515096, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x0_Landing_Gear_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21515100, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x0_Landing_Gear_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21515104, + "componentType": 5123, + "count": 213, + "type": "VEC4", + "name": "x0_Landing_Gear_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2867298, + "componentType": 5123, + "count": 816, + "type": "SCALAR", + "name": "x0_Landing_Gear_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21522744, + "componentType": 5126, + "count": 1494, + "min": [ + -0.8295289278030396, -2.1070191860198975, -1.8943610191345215 + ], + "max": [ + 0.2652151584625244, 0.2706134021282196, 1.631295084953308 + ], + "type": "VEC3", + "name": "x0_Door01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21522756, + "componentType": 5120, + "count": 1494, + "type": "VEC4", + "name": "x0_Door01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21522760, + "componentType": 5120, + "count": 1494, + "type": "VEC4", + "name": "x0_Door01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21522764, + "componentType": 5122, + "count": 1494, + "type": "VEC2", + "name": "x0_Door01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21522768, + "componentType": 5122, + "count": 1494, + "type": "VEC2", + "name": "x0_Door01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21522772, + "componentType": 5123, + "count": 1494, + "type": "VEC4", + "name": "x0_Door01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2868930, + "componentType": 5123, + "count": 3858, + "type": "SCALAR", + "name": "x0_Door01_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 21576528, + "componentType": 5126, + "count": 982, + "min": [ + -2.429973840713501, -0.9371840953826904, -37.019248962402344 + ], + "max": [ + 2.389094829559326, 3.7907795906066895, 16.294506072998047 + ], + "type": "VEC3", + "name": "x0_lightpods_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21576540, + "componentType": 5120, + "count": 982, + "type": "VEC4", + "name": "x0_lightpods_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21576544, + "componentType": 5120, + "count": 982, + "type": "VEC4", + "name": "x0_lightpods_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21576548, + "componentType": 5122, + "count": 982, + "type": "VEC2", + "name": "x0_lightpods_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21576552, + "componentType": 5122, + "count": 982, + "type": "VEC2", + "name": "x0_lightpods_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21576556, + "componentType": 5123, + "count": 982, + "type": "VEC4", + "name": "x0_lightpods_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2876646, + "componentType": 5123, + "count": 3312, + "type": "SCALAR", + "name": "x0_lightpods_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21611880, + "componentType": 5126, + "count": 2558, + "min": [ + -0.7900745868682861, -0.29769182205200195, -0.32811641693115234 + ], + "max": [ + 0.7900731563568115, 1.7062606811523438, 3.064472198486328 + ], + "type": "VEC3", + "name": "x0_Undercarriage_Front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21611892, + "componentType": 5120, + "count": 2558, + "type": "VEC4", + "name": "x0_Undercarriage_Front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21611896, + "componentType": 5120, + "count": 2558, + "type": "VEC4", + "name": "x0_Undercarriage_Front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21611900, + "componentType": 5122, + "count": 2558, + "type": "VEC2", + "name": "x0_Undercarriage_Front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21611904, + "componentType": 5122, + "count": 2558, + "type": "VEC2", + "name": "x0_Undercarriage_Front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21611908, + "componentType": 5123, + "count": 2558, + "type": "VEC4", + "name": "x0_Undercarriage_Front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2883270, + "componentType": 5123, + "count": 4500, + "type": "SCALAR", + "name": "x0_Undercarriage_Front_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21703968, + "componentType": 5126, + "count": 332, + "min": [ + -2.7366511821746826, -0.9358702898025513, -25.782756805419922 + ], + "max": [ + 2.736649990081787, 3.865880012512207, 15.431998252868652 + ], + "type": "VEC3", + "name": "x0_Glass_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21703980, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x0_Glass_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21703984, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x0_Glass_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21703988, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x0_Glass_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21703992, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x0_Glass_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21703996, + "componentType": 5123, + "count": 332, + "type": "VEC4", + "name": "x0_Glass_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2892270, + "componentType": 5123, + "count": 1488, + "type": "SCALAR", + "name": "x0_Glass_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 21715920, + "componentType": 5126, + "count": 18537, + "min": [ + 0.958207368850708, -591.7980346679688, -320.2314147949219 + ], + "max": [ + 266.00750732421875, 570.6298217773438, 384.0440673828125 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 21715932, + "componentType": 5120, + "count": 18537, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 21715936, + "componentType": 5120, + "count": 18537, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 21715940, + "componentType": 5122, + "count": 18537, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 21715944, + "componentType": 5122, + "count": 18537, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 21715948, + "componentType": 5123, + "count": 18537, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2895246, + "componentType": 5123, + "count": 57705, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_2_indices#2" + }, { + "bufferView": 4, + "byteOffset": 22383252, + "componentType": 5126, + "count": 1669, + "min": [ + -0.2510817050933838, -1.0020675659179688, -0.5850601196289062 + ], + "max": [ + 0.2920658588409424, 0.9952486753463745, 0.5905284881591797 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 22383264, + "componentType": 5120, + "count": 1669, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 22383268, + "componentType": 5120, + "count": 1669, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 22383272, + "componentType": 5122, + "count": 1669, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 22383276, + "componentType": 5122, + "count": 1669, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 22383280, + "componentType": 5123, + "count": 1669, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3010656, + "componentType": 5123, + "count": 3660, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_2_OUTSIDE_indices#6" + }, { + "bufferView": 4, + "byteOffset": 22443336, + "componentType": 5126, + "count": 4, + "min": [ + -0.06730365753173828, -0.25341153144836426, -0.12473678588867188 + ], + "max": [ + 0.06730318069458008, 0.25341153144836426, 0.12474441528320312 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 22443348, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 22443352, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 22443356, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 22443360, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 22443364, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3017976, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_2_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 22443480, + "componentType": 5126, + "count": 577, + "min": [ + -0.2698795795440674, -0.9995212554931641, -0.5886745452880859 + ], + "max": [ + 0.2698793411254883, 0.9995219707489014, 0.5886745452880859 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 22443492, + "componentType": 5120, + "count": 577, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 22443496, + "componentType": 5120, + "count": 577, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 22443500, + "componentType": 5122, + "count": 577, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 22443504, + "componentType": 5122, + "count": 577, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 22443508, + "componentType": 5123, + "count": 577, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3017988, + "componentType": 5123, + "count": 1338, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 22464252, + "componentType": 5126, + "count": 1969, + "min": [ + -17.64849853515625, -108.09103393554688, -112.126708984375 + ], + "max": [ + 220.56134033203125, 108.09104919433594, 97.27890014648438 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 22464264, + "componentType": 5120, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 22464268, + "componentType": 5120, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 22464272, + "componentType": 5122, + "count": 1969, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 22464276, + "componentType": 5122, + "count": 1969, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 22464280, + "componentType": 5123, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_2_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3020664, + "componentType": 5123, + "count": 5457, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_2_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 22535136, + "componentType": 5126, + "count": 18402, + "min": [ + -1.9094319343566895, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.222184658050537, 2.793513059616089, 4.094302654266357 + ], + "type": "VEC3", + "name": "x0_INTERIOR2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 22535148, + "componentType": 5120, + "count": 18402, + "type": "VEC4", + "name": "x0_INTERIOR2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 22535152, + "componentType": 5120, + "count": 18402, + "type": "VEC4", + "name": "x0_INTERIOR2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 22535156, + "componentType": 5122, + "count": 18402, + "type": "VEC2", + "name": "x0_INTERIOR2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 22535160, + "componentType": 5122, + "count": 18402, + "type": "VEC2", + "name": "x0_INTERIOR2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 22535164, + "componentType": 5123, + "count": 18402, + "type": "VEC4", + "name": "x0_INTERIOR2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3031578, + "componentType": 5123, + "count": 59097, + "type": "SCALAR", + "name": "x0_INTERIOR2_indices#1" + }, { + "bufferView": 4, + "byteOffset": 23197608, + "componentType": 5126, + "count": 9112, + "min": [ + -1.2968758344650269, -0.14246384799480438, -1.0544530153274536 + ], + "max": [ + -0.020523952320218086, 0.9782504439353943, 1.0916439294815063 + ], + "type": "VEC3", + "name": "x0_CARGO_DOOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23197620, + "componentType": 5120, + "count": 9112, + "type": "VEC4", + "name": "x0_CARGO_DOOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23197624, + "componentType": 5120, + "count": 9112, + "type": "VEC4", + "name": "x0_CARGO_DOOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23197628, + "componentType": 5122, + "count": 9112, + "type": "VEC2", + "name": "x0_CARGO_DOOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23197632, + "componentType": 5122, + "count": 9112, + "type": "VEC2", + "name": "x0_CARGO_DOOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23197636, + "componentType": 5123, + "count": 9112, + "type": "VEC4", + "name": "x0_CARGO_DOOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3149772, + "componentType": 5123, + "count": 30045, + "type": "SCALAR", + "name": "x0_CARGO_DOOR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 23525640, + "componentType": 5126, + "count": 1626, + "min": [ + -2.804260730743408, -1.6293405294418335, 16.014720916748047 + ], + "max": [ + -1.7330682277679443, 0.1519838571548462, 18.866497039794922 + ], + "type": "VEC3", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23525652, + "componentType": 5120, + "count": 1626, + "type": "VEC4", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23525656, + "componentType": 5120, + "count": 1626, + "type": "VEC4", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23525660, + "componentType": 5122, + "count": 1626, + "type": "VEC2", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23525664, + "componentType": 5122, + "count": 1626, + "type": "VEC2", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23525668, + "componentType": 5123, + "count": 1626, + "type": "VEC4", + "name": "x0_CARGO_DOOR_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3209862, + "componentType": 5123, + "count": 2910, + "type": "SCALAR", + "name": "x0_CARGO_DOOR_OUTSIDE_indices#2" + }, { + "bufferView": 4, + "byteOffset": 23584176, + "componentType": 5126, + "count": 64, + "min": [ + -0.5202528834342957, -0.025008123368024826, -0.6614816188812256 + ], + "max": [ + -0.10703863948583603, 0.025007400661706924, 0.025006094947457314 + ], + "type": "VEC3", + "name": "x0_CARGO_PISTON_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23584188, + "componentType": 5120, + "count": 64, + "type": "VEC4", + "name": "x0_CARGO_PISTON_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23584192, + "componentType": 5120, + "count": 64, + "type": "VEC4", + "name": "x0_CARGO_PISTON_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23584196, + "componentType": 5122, + "count": 64, + "type": "VEC2", + "name": "x0_CARGO_PISTON_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23584200, + "componentType": 5122, + "count": 64, + "type": "VEC2", + "name": "x0_CARGO_PISTON_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23584204, + "componentType": 5123, + "count": 64, + "type": "VEC4", + "name": "x0_CARGO_PISTON_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3215682, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x0_CARGO_PISTON_2_indices#0" + }, { + "bufferView": 4, + "byteOffset": 23586480, + "componentType": 5126, + "count": 310, + "min": [ + -0.07548236846923828, -0.1168600395321846, -1.3225784301757812 + ], + "max": [ + 0.044019125401973724, 0.2233220338821411, 1.4074249267578125 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_Cargo_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23586492, + "componentType": 5120, + "count": 310, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23586496, + "componentType": 5120, + "count": 310, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23586500, + "componentType": 5122, + "count": 310, + "type": "VEC2", + "name": "x0_Livery_KLM_Cargo_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23586504, + "componentType": 5122, + "count": 310, + "type": "VEC2", + "name": "x0_Livery_KLM_Cargo_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23586508, + "componentType": 5123, + "count": 310, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3215970, + "componentType": 5123, + "count": 747, + "type": "SCALAR", + "name": "x0_Livery_KLM_Cargo_indices#0" + }, { + "bufferView": 4, + "byteOffset": 23597640, + "componentType": 5126, + "count": 360, + "min": [ + -0.5718439817428589, -0.05741176754236221, -0.8378611207008362 + ], + "max": [ + 0.062453269958496094, 0.05741178244352341, 0.19776107370853424 + ], + "type": "VEC3", + "name": "x0_CARGO_PISTON_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23597652, + "componentType": 5120, + "count": 360, + "type": "VEC4", + "name": "x0_CARGO_PISTON_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23597656, + "componentType": 5120, + "count": 360, + "type": "VEC4", + "name": "x0_CARGO_PISTON_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23597660, + "componentType": 5122, + "count": 360, + "type": "VEC2", + "name": "x0_CARGO_PISTON_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23597664, + "componentType": 5122, + "count": 360, + "type": "VEC2", + "name": "x0_CARGO_PISTON_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23597668, + "componentType": 5123, + "count": 360, + "type": "VEC4", + "name": "x0_CARGO_PISTON_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3217464, + "componentType": 5123, + "count": 864, + "type": "SCALAR", + "name": "x0_CARGO_PISTON_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 23610600, + "componentType": 5126, + "count": 17844, + "min": [ + -0.20738744735717773, -0.9027069807052612, -0.47350049018859863 + ], + "max": [ + 0.516179084777832, 0.9267082214355469, 0.6224565505981445 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 23610612, + "componentType": 5120, + "count": 17844, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 23610616, + "componentType": 5120, + "count": 17844, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 23610620, + "componentType": 5122, + "count": 17844, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 23610624, + "componentType": 5122, + "count": 17844, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 23610628, + "componentType": 5123, + "count": 17844, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3219192, + "componentType": 5123, + "count": 55041, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_1_indices#2" + }, { + "bufferView": 4, + "byteOffset": 24252984, + "componentType": 5126, + "count": 4, + "min": [ + -0.08108523488044739, -0.25504860281944275, -0.11194915324449539 + ], + "max": [ + 0.08108523488044739, 0.25504860281944275, 0.11194915324449539 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24252996, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24253000, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24253004, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24253008, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24253012, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3329274, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_1_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 24253128, + "componentType": 5126, + "count": 1498, + "min": [ + -0.42726200819015503, -0.9855458736419678, -0.6262664198875427 + ], + "max": [ + 0.39068740606307983, 0.9744555354118347, 0.6194705367088318 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24253140, + "componentType": 5120, + "count": 1498, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24253144, + "componentType": 5120, + "count": 1498, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24253148, + "componentType": 5122, + "count": 1498, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24253152, + "componentType": 5122, + "count": 1498, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24253156, + "componentType": 5123, + "count": 1498, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3329286, + "componentType": 5123, + "count": 3462, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_1_OUTSIDE_indices#5" + }, { + "bufferView": 4, + "byteOffset": 24307056, + "componentType": 5126, + "count": 754, + "min": [ + -0.3904688358306885, -0.9690312743186951, -0.6160190105438232 + ], + "max": [ + 0.3844413757324219, 0.9696470499038696, 0.6130883693695068 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24307068, + "componentType": 5120, + "count": 754, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24307072, + "componentType": 5120, + "count": 754, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24307076, + "componentType": 5122, + "count": 754, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24307080, + "componentType": 5122, + "count": 754, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24307084, + "componentType": 5123, + "count": 754, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_GASKET_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3336210, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_1_GASKET_indices#0" + }, { + "bufferView": 4, + "byteOffset": 24334200, + "componentType": 5126, + "count": 446, + "min": [ + -0.4070758819580078, -0.9808074235916138, -0.6237788796424866 + ], + "max": [ + 0.40707606077194214, 0.980807363986969, 0.6237789392471313 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24334212, + "componentType": 5120, + "count": 446, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24334216, + "componentType": 5120, + "count": 446, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24334220, + "componentType": 5122, + "count": 446, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24334224, + "componentType": 5122, + "count": 446, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24334228, + "componentType": 5123, + "count": 446, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3341970, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 24350256, + "componentType": 5126, + "count": 1969, + "min": [ + -17.64849853515625, -108.09103393554688, -112.126708984375 + ], + "max": [ + 220.56134033203125, 108.09104919433594, 97.27890014648438 + ], + "type": "VEC3", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24350268, + "componentType": 5120, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24350272, + "componentType": 5120, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24350276, + "componentType": 5122, + "count": 1969, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24350280, + "componentType": 5122, + "count": 1969, + "type": "VEC2", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24350284, + "componentType": 5123, + "count": 1969, + "type": "VEC4", + "name": "x0_PASSENGER_DOOR_1_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3344298, + "componentType": 5123, + "count": 5457, + "type": "SCALAR", + "name": "x0_PASSENGER_DOOR_1_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 24421140, + "componentType": 5126, + "count": 18398, + "min": [ + -2.0217103958129883, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.275524377822876, 2.7935128211975098, 4.094302177429199 + ], + "type": "VEC3", + "name": "x0_INTERIOR1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 24421152, + "componentType": 5120, + "count": 18398, + "type": "VEC4", + "name": "x0_INTERIOR1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 24421156, + "componentType": 5120, + "count": 18398, + "type": "VEC4", + "name": "x0_INTERIOR1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 24421160, + "componentType": 5122, + "count": 18398, + "type": "VEC2", + "name": "x0_INTERIOR1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24421164, + "componentType": 5122, + "count": 18398, + "type": "VEC2", + "name": "x0_INTERIOR1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 24421168, + "componentType": 5123, + "count": 18398, + "type": "VEC4", + "name": "x0_INTERIOR1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3355212, + "componentType": 5123, + "count": 59103, + "type": "SCALAR", + "name": "x0_INTERIOR1_indices#2" + }, { + "bufferView": 4, + "byteOffset": 25083468, + "componentType": 5126, + "count": 244, + "min": [ + -0.052213918417692184, -0.10866785049438477, -0.10006412118673325 + ], + "max": [ + 0.052213896065950394, -0.016576290130615234, 0.059315815567970276 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25083480, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25083484, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25083488, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25083492, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25083496, + "componentType": 5123, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3473418, + "componentType": 5123, + "count": 450, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Top_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25092252, + "componentType": 5126, + "count": 229, + "min": [ + -0.008507311344146729, -0.04374814033508301, -0.027210235595703125 + ], + "max": [ + 0.03227478265762329, 0.04374802112579346, 0.004940032958984375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25092264, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25092268, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25092272, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25092276, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25092280, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3474318, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25100496, + "componentType": 5126, + "count": 229, + "min": [ + -0.02412658929824829, -0.04374802112579346, -0.025226593017578125 + ], + "max": [ + 0.01665550470352173, 0.04374814033508301, 0.006923675537109375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25100508, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25100512, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25100516, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25100520, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25100524, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3475782, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25108740, + "componentType": 5126, + "count": 30, + "min": [ + -0.08172552287578583, 0.017889738082885742, -0.08321332931518555 + ], + "max": [ + 0.08172552287578583, 0.08187198638916016, 0.08321332931518555 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25108752, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25108756, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25108760, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25108764, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25108768, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3477246, + "componentType": 5123, + "count": 84, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Belly_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25109820, + "componentType": 5126, + "count": 680, + "min": [ + -0.07676506042480469, -0.11109365522861481, -0.025456905364990234 + ], + "max": [ + 0.06343841552734375, 0.11109364032745361, 0.07862234115600586 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25109832, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25109836, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25109840, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25109844, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25109848, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3477414, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25134300, + "componentType": 5126, + "count": 680, + "min": [ + -0.06620979309082031, -0.11109365522861481, -0.039273738861083984 + ], + "max": [ + 0.07399368286132812, 0.11109364777803421, 0.06480550765991211 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25134312, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25134316, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25134320, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25134324, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25134328, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3479862, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25158780, + "componentType": 5126, + "count": 536, + "min": [ + -5.37684440612793, -0.25504857301712036, -48.81943130493164 + ], + "max": [ + 0.23528826236724854, 0.4213467836380005, 0.11194980144500732 + ], + "type": "VEC3", + "name": "x0_Porthole_Blocker_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25158792, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Porthole_Blocker_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25158796, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x0_Porthole_Blocker_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25158800, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Porthole_Blocker_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25158804, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x0_Porthole_Blocker_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25158808, + "componentType": 5123, + "count": 536, + "type": "VEC4", + "name": "x0_Porthole_Blocker_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3482310, + "componentType": 5123, + "count": 804, + "type": "SCALAR", + "name": "x0_Porthole_Blocker_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25178076, + "componentType": 5126, + "count": 340, + "min": [ + -0.01639246940612793, -0.06915506720542908, -0.05549764633178711 + ], + "max": [ + 0.05934309959411621, 0.05938568711280823, 0.0732574462890625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25178088, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25178092, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25178096, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25178100, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25178104, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3483918, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25190316, + "componentType": 5126, + "count": 340, + "min": [ + -0.06169295310974121, -0.06915506720542908, -0.05634450912475586 + ], + "max": [ + 0.01404261589050293, 0.059385694563388824, 0.07241058349609375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25190328, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25190332, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25190336, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25190340, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25190344, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3485142, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25202556, + "componentType": 5126, + "count": 135, + "min": [ + -0.4384760856628418, -0.05299597978591919, -3.7419772148132324 + ], + "max": [ + 0.0001952648162841797, 0.052995964884757996, 0.0551910400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25202568, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25202572, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25202576, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25202580, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25202584, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3486366, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25207416, + "componentType": 5126, + "count": 135, + "min": [ + 0.0012729167938232422, -0.05299597978591919, -1.9658722877502441 + ], + "max": [ + 0.29711246490478516, 0.052995964884757996, 0.055190086364746094 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25207428, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25207432, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25207436, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25207440, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25207444, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3487416, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25212276, + "componentType": 5126, + "count": 127, + "min": [ + -0.039669573307037354, -0.06664472818374634, -0.03311920166015625 + ], + "max": [ + 0.039669573307037354, 0.06664466857910156, 0.033115386962890625 + ], + "type": "VEC3", + "name": "x0_tail_strobe_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25212288, + "componentType": 5120, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25212292, + "componentType": 5120, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25212296, + "componentType": 5122, + "count": 127, + "type": "VEC2", + "name": "x0_tail_strobe_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25212300, + "componentType": 5122, + "count": 127, + "type": "VEC2", + "name": "x0_tail_strobe_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25212304, + "componentType": 5123, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3488466, + "componentType": 5123, + "count": 648, + "type": "SCALAR", + "name": "x0_tail_strobe_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25216848, + "componentType": 5126, + "count": 127, + "min": [ + -0.0396694540977478, -0.06664474308490753, -0.033115386962890625 + ], + "max": [ + 0.039669573307037354, 0.06664466857910156, 0.03311920166015625 + ], + "type": "VEC3", + "name": "x0_tail_strobe_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25216860, + "componentType": 5120, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25216864, + "componentType": 5120, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25216868, + "componentType": 5122, + "count": 127, + "type": "VEC2", + "name": "x0_tail_strobe_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25216872, + "componentType": 5122, + "count": 127, + "type": "VEC2", + "name": "x0_tail_strobe_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25216876, + "componentType": 5123, + "count": 127, + "type": "VEC4", + "name": "x0_tail_strobe_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3489762, + "componentType": 5123, + "count": 648, + "type": "SCALAR", + "name": "x0_tail_strobe_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25221420, + "componentType": 5126, + "count": 58, + "min": [ + -0.1116274893283844, -0.025993824005126953, -0.11142396926879883 + ], + "max": [ + 0.1116274893283844, 0.025994300842285156, 0.11142349243164062 + ], + "type": "VEC3", + "name": "x0_body_beacon2_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25221432, + "componentType": 5120, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon2_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25221436, + "componentType": 5120, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon2_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25221440, + "componentType": 5122, + "count": 58, + "type": "VEC2", + "name": "x0_body_beacon2_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25221444, + "componentType": 5122, + "count": 58, + "type": "VEC2", + "name": "x0_body_beacon2_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25221448, + "componentType": 5123, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon2_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3491058, + "componentType": 5123, + "count": 168, + "type": "SCALAR", + "name": "x0_body_beacon2_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25223508, + "componentType": 5126, + "count": 58, + "min": [ + -0.1116274893283844, -0.01979517936706543, -0.11162757873535156 + ], + "max": [ + 0.1116274893283844, 0.019794940948486328, 0.11162757873535156 + ], + "type": "VEC3", + "name": "x0_body_beacon1_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25223520, + "componentType": 5120, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon1_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25223524, + "componentType": 5120, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon1_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25223528, + "componentType": 5122, + "count": 58, + "type": "VEC2", + "name": "x0_body_beacon1_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25223532, + "componentType": 5122, + "count": 58, + "type": "VEC2", + "name": "x0_body_beacon1_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25223536, + "componentType": 5123, + "count": 58, + "type": "VEC4", + "name": "x0_body_beacon1_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3491394, + "componentType": 5123, + "count": 168, + "type": "SCALAR", + "name": "x0_body_beacon1_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 25225596, + "componentType": 5126, + "count": 17758, + "min": [ + -0.7071259617805481, -0.6450793743133545, -5.709773063659668 + ], + "max": [ + 3.2146384716033936, 0.8630454540252686, 1.4669808149337769 + ], + "type": "VEC3", + "name": "x0_CARGO_INTERIOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25225608, + "componentType": 5120, + "count": 17758, + "type": "VEC4", + "name": "x0_CARGO_INTERIOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25225612, + "componentType": 5120, + "count": 17758, + "type": "VEC4", + "name": "x0_CARGO_INTERIOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25225616, + "componentType": 5122, + "count": 17758, + "type": "VEC2", + "name": "x0_CARGO_INTERIOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25225620, + "componentType": 5122, + "count": 17758, + "type": "VEC2", + "name": "x0_CARGO_INTERIOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25225624, + "componentType": 5123, + "count": 17758, + "type": "VEC4", + "name": "x0_CARGO_INTERIOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3491730, + "componentType": 5123, + "count": 51138, + "type": "SCALAR", + "name": "x0_CARGO_INTERIOR_indices#2" + }, { + "bufferView": 4, + "byteOffset": 25864884, + "componentType": 5126, + "count": 6665, + "min": [ + -3.222182273864746, -2.5606632232666016, -37.96046447753906 + ], + "max": [ + 3.222182273864746, 12.329360008239746, 28.496612548828125 + ], + "type": "VEC3", + "name": "FROST_FUSELAGE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 25864896, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 25864900, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 25864904, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 25864908, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 25864912, + "componentType": 5123, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3594006, + "componentType": 5123, + "count": 16674, + "type": "SCALAR", + "name": "FROST_FUSELAGE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 26104824, + "componentType": 5126, + "count": 301, + "min": [ + -0.8850018382072449, -0.580319881439209, -0.16406798362731934 + ], + "max": [ + 0.0514603853225708, 2.2264318466186523, 3.939654588699341 + ], + "type": "VEC3", + "name": "x0_GROUND_GPUPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 26104836, + "componentType": 5120, + "count": 301, + "type": "VEC4", + "name": "x0_GROUND_GPUPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 26104840, + "componentType": 5120, + "count": 301, + "type": "VEC4", + "name": "x0_GROUND_GPUPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 26104844, + "componentType": 5122, + "count": 301, + "type": "VEC2", + "name": "x0_GROUND_GPUPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 26104848, + "componentType": 5122, + "count": 301, + "type": "VEC2", + "name": "x0_GROUND_GPUPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 26104852, + "componentType": 5123, + "count": 301, + "type": "VEC4", + "name": "x0_GROUND_GPUPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3627354, + "componentType": 5123, + "count": 1470, + "type": "SCALAR", + "name": "x0_GROUND_GPUPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 26115660, + "componentType": 5126, + "count": 728, + "min": [ + 10.269387245178223, -3.6610159873962402, -1.9222218990325928 + ], + "max": [ + 16.685590744018555, 1.310456395149231, 0.028977783396840096 + ], + "type": "VEC3", + "name": "x0_GROUND_FuelPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 26115672, + "componentType": 5120, + "count": 728, + "type": "VEC4", + "name": "x0_GROUND_FuelPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 26115676, + "componentType": 5120, + "count": 728, + "type": "VEC4", + "name": "x0_GROUND_FuelPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 26115680, + "componentType": 5122, + "count": 728, + "type": "VEC2", + "name": "x0_GROUND_FuelPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 26115684, + "componentType": 5122, + "count": 728, + "type": "VEC2", + "name": "x0_GROUND_FuelPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 26115688, + "componentType": 5123, + "count": 728, + "type": "VEC4", + "name": "x0_GROUND_FuelPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3630294, + "componentType": 5123, + "count": 3888, + "type": "SCALAR", + "name": "x0_GROUND_FuelPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 26141868, + "componentType": 5126, + "count": 374, + "min": [ + -1.6387029886245728, 1.1238987445831299, 25.029531478881836 + ], + "max": [ + 1.6387029886245728, 1.8481528759002686, 27.02076530456543 + ], + "type": "VEC3", + "name": "x0_WINDSHIELD_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 26141880, + "componentType": 5120, + "count": 374, + "type": "VEC4", + "name": "x0_WINDSHIELD_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 26141884, + "componentType": 5120, + "count": 374, + "type": "VEC4", + "name": "x0_WINDSHIELD_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 26141888, + "componentType": 5122, + "count": 374, + "type": "VEC2", + "name": "x0_WINDSHIELD_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 26141892, + "componentType": 5122, + "count": 374, + "type": "VEC2", + "name": "x0_WINDSHIELD_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 26141896, + "componentType": 5123, + "count": 374, + "type": "VEC4", + "name": "x0_WINDSHIELD_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3638070, + "componentType": 5123, + "count": 1602, + "type": "SCALAR", + "name": "x0_WINDSHIELD_indices#0" + }, { + "bufferView": 4, + "byteOffset": 26155332, + "componentType": 5126, + "count": 14991, + "min": [ + -0.569422721862793, -0.8041644096374512, -1.184173345565796 + ], + "max": [ + 0.5954351425170898, 0.7005305290222168, 1.1570745706558228 + ], + "type": "VEC3", + "name": "x0_HublotIn_001_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 26155344, + "componentType": 5120, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_001_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 26155348, + "componentType": 5120, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_001_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 26155352, + "componentType": 5122, + "count": 14991, + "type": "VEC2", + "name": "x0_HublotIn_001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 26155356, + "componentType": 5122, + "count": 14991, + "type": "VEC2", + "name": "x0_HublotIn_001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 26155360, + "componentType": 5123, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_001_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3641274, + "componentType": 5123, + "count": 66606, + "type": "SCALAR", + "name": "x0_HublotIn_001_indices#0" + }, { + "bufferView": 4, + "byteOffset": 26695008, + "componentType": 5126, + "count": 14991, + "min": [ + -0.569422721862793, -0.8041644096374512, -1.184173345565796 + ], + "max": [ + 0.5954351425170898, 0.7005305290222168, 1.1570745706558228 + ], + "type": "VEC3", + "name": "x0_HublotIn_002_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 26695020, + "componentType": 5120, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_002_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 26695024, + "componentType": 5120, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_002_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 26695028, + "componentType": 5122, + "count": 14991, + "type": "VEC2", + "name": "x0_HublotIn_002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 26695032, + "componentType": 5122, + "count": 14991, + "type": "VEC2", + "name": "x0_HublotIn_002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 26695036, + "componentType": 5123, + "count": 14991, + "type": "VEC4", + "name": "x0_HublotIn_002_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3774486, + "componentType": 5123, + "count": 66606, + "type": "SCALAR", + "name": "x0_HublotIn_002_indices#0" + }, { + "bufferView": 4, + "byteOffset": 27234684, + "componentType": 5126, + "count": 246, + "min": [ + -1.4071192741394043, -0.305389404296875, -1.9790599346160889 + ], + "max": [ + 1.535841941833496, 1.4049293994903564, -0.034359633922576904 + ], + "type": "VEC3", + "name": "x0_DRONE_COLLISION_IN_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 27234696, + "componentType": 5120, + "count": 246, + "type": "VEC4", + "name": "x0_DRONE_COLLISION_IN_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 27234700, + "componentType": 5120, + "count": 246, + "type": "VEC4", + "name": "x0_DRONE_COLLISION_IN_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 27234704, + "componentType": 5122, + "count": 246, + "type": "VEC2", + "name": "x0_DRONE_COLLISION_IN_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 27234708, + "componentType": 5122, + "count": 246, + "type": "VEC2", + "name": "x0_DRONE_COLLISION_IN_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 27234712, + "componentType": 5123, + "count": 246, + "type": "VEC4", + "name": "x0_DRONE_COLLISION_IN_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3907698, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x0_DRONE_COLLISION_IN_indices#0" + }, { + "bufferView": 4, + "byteOffset": 27243540, + "componentType": 5126, + "count": 34761, + "min": [ + -3.014444351196289, -4.271271705627441, -32.947532653808594 + ], + "max": [ + 3.014444351196289, 4.495274543762207, 32.94788360595703 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 27243552, + "componentType": 5120, + "count": 34761, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 27243556, + "componentType": 5120, + "count": 34761, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 27243560, + "componentType": 5122, + "count": 34761, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 27243564, + "componentType": 5122, + "count": 34761, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 27243568, + "componentType": 5123, + "count": 34761, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3908322, + "componentType": 5123, + "count": 107439, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 28494936, + "componentType": 5126, + "count": 40, + "min": [ + -2.660219192504883, -0.20403039455413818, -0.8133487701416016 + ], + "max": [ + 2.660219192504883, 0.20403027534484863, 0.8133468627929688 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_RegNumber_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 28494948, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x0_Livery_KLM_RegNumber_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 28494952, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x0_Livery_KLM_RegNumber_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 28494956, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x0_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 28494960, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x0_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28494964, + "componentType": 5123, + "count": 40, + "type": "VEC4", + "name": "x0_Livery_KLM_RegNumber_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4123200, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x0_Livery_KLM_RegNumber_indices#0" + }, { + "bufferView": 4, + "byteOffset": 28496376, + "componentType": 5126, + "count": 8148, + "min": [ + -2.871951103210449, -3.3233346939086914, -30.95895767211914 + ], + "max": [ + 2.871951103210449, 3.3233344554901123, 30.95895767211914 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 28496388, + "componentType": 5120, + "count": 8148, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 28496392, + "componentType": 5120, + "count": 8148, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 28496396, + "componentType": 5122, + "count": 8148, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 28496400, + "componentType": 5122, + "count": 8148, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28496404, + "componentType": 5123, + "count": 8148, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4123488, + "componentType": 5123, + "count": 26199, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 28789704, + "componentType": 5126, + "count": 204, + "min": [ + -9.484289169311523, 1.957810401916504, -4.361078262329102 + ], + "max": [ + -4.7161970138549805, 2.68174409866333, 28.631546020507812 + ], + "type": "VEC3", + "name": "x0_Glass_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 28789716, + "componentType": 5120, + "count": 204, + "type": "VEC4", + "name": "x0_Glass_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 28789720, + "componentType": 5120, + "count": 204, + "type": "VEC4", + "name": "x0_Glass_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 28789724, + "componentType": 5122, + "count": 204, + "type": "VEC2", + "name": "x0_Glass_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 28789728, + "componentType": 5122, + "count": 204, + "type": "VEC2", + "name": "x0_Glass_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28789732, + "componentType": 5123, + "count": 204, + "type": "VEC4", + "name": "x0_Glass_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4175886, + "componentType": 5123, + "count": 948, + "type": "SCALAR", + "name": "x0_Glass_indices#0" + }, { + "bufferView": 6, + "componentType": 5126, + "count": 2022, + "min": [ + 2.87392520904541, -0.968108057975769, -11.986175537109375 + ], + "max": [ + 21.48562240600586, 2.099170207977295, -6.073424339294434 + ], + "type": "VEC3", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 12, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 16, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 20, + "componentType": 5122, + "count": 2022, + "type": "VEC2", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 24, + "componentType": 5122, + "count": 2022, + "type": "VEC2", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 28, + "componentType": 5123, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 36, + "componentType": 5123, + "count": 2022, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 44, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4177782, + "componentType": 5123, + "count": 4362, + "type": "SCALAR", + "name": "x0_Flaps_Details_Spoiler_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 97056, + "componentType": 5126, + "count": 170, + "min": [ + 5.034975528717041, -3.251466751098633, -5.533665180206299 + ], + "max": [ + 5.153670787811279, -3.010526180267334, -5.116142749786377 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_37_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 97068, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 97072, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 97076, + "componentType": 5122, + "count": 170, + "type": "VEC2", + "name": "x0_Landing_Gear_37_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 97080, + "componentType": 5122, + "count": 170, + "type": "VEC2", + "name": "x0_Landing_Gear_37_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 97084, + "componentType": 5123, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 97092, + "componentType": 5123, + "count": 170, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_37_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 97100, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4186506, + "componentType": 5123, + "count": 720, + "type": "SCALAR", + "name": "x0_Landing_Gear_37_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 105216, + "componentType": 5126, + "count": 3473, + "min": [ + 0.22731135785579681, -2.3796603679656982, -6.911769390106201 + ], + "max": [ + 5.826752662658691, 0.3277699947357178, -3.362936019897461 + ], + "type": "VEC3", + "name": "x0_Undercarriage_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 105228, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 105232, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 105236, + "componentType": 5122, + "count": 3473, + "type": "VEC2", + "name": "x0_Undercarriage_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 105240, + "componentType": 5122, + "count": 3473, + "type": "VEC2", + "name": "x0_Undercarriage_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 105244, + "componentType": 5123, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 105252, + "componentType": 5123, + "count": 3473, + "normalized": true, + "type": "VEC4", + "name": "x0_Undercarriage_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 105260, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4187946, + "componentType": 5123, + "count": 7206, + "type": "SCALAR", + "name": "x0_Undercarriage_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 271920, + "componentType": 5126, + "count": 2846, + "min": [ + 10.138619422912598, 0.5414625406265259, -13.421730041503906 + ], + "max": [ + 26.870494842529297, 2.7930679321289062, -1.501913070678711 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 271932, + "componentType": 5120, + "count": 2846, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 271936, + "componentType": 5120, + "count": 2846, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 271940, + "componentType": 5122, + "count": 2846, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 271944, + "componentType": 5122, + "count": 2846, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 271948, + "componentType": 5123, + "count": 2846, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 271956, + "componentType": 5123, + "count": 2846, + "normalized": true, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 271964, + "componentType": 5120, + "count": 2846, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4202358, + "componentType": 5123, + "count": 8850, + "type": "SCALAR", + "name": "x0_FlapsKrueger_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 408528, + "componentType": 5126, + "count": 1776, + "min": [ + 10.152959823608398, 0.5502997636795044, -13.391173362731934 + ], + "max": [ + 26.85211181640625, 2.7926275730133057, -1.5097832679748535 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 408540, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 408544, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 408548, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 408552, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 408556, + "componentType": 5123, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 408564, + "componentType": 5123, + "count": 1776, + "normalized": true, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 408572, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4220058, + "componentType": 5123, + "count": 2676, + "type": "SCALAR", + "name": "x0_FlapsKrueger_2_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 493776, + "componentType": 5126, + "count": 2330, + "min": [ + 11.163629531860352, -0.12114325165748596, -1.6109838485717773 + ], + "max": [ + 20.709274291992188, 0.14977045357227325, -0.3714095950126648 + ], + "type": "VEC3", + "name": "x0_Spoiler_2_1_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 493788, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 493792, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 493796, + "componentType": 5122, + "count": 2330, + "type": "VEC2", + "name": "x0_Spoiler_2_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 493800, + "componentType": 5122, + "count": 2330, + "type": "VEC2", + "name": "x0_Spoiler_2_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 493804, + "componentType": 5123, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 493812, + "componentType": 5123, + "count": 2330, + "normalized": true, + "type": "VEC4", + "name": "x0_Spoiler_2_1_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 493820, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4225410, + "componentType": 5123, + "count": 6978, + "type": "SCALAR", + "name": "x0_Spoiler_2_1_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 605616, + "componentType": 5126, + "count": 15923, + "min": [ + 7.8015007972717285, -3.5524582862854004, -6.900043487548828 + ], + "max": [ + 11.810571670532227, 0.5890589952468872, 4.584084510803223 + ], + "type": "VEC3", + "name": "x0_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 605628, + "componentType": 5120, + "count": 15923, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 605632, + "componentType": 5120, + "count": 15923, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 605636, + "componentType": 5122, + "count": 15923, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 605640, + "componentType": 5122, + "count": 15923, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 605644, + "componentType": 5123, + "count": 15923, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 605652, + "componentType": 5123, + "count": 15923, + "normalized": true, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 605660, + "componentType": 5120, + "count": 15923, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4239366, + "componentType": 5123, + "count": 49086, + "type": "SCALAR", + "name": "x0_Engine_Body_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1369920, + "componentType": 5126, + "count": 7562, + "min": [ + 7.815248012542725, -3.5203824043273926, -6.827213764190674 + ], + "max": [ + 11.79688835144043, 0.5881130695343018, 4.556437969207764 + ], + "type": "VEC3", + "name": "x0_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1369932, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1369936, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1369940, + "componentType": 5122, + "count": 7562, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1369944, + "componentType": 5122, + "count": 7562, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1369948, + "componentType": 5123, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1369956, + "componentType": 5123, + "count": 7562, + "normalized": true, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1369964, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4337538, + "componentType": 5123, + "count": 12798, + "type": "SCALAR", + "name": "x0_Engine_Body_left_indices#1" + }, { + "bufferView": 7, + "componentType": 5126, + "count": 166, + "min": [ + 7.805745601654053, -3.5147974491119385, 1.3823996782302856 + ], + "max": [ + 11.807347297668457, -0.8350075483322144, 4.25720739364624 + ], + "type": "VEC3", + "name": "x0_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 12, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 16, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 20, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 24, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x0_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 28, + "componentType": 5123, + "count": 166, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 36, + "componentType": 5126, + "count": 166, + "type": "SCALAR", + "name": "x0_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 40, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x0_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4363134, + "componentType": 5123, + "count": 426, + "type": "SCALAR", + "name": "x0_Engine_Body_left_indices#2" + }, { + "bufferView": 6, + "byteOffset": 1732896, + "componentType": 5126, + "count": 570, + "min": [ + -0.14677636325359344, -1.3766775131225586, -0.6696200370788574 + ], + "max": [ + 0.0023902335669845343, -0.6969711780548096, -0.12234295904636383 + ], + "type": "VEC3", + "name": "x0_gear_pipe_1_center_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1732908, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x0_gear_pipe_1_center_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1732912, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x0_gear_pipe_1_center_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1732916, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x0_gear_pipe_1_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1732920, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x0_gear_pipe_1_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1732924, + "componentType": 5123, + "count": 570, + "type": "VEC4", + "name": "x0_gear_pipe_1_center_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1732932, + "componentType": 5123, + "count": 570, + "normalized": true, + "type": "VEC4", + "name": "x0_gear_pipe_1_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1732940, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x0_gear_pipe_1_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4363986, + "componentType": 5123, + "count": 2274, + "type": "SCALAR", + "name": "x0_gear_pipe_1_center_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1760256, + "componentType": 5126, + "count": 15962, + "min": [ + -11.810582160949707, -0.5890594124794006, -4.584090709686279 + ], + "max": [ + -7.801506042480469, 3.5524654388427734, 6.9000420570373535 + ], + "type": "VEC3", + "name": "x0_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1760268, + "componentType": 5120, + "count": 15962, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1760272, + "componentType": 5120, + "count": 15962, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1760276, + "componentType": 5122, + "count": 15962, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1760280, + "componentType": 5122, + "count": 15962, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1760284, + "componentType": 5123, + "count": 15962, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1760292, + "componentType": 5123, + "count": 15962, + "normalized": true, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1760300, + "componentType": 5120, + "count": 15962, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4368534, + "componentType": 5123, + "count": 49086, + "type": "SCALAR", + "name": "x0_Engine_Body_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2526432, + "componentType": 5126, + "count": 7562, + "min": [ + -11.79689884185791, -0.5881134867668152, -4.556443214416504 + ], + "max": [ + -7.815253257751465, 3.5203895568847656, 6.827211856842041 + ], + "type": "VEC3", + "name": "x0_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2526444, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2526448, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2526452, + "componentType": 5122, + "count": 7562, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2526456, + "componentType": 5122, + "count": 7562, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2526460, + "componentType": 5123, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2526468, + "componentType": 5123, + "count": 7562, + "normalized": true, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2526476, + "componentType": 5120, + "count": 7562, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4466706, + "componentType": 5123, + "count": 12798, + "type": "SCALAR", + "name": "x0_Engine_Body_right_indices#1" + }, { + "bufferView": 7, + "byteOffset": 7304, + "componentType": 5126, + "count": 190, + "min": [ + -11.807357788085938, 0.8350095152854919, -4.257214069366455 + ], + "max": [ + -7.805750370025635, 3.5148046016693115, -1.3824046850204468 + ], + "type": "VEC3", + "name": "x0_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 7316, + "componentType": 5120, + "count": 190, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 7320, + "componentType": 5120, + "count": 190, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 7324, + "componentType": 5122, + "count": 190, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 7328, + "componentType": 5122, + "count": 190, + "type": "VEC2", + "name": "x0_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 7332, + "componentType": 5123, + "count": 190, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 7340, + "componentType": 5126, + "count": 190, + "type": "SCALAR", + "name": "x0_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 7344, + "componentType": 5120, + "count": 190, + "type": "VEC4", + "name": "x0_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4492302, + "componentType": 5123, + "count": 462, + "type": "SCALAR", + "name": "x0_Engine_Body_right_indices#2" + }, { + "bufferView": 6, + "byteOffset": 2889408, + "componentType": 5126, + "count": 2330, + "min": [ + -20.709304809570312, -0.14976955950260162, 0.37141627073287964 + ], + "max": [ + -11.163633346557617, 0.1211424246430397, 1.6109888553619385 + ], + "type": "VEC3", + "name": "x0_Spoiler_2_1_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2889420, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2889424, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2889428, + "componentType": 5122, + "count": 2330, + "type": "VEC2", + "name": "x0_Spoiler_2_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2889432, + "componentType": 5122, + "count": 2330, + "type": "VEC2", + "name": "x0_Spoiler_2_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2889436, + "componentType": 5123, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2889444, + "componentType": 5123, + "count": 2330, + "normalized": true, + "type": "VEC4", + "name": "x0_Spoiler_2_1_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2889452, + "componentType": 5120, + "count": 2330, + "type": "VEC4", + "name": "x0_Spoiler_2_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4493226, + "componentType": 5123, + "count": 6978, + "type": "SCALAR", + "name": "x0_Spoiler_2_1_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3001248, + "componentType": 5126, + "count": 1172, + "min": [ + 4.794785976409912, -3.467285633087158, -6.573057651519775 + ], + "max": [ + 5.318994522094727, -1.0668200254440308, -5.270313739776611 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_04_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3001260, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3001264, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3001268, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x0_Landing_Gear_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3001272, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x0_Landing_Gear_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3001276, + "componentType": 5123, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3001284, + "componentType": 5123, + "count": 1172, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_04_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3001292, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4507182, + "componentType": 5123, + "count": 4650, + "type": "SCALAR", + "name": "x0_Landing_Gear_04_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3057504, + "componentType": 5126, + "count": 1767, + "min": [ + 11.763891220092773, 0.5516760349273682, -13.092534065246582 + ], + "max": [ + 21.105602264404297, 2.0552124977111816, -7.454311370849609 + ], + "type": "VEC3", + "name": "x0_Flaps_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3057516, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3057520, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3057524, + "componentType": 5122, + "count": 1767, + "type": "VEC2", + "name": "x0_Flaps_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3057528, + "componentType": 5122, + "count": 1767, + "type": "VEC2", + "name": "x0_Flaps_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3057532, + "componentType": 5123, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3057540, + "componentType": 5123, + "count": 1767, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3057548, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4516482, + "componentType": 5123, + "count": 6060, + "type": "SCALAR", + "name": "x0_Flaps_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3142320, + "componentType": 5126, + "count": 3514, + "min": [ + 11.816688537597656, 0.6918785572052002, -12.878830909729004 + ], + "max": [ + 21.08565902709961, 2.044512987136841, -8.305612564086914 + ], + "type": "VEC3", + "name": "x0_Flaps_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3142332, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3142336, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3142340, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x0_Flaps_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3142344, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x0_Flaps_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3142348, + "componentType": 5123, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3142356, + "componentType": 5123, + "count": 3514, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3142364, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4528602, + "componentType": 5123, + "count": 5598, + "type": "SCALAR", + "name": "x0_Flaps_2_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3310992, + "componentType": 5126, + "count": 690, + "min": [ + 21.35489273071289, 1.89219069480896, -14.594181060791016 + ], + "max": [ + 24.891752243041992, 2.4884190559387207, -11.948700904846191 + ], + "type": "VEC3", + "name": "x0_Aileron_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3311004, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3311008, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3311012, + "componentType": 5122, + "count": 690, + "type": "VEC2", + "name": "x0_Aileron_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3311016, + "componentType": 5122, + "count": 690, + "type": "VEC2", + "name": "x0_Aileron_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3311020, + "componentType": 5123, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3311028, + "componentType": 5123, + "count": 690, + "normalized": true, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3311036, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4539798, + "componentType": 5123, + "count": 2796, + "type": "SCALAR", + "name": "x0_Aileron_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3344112, + "componentType": 5126, + "count": 944, + "min": [ + 21.363433837890625, 1.9380733966827393, -14.525259017944336 + ], + "max": [ + 24.876155853271484, 2.473965883255005, -12.346776962280273 + ], + "type": "VEC3", + "name": "x0_Aileron_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3344124, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3344128, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3344132, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x0_Aileron_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3344136, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x0_Aileron_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3344140, + "componentType": 5123, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3344148, + "componentType": 5123, + "count": 944, + "normalized": true, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3344156, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4545390, + "componentType": 5123, + "count": 1416, + "type": "SCALAR", + "name": "x0_Aileron_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3389424, + "componentType": 5126, + "count": 160, + "min": [ + 4.48226261138916, -2.266998767852783, -5.970966815948486 + ], + "max": [ + 4.807283878326416, -1.6249668598175049, -5.652647972106934 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_22_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3389436, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3389440, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3389444, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x0_Landing_Gear_22_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3389448, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x0_Landing_Gear_22_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3389452, + "componentType": 5123, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3389460, + "componentType": 5123, + "count": 160, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_22_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3389468, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4548222, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x0_Landing_Gear_22_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3397104, + "componentType": 5126, + "count": 578, + "min": [ + 0.30767959356307983, -2.5649991035461426, 23.08695411682129 + ], + "max": [ + 0.6720260977745056, -2.324246883392334, 23.260276794433594 + ], + "type": "VEC3", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3397116, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3397120, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3397124, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3397128, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3397132, + "componentType": 5123, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3397140, + "componentType": 5123, + "count": 578, + "normalized": true, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3397148, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4549086, + "componentType": 5123, + "count": 1236, + "type": "SCALAR", + "name": "x0_Door_Left02_hydraulic01_center_indices#0" + }, { + "bufferView": 7, + "byteOffset": 15664, + "componentType": 5126, + "count": 8, + "min": [ + 0.3106764256954193, -2.356335163116455, 23.08871078491211 + ], + "max": [ + 0.3401099741458893, -2.326511859893799, 23.12142562866211 + ], + "type": "VEC3", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 15676, + "componentType": 5120, + "count": 8, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 15680, + "componentType": 5120, + "count": 8, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 15684, + "componentType": 5122, + "count": 8, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 15688, + "componentType": 5122, + "count": 8, + "type": "VEC2", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 15692, + "componentType": 5123, + "count": 8, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 15700, + "componentType": 5126, + "count": 8, + "type": "SCALAR", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 15704, + "componentType": 5120, + "count": 8, + "type": "VEC4", + "name": "x0_Door_Left02_hydraulic01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4551558, + "componentType": 5123, + "count": 12, + "type": "SCALAR", + "name": "x0_Door_Left02_hydraulic01_center_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3424848, + "componentType": 5126, + "count": 578, + "min": [ + -0.6665945649147034, -2.5641567707061768, 23.087461471557617 + ], + "max": [ + -0.3078363537788391, -2.324204206466675, 23.254432678222656 + ], + "type": "VEC3", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3424860, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3424864, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3424868, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3424872, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3424876, + "componentType": 5123, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3424884, + "componentType": 5123, + "count": 578, + "normalized": true, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3424892, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x0_Door_Right02_hydraulic01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4551582, + "componentType": 5123, + "count": 1236, + "type": "SCALAR", + "name": "x0_Door_Right02_hydraulic01_center_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3452592, + "componentType": 5126, + "count": 1767, + "min": [ + -21.10455322265625, 0.5524868369102478, -13.098443031311035 + ], + "max": [ + -11.763227462768555, 2.0545432567596436, -7.458975791931152 + ], + "type": "VEC3", + "name": "x0_Flaps_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3452604, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3452608, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3452612, + "componentType": 5122, + "count": 1767, + "type": "VEC2", + "name": "x0_Flaps_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3452616, + "componentType": 5122, + "count": 1767, + "type": "VEC2", + "name": "x0_Flaps_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3452620, + "componentType": 5123, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3452628, + "componentType": 5123, + "count": 1767, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3452636, + "componentType": 5120, + "count": 1767, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4554054, + "componentType": 5123, + "count": 6060, + "type": "SCALAR", + "name": "x0_Flaps_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3537408, + "componentType": 5126, + "count": 3514, + "min": [ + -21.084606170654297, 0.6926257014274597, -12.884807586669922 + ], + "max": [ + -11.816023826599121, 2.0438408851623535, -8.310259819030762 + ], + "type": "VEC3", + "name": "x0_Flaps_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3537420, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3537424, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3537428, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x0_Flaps_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3537432, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x0_Flaps_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3537436, + "componentType": 5123, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3537444, + "componentType": 5123, + "count": 3514, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3537452, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x0_Flaps_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4566174, + "componentType": 5123, + "count": 5598, + "type": "SCALAR", + "name": "x0_Flaps_2_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3706080, + "componentType": 5126, + "count": 2441, + "min": [ + -26.870502471923828, -2.793076276779175, 1.5019149780273438 + ], + "max": [ + -10.138618469238281, -0.5414642095565796, 13.421728134155273 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3706092, + "componentType": 5120, + "count": 2441, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3706096, + "componentType": 5120, + "count": 2441, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3706100, + "componentType": 5122, + "count": 2441, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3706104, + "componentType": 5122, + "count": 2441, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3706108, + "componentType": 5123, + "count": 2441, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3706116, + "componentType": 5123, + "count": 2441, + "normalized": true, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3706124, + "componentType": 5120, + "count": 2441, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4577370, + "componentType": 5123, + "count": 7548, + "type": "SCALAR", + "name": "x0_FlapsKrueger_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3823248, + "componentType": 5126, + "count": 1776, + "min": [ + -26.85211944580078, -2.792635679244995, 1.509786605834961 + ], + "max": [ + -10.15295696258545, -0.5503014326095581, 13.391170501708984 + ], + "type": "VEC3", + "name": "x0_FlapsKrueger_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3823260, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3823264, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3823268, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3823272, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x0_FlapsKrueger_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3823276, + "componentType": 5123, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3823284, + "componentType": 5123, + "count": 1776, + "normalized": true, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3823292, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x0_FlapsKrueger_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4592466, + "componentType": 5123, + "count": 2676, + "type": "SCALAR", + "name": "x0_FlapsKrueger_2_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3908496, + "componentType": 5126, + "count": 690, + "min": [ + -24.88969612121582, 1.894046425819397, -14.598111152648926 + ], + "max": [ + -21.35326385498047, 2.489407539367676, -11.954185485839844 + ], + "type": "VEC3", + "name": "x0_Aileron_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3908508, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3908512, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3908516, + "componentType": 5122, + "count": 690, + "type": "VEC2", + "name": "x0_Aileron_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3908520, + "componentType": 5122, + "count": 690, + "type": "VEC2", + "name": "x0_Aileron_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3908524, + "componentType": 5123, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3908532, + "componentType": 5123, + "count": 690, + "normalized": true, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3908540, + "componentType": 5120, + "count": 690, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4597818, + "componentType": 5123, + "count": 2796, + "type": "SCALAR", + "name": "x0_Aileron_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3941616, + "componentType": 5126, + "count": 944, + "min": [ + -24.874099731445312, 1.9399291276931763, -14.529189109802246 + ], + "max": [ + -21.361806869506836, 2.47495436668396, -12.352263450622559 + ], + "type": "VEC3", + "name": "x0_Aileron_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3941628, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3941632, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3941636, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x0_Aileron_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3941640, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x0_Aileron_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3941644, + "componentType": 5123, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3941652, + "componentType": 5123, + "count": 944, + "normalized": true, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3941660, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x0_Aileron_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4603410, + "componentType": 5123, + "count": 1416, + "type": "SCALAR", + "name": "x0_Aileron_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3986928, + "componentType": 5126, + "count": 2022, + "min": [ + -21.485626220703125, -0.9681106805801392, -11.986170768737793 + ], + "max": [ + -2.873924970626831, 2.0991668701171875, -6.073423385620117 + ], + "type": "VEC3", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3986940, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3986944, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3986948, + "componentType": 5122, + "count": 2022, + "type": "VEC2", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3986952, + "componentType": 5122, + "count": 2022, + "type": "VEC2", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3986956, + "componentType": 5123, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3986964, + "componentType": 5123, + "count": 2022, + "normalized": true, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3986972, + "componentType": 5120, + "count": 2022, + "type": "VEC4", + "name": "x0_Flaps_Details_Spoiler_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4606242, + "componentType": 5123, + "count": 4362, + "type": "SCALAR", + "name": "x0_Flaps_Details_Spoiler_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4083984, + "componentType": 5126, + "count": 170, + "min": [ + -5.153625011444092, -3.2595906257629395, -5.534602165222168 + ], + "max": [ + -5.0349273681640625, -3.018649101257324, -5.117079257965088 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_37_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4083996, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4084000, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4084004, + "componentType": 5122, + "count": 170, + "type": "VEC2", + "name": "x0_Landing_Gear_37_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4084008, + "componentType": 5122, + "count": 170, + "type": "VEC2", + "name": "x0_Landing_Gear_37_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4084012, + "componentType": 5123, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4084020, + "componentType": 5123, + "count": 170, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_37_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4084028, + "componentType": 5120, + "count": 170, + "type": "VEC4", + "name": "x0_Landing_Gear_37_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4614966, + "componentType": 5123, + "count": 720, + "type": "SCALAR", + "name": "x0_Landing_Gear_37_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4092144, + "componentType": 5126, + "count": 1172, + "min": [ + -5.31894063949585, -3.4753968715667725, -6.573431491851807 + ], + "max": [ + -4.794709205627441, -1.066820502281189, -5.270313262939453 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_04_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4092156, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4092160, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4092164, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x0_Landing_Gear_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4092168, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x0_Landing_Gear_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4092172, + "componentType": 5123, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4092180, + "componentType": 5123, + "count": 1172, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_04_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4092188, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x0_Landing_Gear_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4616406, + "componentType": 5123, + "count": 4650, + "type": "SCALAR", + "name": "x0_Landing_Gear_04_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4148400, + "componentType": 5126, + "count": 160, + "min": [ + -4.807281017303467, -2.2643120288848877, -5.9709672927856445 + ], + "max": [ + -4.482260704040527, -1.6249717473983765, -5.652645587921143 + ], + "type": "VEC3", + "name": "x0_Landing_Gear_22_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4148412, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4148416, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4148420, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x0_Landing_Gear_22_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4148424, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x0_Landing_Gear_22_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4148428, + "componentType": 5123, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4148436, + "componentType": 5123, + "count": 160, + "normalized": true, + "type": "VEC4", + "name": "x0_Landing_Gear_22_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4148444, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x0_Landing_Gear_22_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4625706, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x0_Landing_Gear_22_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4156080, + "componentType": 5126, + "count": 3473, + "min": [ + -5.826752662658691, -2.3796610832214355, -6.911769390106201 + ], + "max": [ + -0.22731135785579681, 0.3277696967124939, -3.3629350662231445 + ], + "type": "VEC3", + "name": "x0_Undercarriage_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4156092, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4156096, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4156100, + "componentType": 5122, + "count": 3473, + "type": "VEC2", + "name": "x0_Undercarriage_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4156104, + "componentType": 5122, + "count": 3473, + "type": "VEC2", + "name": "x0_Undercarriage_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4156108, + "componentType": 5123, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4156116, + "componentType": 5123, + "count": 3473, + "normalized": true, + "type": "VEC4", + "name": "x0_Undercarriage_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4156124, + "componentType": 5120, + "count": 3473, + "type": "VEC4", + "name": "x0_Undercarriage_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4626570, + "componentType": 5123, + "count": 7206, + "type": "SCALAR", + "name": "x0_Undercarriage_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4322784, + "componentType": 5126, + "count": 6403, + "min": [ + -30.05951499938965, -1.3455458879470825, -18.055572509765625 + ], + "max": [ + -2.83021879196167, 3.451648712158203, 3.613905906677246 + ], + "type": "VEC3", + "name": "FROST_WINGR_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4322796, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4322800, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4322804, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4322808, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4322812, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4322820, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4322828, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4640982, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGR_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4630128, + "componentType": 5126, + "count": 424, + "min": [ + 10.141216278076172, 0.5165859460830688, -13.39698314666748 + ], + "max": [ + 26.875797271728516, 2.8301968574523926, -1.468531608581543 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4630140, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4630144, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4630148, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4630152, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4630156, + "componentType": 5123, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4630164, + "componentType": 5123, + "count": 424, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4630172, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4671462, + "componentType": 5123, + "count": 648, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4650480, + "componentType": 5126, + "count": 432, + "min": [ + -26.875783920288086, -2.830195903778076, 1.4685382843017578 + ], + "max": [ + -10.141209602355957, -0.5165848731994629, 13.396985054016113 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4650492, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4650496, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4650500, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4650504, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4650508, + "componentType": 5123, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4650516, + "componentType": 5123, + "count": 432, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4650524, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4672758, + "componentType": 5123, + "count": 654, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4671216, + "componentType": 5126, + "count": 6403, + "min": [ + 2.8302183151245117, -1.3455458879470825, -18.05556869506836 + ], + "max": [ + 30.059513092041016, 3.451648235321045, 3.6139049530029297 + ], + "type": "VEC3", + "name": "FROST_WINGL_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4671228, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4671232, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4671236, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4671240, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4671244, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4671252, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4671260, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4674066, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGL_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4978560, + "componentType": 5126, + "count": 1433, + "min": [ + -0.21984554827213287, 0.9383600950241089, 26.394916534423828 + ], + "max": [ + 0.2198459655046463, 1.7470002174377441, 27.312519073486328 + ], + "type": "VEC3", + "name": "x0_wiper_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4978572, + "componentType": 5120, + "count": 1433, + "type": "VEC4", + "name": "x0_wiper_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4978576, + "componentType": 5120, + "count": 1433, + "type": "VEC4", + "name": "x0_wiper_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4978580, + "componentType": 5122, + "count": 1433, + "type": "VEC2", + "name": "x0_wiper_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4978584, + "componentType": 5122, + "count": 1433, + "type": "VEC2", + "name": "x0_wiper_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4978588, + "componentType": 5123, + "count": 1433, + "type": "VEC4", + "name": "x0_wiper_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4978596, + "componentType": 5123, + "count": 1433, + "normalized": true, + "type": "VEC4", + "name": "x0_wiper_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4978604, + "componentType": 5120, + "count": 1433, + "type": "VEC4", + "name": "x0_wiper_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4704546, + "componentType": 5123, + "count": 3498, + "type": "SCALAR", + "name": "x0_wiper_indices#0" + }, { + "bufferView": 6, + "byteOffset": 5047344, + "componentType": 5126, + "count": 52, + "min": [ + 19.140180587768555, 1.4055869579315186, -12.029857635498047 + ], + "max": [ + 23.02213478088379, 1.9657741785049438, -8.977128028869629 + ], + "type": "VEC3", + "name": "x0_RegNumber_Wing_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5047356, + "componentType": 5120, + "count": 52, + "type": "VEC4", + "name": "x0_RegNumber_Wing_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5047360, + "componentType": 5120, + "count": 52, + "type": "VEC4", + "name": "x0_RegNumber_Wing_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5047364, + "componentType": 5122, + "count": 52, + "type": "VEC2", + "name": "x0_RegNumber_Wing_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5047368, + "componentType": 5122, + "count": 52, + "type": "VEC2", + "name": "x0_RegNumber_Wing_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5047372, + "componentType": 5123, + "count": 52, + "type": "VEC4", + "name": "x0_RegNumber_Wing_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5047380, + "componentType": 5123, + "count": 52, + "normalized": true, + "type": "VEC4", + "name": "x0_RegNumber_Wing_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5047388, + "componentType": 5120, + "count": 52, + "type": "VEC4", + "name": "x0_RegNumber_Wing_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4711542, + "componentType": 5123, + "count": 228, + "type": "SCALAR", + "name": "x0_RegNumber_Wing_indices#0" + }, { + "bufferView": 7, + "byteOffset": 16016, + "componentType": 5126, + "count": 253, + "min": [ + -30.011737823486328, 2.6370432376861572, -18.07317543029785 + ], + "max": [ + -27.30944061279297, 3.411846399307251, -13.515946388244629 + ], + "type": "VEC3", + "name": "x0_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 16028, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 16032, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 16036, + "componentType": 5122, + "count": 253, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 16040, + "componentType": 5122, + "count": 253, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 16044, + "componentType": 5123, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 16052, + "componentType": 5126, + "count": 253, + "type": "SCALAR", + "name": "x0_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 16056, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4711998, + "componentType": 5123, + "count": 1272, + "type": "SCALAR", + "name": "x0_Wing_body_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 5049840, + "componentType": 5126, + "count": 13705, + "min": [ + -30.12008285522461, -1.3062026500701904, -18.019323348999023 + ], + "max": [ + -2.8388655185699463, 3.411895513534546, 3.5858817100524902 + ], + "type": "VEC3", + "name": "x0_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5049852, + "componentType": 5120, + "count": 13705, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5049856, + "componentType": 5120, + "count": 13705, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5049860, + "componentType": 5122, + "count": 13705, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5049864, + "componentType": 5122, + "count": 13705, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5049868, + "componentType": 5123, + "count": 13705, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5049876, + "componentType": 5123, + "count": 13705, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5049884, + "componentType": 5120, + "count": 13705, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4714542, + "componentType": 5123, + "count": 44337, + "type": "SCALAR", + "name": "x0_Wing_body_right_indices#1" + }, { + "bufferView": 7, + "byteOffset": 27148, + "componentType": 5126, + "count": 172, + "min": [ + -29.99734115600586, 2.641601324081421, -18.013601303100586 + ], + "max": [ + -27.305191040039062, 3.3970770835876465, -13.530319213867188 + ], + "type": "VEC3", + "name": "x0_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 27160, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 27164, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 27168, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 27172, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 27176, + "componentType": 5123, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 27184, + "componentType": 5126, + "count": 172, + "type": "SCALAR", + "name": "x0_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 27188, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4803216, + "componentType": 5123, + "count": 459, + "type": "SCALAR", + "name": "x0_Wing_body_right_indices#2" + }, { + "bufferView": 6, + "byteOffset": 5707680, + "componentType": 5126, + "count": 20558, + "min": [ + -30.02156639099121, -1.0133347511291504, -17.964391708374023 + ], + "max": [ + -3.0067760944366455, 3.4112069606781006, 3.45601224899292 + ], + "type": "VEC3", + "name": "x0_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5707692, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5707696, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5707700, + "componentType": 5122, + "count": 20558, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5707704, + "componentType": 5122, + "count": 20558, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5707708, + "componentType": 5123, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5707716, + "componentType": 5123, + "count": 20558, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5707724, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4804134, + "componentType": 5123, + "count": 41427, + "type": "SCALAR", + "name": "x0_Wing_body_right_indices#3" + }, { + "bufferView": 6, + "byteOffset": 6694464, + "componentType": 5126, + "count": 10, + "min": [ + -9.076506614685059, 0.4768848121166229, -1.5732479095458984 + ], + "max": [ + -5.009024620056152, 0.9196900725364685, 1.085961103439331 + ], + "type": "VEC3", + "name": "x0_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 6694476, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 6694480, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 6694484, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 6694488, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x0_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 6694492, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 6694500, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 6694508, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4886988, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x0_Wing_body_right_indices#4" + }, { + "bufferView": 7, + "byteOffset": 34716, + "componentType": 5126, + "count": 253, + "min": [ + 27.3094425201416, 2.6370413303375244, -18.073171615600586 + ], + "max": [ + 30.01173973083496, 3.41184401512146, -13.515941619873047 + ], + "type": "VEC3", + "name": "x0_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 34728, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 34732, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 34736, + "componentType": 5122, + "count": 253, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 34740, + "componentType": 5122, + "count": 253, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 34744, + "componentType": 5123, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 34752, + "componentType": 5126, + "count": 253, + "type": "SCALAR", + "name": "x0_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 34756, + "componentType": 5120, + "count": 253, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4887024, + "componentType": 5123, + "count": 1272, + "type": "SCALAR", + "name": "x0_Wing_body_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 6694944, + "componentType": 5126, + "count": 13716, + "min": [ + 2.838869094848633, -1.30620276927948, -18.019319534301758 + ], + "max": [ + 30.120084762573242, 3.411893129348755, 3.585880756378174 + ], + "type": "VEC3", + "name": "x0_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 6694956, + "componentType": 5120, + "count": 13716, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 6694960, + "componentType": 5120, + "count": 13716, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 6694964, + "componentType": 5122, + "count": 13716, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 6694968, + "componentType": 5122, + "count": 13716, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 6694972, + "componentType": 5123, + "count": 13716, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 6694980, + "componentType": 5123, + "count": 13716, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 6694988, + "componentType": 5120, + "count": 13716, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4889568, + "componentType": 5123, + "count": 44337, + "type": "SCALAR", + "name": "x0_Wing_body_left_indices#1" + }, { + "bufferView": 7, + "byteOffset": 45848, + "componentType": 5126, + "count": 172, + "min": [ + 27.305192947387695, 2.641599416732788, -18.01359748840332 + ], + "max": [ + 29.997343063354492, 3.3970746994018555, -13.530314445495605 + ], + "type": "VEC3", + "name": "x0_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 45860, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 45864, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 45868, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 45872, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 45876, + "componentType": 5123, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 45884, + "componentType": 5126, + "count": 172, + "type": "SCALAR", + "name": "x0_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 45888, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4978242, + "componentType": 5123, + "count": 459, + "type": "SCALAR", + "name": "x0_Wing_body_left_indices#2" + }, { + "bufferView": 6, + "byteOffset": 7353312, + "componentType": 5126, + "count": 20558, + "min": [ + 3.006779670715332, -1.0133347511291504, -17.964387893676758 + ], + "max": [ + 30.021568298339844, 3.4112045764923096, 3.4560112953186035 + ], + "type": "VEC3", + "name": "x0_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 7353324, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 7353328, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 7353332, + "componentType": 5122, + "count": 20558, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 7353336, + "componentType": 5122, + "count": 20558, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 7353340, + "componentType": 5123, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 7353348, + "componentType": 5123, + "count": 20558, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 7353356, + "componentType": 5120, + "count": 20558, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 4979160, + "componentType": 5123, + "count": 41427, + "type": "SCALAR", + "name": "x0_Wing_body_left_indices#3" + }, { + "bufferView": 6, + "byteOffset": 8340096, + "componentType": 5126, + "count": 10, + "min": [ + 5.009028434753418, 0.4768848419189453, -1.573248028755188 + ], + "max": [ + 9.076508522033691, 0.9196896553039551, 1.0859605073928833 + ], + "type": "VEC3", + "name": "x0_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 8340108, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 8340112, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 8340116, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 8340120, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x0_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 8340124, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 8340132, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 8340140, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x0_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 5062014, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x0_Wing_body_left_indices#4" + }, { + "bufferView": 9, + "byteOffset": 28, + "componentType": 5123, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 16, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "componentType": 5126, + "count": 1084, + "min": [ + -6.898191452026367, -2.385265350341797, -0.27293723821640015 + ], + "max": [ + 4.0452880859375, 0.5350360870361328, 0.27293795347213745 + ], + "type": "VEC3", + "name": "x1_Rudder_center.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 12, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 20, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 24, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "componentType": 5123, + "count": 5460, + "type": "SCALAR", + "name": "x1_Rudder_center.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 39052, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 39040, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 39024, + "componentType": 5126, + "count": 43, + "min": [ + -0.48449012637138367, 0.054303597658872604, -0.7407507300376892 + ], + "max": [ + 0.5785654187202454, 0.16718320548534393, -0.044933248311281204 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 39036, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 39044, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 39048, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 10920, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_Left.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 40600, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 40588, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 40572, + "componentType": 5126, + "count": 43, + "min": [ + -0.5787447690963745, -0.16539137065410614, 0.044925887137651443 + ], + "max": [ + 0.4843108654022217, -0.05251185968518257, 0.7407436966896057 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 40584, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 40592, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 40596, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11100, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_right.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 42148, + "componentType": 5123, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 42136, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 42120, + "componentType": 5126, + "count": 345, + "min": [ + -0.2698783874511719, -0.9995222091674805, -0.5886659622192383 + ], + "max": [ + 0.0020599365234375, 0.5340242385864258, 0.5886745452880859 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 42132, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 42140, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 42144, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11280, + "componentType": 5123, + "count": 906, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorB.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 54568, + "componentType": 5123, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 54556, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 54540, + "componentType": 5126, + "count": 24, + "min": [ + 2.5483758449554443, 1.5735995769500732, 5.896169662475586 + ], + "max": [ + 2.77527117729187, 1.843569040298462, 21.52033805847168 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 54560, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 54564, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13092, + "componentType": 5123, + "count": 63, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageA.005_indices#0" + }, { + "bufferView": 9, + "byteOffset": 55432, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 55420, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 55404, + "componentType": 5126, + "count": 31, + "min": [ + -0.27521419525146484, -0.27002182602882385, -1.6258187294006348 + ], + "max": [ + -0.24078130722045898, 0.6198497414588928, 1.8943886756896973 + ], + "type": "VEC3", + "name": "x0_R_Door01_left.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 55416, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 55424, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 55428, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13220, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_R_Door01_left.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 56548, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 56536, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 56520, + "componentType": 5126, + "count": 31, + "min": [ + 0.24078059196472168, -0.6198493242263794, -1.8943934440612793 + ], + "max": [ + 0.27521395683288574, 0.2700219750404358, 1.625821590423584 + ], + "type": "VEC3", + "name": "x0_Door01_right.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 56532, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 56540, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 56544, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13396, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_Door01_right.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 57664, + "componentType": 5123, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 57652, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 57636, + "componentType": 5126, + "count": 2356, + "min": [ + -0.5303040146827698, 2.561161756515503, -39.11258316040039 + ], + "max": [ + 0.5303040146827698, 12.468074798583984, -25.891597747802734 + ], + "type": "VEC3", + "name": "livery_vstab_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 57648, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 57656, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 57660, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13572, + "componentType": 5123, + "count": 12342, + "type": "SCALAR", + "name": "livery_vstab_indices#0" + }, { + "bufferView": 9, + "byteOffset": 142480, + "componentType": 5123, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 142468, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 142452, + "componentType": 5126, + "count": 35, + "min": [ + 0.38646888732910156, -1.475200891494751, -1.4131393432617188 + ], + "max": [ + 0.8847513198852539, -0.9122163653373718, 1.4013233184814453 + ], + "type": "VEC3", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 142464, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 142472, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 142476, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38256, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "Cargo_Door_LIVERYDECAL_indices#0" + }, { + "bufferView": 9, + "byteOffset": 143740, + "componentType": 5123, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 143728, + "componentType": 5120, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 143712, + "componentType": 5126, + "count": 270, + "min": [ + -2.8634743690490723, -0.27878737449645996, -25.152372360229492 + ], + "max": [ + 2.863468647003174, 2.3880088329315186, -20.129650115966797 + ], + "type": "VEC3", + "name": "Plane.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 143732, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 143736, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38496, + "componentType": 5123, + "count": 918, + "type": "SCALAR", + "name": "Plane.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 153460, + "componentType": 5123, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 153448, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 153432, + "componentType": 5126, + "count": 2765, + "min": [ + -1.2694666385650635, -2.546407699584961, -15.50222110748291 + ], + "max": [ + 1.269464135169983, -1.9093613624572754, 8.595946311950684 + ], + "type": "VEC3", + "name": "Plane.004_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 153444, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 153452, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 153456, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 40332, + "componentType": 5123, + "count": 8436, + "type": "SCALAR", + "name": "Plane.004_indices#0" + }, { + "bufferView": 9, + "byteOffset": 253000, + "componentType": 5123, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 252988, + "componentType": 5120, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 252972, + "componentType": 5126, + "count": 12650, + "min": [ + -2.848564624786377, 1.0104148387908936, -2.4503250122070312 + ], + "max": [ + 2.848580837249756, 2.654226064682007, 19.7845458984375 + ], + "type": "VEC3", + "name": "Plane.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 252992, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 252996, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 57204, + "componentType": 5123, + "count": 39384, + "type": "SCALAR", + "name": "Plane.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 708400, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 708388, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 708372, + "componentType": 5126, + "count": 92, + "min": [ + -2.3540401458740234, 0.9106197357177734, 23.448795318603516 + ], + "max": [ + 2.3526997566223145, 1.9353947639465332, 24.303451538085938 + ], + "type": "VEC3", + "name": "Plane.003_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 708384, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 708392, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 708396, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 135972, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "Plane.003_indices#0" + }, { + "bufferView": 9, + "byteOffset": 711712, + "componentType": 5123, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 711700, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 711684, + "componentType": 5126, + "count": 3715, + "min": [ + -3.255725383758545, -1.545548439025879, -30.79000473022461 + ], + "max": [ + 3.2557260990142822, -0.9825637340545654, 28.268733978271484 + ], + "type": "VEC3", + "name": "Plane.008_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 711696, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 711704, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 711708, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 136644, + "componentType": 5123, + "count": 11496, + "type": "SCALAR", + "name": "Plane.008_indices#0" + }, { + "bufferView": 10, + "componentType": 5126, + "count": 81, + "min": [0.041666666666666664], + "max": [3.375], + "type": "SCALAR" + }, { + "bufferView": 11, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 12, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, { + "bufferView": 13, + "componentType": 5126, + "count": 161, + "min": [0.041666666666666664], + "max": [6.708333333333333], + "type": "SCALAR" + }, { + "bufferView": 14, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 15, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 16, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 17, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 18, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 19, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 20, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 21, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 22, + "componentType": 5126, + "count": 81, + "type": "VEC4" + } + ], + "animations": [ + { + "name": "c_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 210, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 210, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 241, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 241, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 241, + "path": "scale" + } + }, { + "sampler": 5, + "target": { + "node": 243, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 243, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 243, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 12, + "path": "rotation" + } + }, { + "sampler": 9, + "target": { + "node": 236, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 236, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 236, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 8, + "path": "rotation" + } + }, { + "sampler": 13, + "target": { + "node": 254, + "path": "translation" + } + }, { + "sampler": 14, + "target": { + "node": 254, + "path": "rotation" + } + }, { + "sampler": 15, + "target": { + "node": 254, + "path": "scale" + } + }, { + "sampler": 16, + "target": { + "node": 255, + "path": "translation" + } + }, { + "sampler": 17, + "target": { + "node": 255, + "path": "rotation" + } + }, { + "sampler": 18, + "target": { + "node": 255, + "path": "scale" + } + }, { + "sampler": 19, + "target": { + "node": 259, + "path": "translation" + } + }, { + "sampler": 20, + "target": { + "node": 259, + "path": "rotation" + } + }, { + "sampler": 21, + "target": { + "node": 259, + "path": "scale" + } + }, { + "sampler": 22, + "target": { + "node": 256, + "path": "translation" + } + }, { + "sampler": 23, + "target": { + "node": 256, + "path": "rotation" + } + }, { + "sampler": 24, + "target": { + "node": 256, + "path": "scale" + } + }, { + "sampler": 25, + "target": { + "node": 17, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 21, + "path": "rotation" + } + }, { + "sampler": 27, + "target": { + "node": 24, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 24, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 24, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 222, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 222, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 222, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 224, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 224, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 224, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 227, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 227, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 227, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 237, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 237, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 237, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 18, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 18, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 18, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 10, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 10, + "path": "scale" + } + }, { + "sampler": 47, + "target": { + "node": 15, + "path": "translation" + } + }, { + "sampler": 48, + "target": { + "node": 15, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 15, + "path": "scale" + } + }, { + "sampler": 50, + "target": { + "node": 239, + "path": "translation" + } + }, { + "sampler": 51, + "target": { + "node": 239, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 239, + "path": "scale" + } + }, { + "sampler": 53, + "target": { + "node": 247, + "path": "translation" + } + }, { + "sampler": 54, + "target": { + "node": 247, + "path": "rotation" + } + }, { + "sampler": 55, + "target": { + "node": 247, + "path": "scale" + } + }, { + "sampler": 56, + "target": { + "node": 248, + "path": "translation" + } + }, { + "sampler": 57, + "target": { + "node": 248, + "path": "rotation" + } + }, { + "sampler": 58, + "target": { + "node": 248, + "path": "scale" + } + }, { + "sampler": 59, + "target": { + "node": 226, + "path": "translation" + } + }, { + "sampler": 60, + "target": { + "node": 226, + "path": "rotation" + } + }, { + "sampler": 61, + "target": { + "node": 226, + "path": "scale" + } + }, { + "sampler": 62, + "target": { + "node": 231, + "path": "translation" + } + }, { + "sampler": 63, + "target": { + "node": 231, + "path": "rotation" + } + }, { + "sampler": 64, + "target": { + "node": 231, + "path": "scale" + } + }, { + "sampler": 65, + "target": { + "node": 234, + "path": "translation" + } + }, { + "sampler": 66, + "target": { + "node": 234, + "path": "rotation" + } + }, { + "sampler": 67, + "target": { + "node": 234, + "path": "scale" + } + }, { + "sampler": 68, + "target": { + "node": 235, + "path": "translation" + } + }, { + "sampler": 69, + "target": { + "node": 235, + "path": "rotation" + } + }, { + "sampler": 70, + "target": { + "node": 235, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 31, + "output": 32, + "interpolation": "LINEAR" + }, { + "input": 33, + "output": 34, + "interpolation": "LINEAR" + }, { + "input": 35, + "output": 36, + "interpolation": "LINEAR" + }, { + "input": 37, + "output": 38, + "interpolation": "LINEAR" + }, { + "input": 39, + "output": 40, + "interpolation": "LINEAR" + }, { + "input": 41, + "output": 42, + "interpolation": "LINEAR" + }, { + "input": 43, + "output": 44, + "interpolation": "LINEAR" + }, { + "input": 45, + "output": 46, + "interpolation": "LINEAR" + }, { + "input": 47, + "output": 48, + "interpolation": "LINEAR" + }, { + "input": 49, + "output": 50, + "interpolation": "LINEAR" + }, { + "input": 51, + "output": 52, + "interpolation": "LINEAR" + }, { + "input": 53, + "output": 54, + "interpolation": "LINEAR" + }, { + "input": 55, + "output": 56, + "interpolation": "LINEAR" + }, { + "input": 57, + "output": 58, + "interpolation": "LINEAR" + }, { + "input": 59, + "output": 60, + "interpolation": "LINEAR" + }, { + "input": 61, + "output": 62, + "interpolation": "LINEAR" + }, { + "input": 63, + "output": 64, + "interpolation": "LINEAR" + }, { + "input": 65, + "output": 66, + "interpolation": "LINEAR" + }, { + "input": 67, + "output": 68, + "interpolation": "LINEAR" + }, { + "input": 69, + "output": 70, + "interpolation": "LINEAR" + }, { + "input": 71, + "output": 72, + "interpolation": "LINEAR" + }, { + "input": 73, + "output": 74, + "interpolation": "LINEAR" + }, { + "input": 75, + "output": 76, + "interpolation": "LINEAR" + }, { + "input": 77, + "output": 78, + "interpolation": "LINEAR" + }, { + "input": 79, + "output": 80, + "interpolation": "LINEAR" + }, { + "input": 81, + "output": 82, + "interpolation": "LINEAR" + }, { + "input": 83, + "output": 84, + "interpolation": "LINEAR" + }, { + "input": 85, + "output": 86, + "interpolation": "LINEAR" + }, { + "input": 87, + "output": 88, + "interpolation": "LINEAR" + }, { + "input": 89, + "output": 90, + "interpolation": "LINEAR" + }, { + "input": 91, + "output": 92, + "interpolation": "LINEAR" + }, { + "input": 93, + "output": 94, + "interpolation": "LINEAR" + }, { + "input": 95, + "output": 96, + "interpolation": "LINEAR" + }, { + "input": 97, + "output": 98, + "interpolation": "LINEAR" + }, { + "input": 99, + "output": 100, + "interpolation": "LINEAR" + }, { + "input": 101, + "output": 102, + "interpolation": "LINEAR" + }, { + "input": 103, + "output": 104, + "interpolation": "LINEAR" + }, { + "input": 105, + "output": 106, + "interpolation": "LINEAR" + }, { + "input": 107, + "output": 108, + "interpolation": "LINEAR" + }, { + "input": 109, + "output": 110, + "interpolation": "LINEAR" + }, { + "input": 111, + "output": 112, + "interpolation": "LINEAR" + }, { + "input": 113, + "output": 114, + "interpolation": "LINEAR" + }, { + "input": 115, + "output": 116, + "interpolation": "LINEAR" + }, { + "input": 117, + "output": 118, + "interpolation": "LINEAR" + }, { + "input": 119, + "output": 120, + "interpolation": "LINEAR" + }, { + "input": 121, + "output": 122, + "interpolation": "LINEAR" + }, { + "input": 123, + "output": 124, + "interpolation": "LINEAR" + }, { + "input": 125, + "output": 126, + "interpolation": "LINEAR" + }, { + "input": 127, + "output": 128, + "interpolation": "LINEAR" + }, { + "input": 129, + "output": 130, + "interpolation": "LINEAR" + }, { + "input": 131, + "output": 132, + "interpolation": "LINEAR" + }, { + "input": 133, + "output": 134, + "interpolation": "LINEAR" + }, { + "input": 135, + "output": 136, + "interpolation": "LINEAR" + }, { + "input": 137, + "output": 138, + "interpolation": "LINEAR" + }, { + "input": 139, + "output": 140, + "interpolation": "LINEAR" + }, { + "input": 141, + "output": 142, + "interpolation": "LINEAR" + }, { + "input": 143, + "output": 144, + "interpolation": "LINEAR" + }, { + "input": 145, + "output": 146, + "interpolation": "LINEAR" + }, { + "input": 147, + "output": 148, + "interpolation": "LINEAR" + }, { + "input": 149, + "output": 150, + "interpolation": "LINEAR" + }, { + "input": 151, + "output": 152, + "interpolation": "LINEAR" + }, { + "input": 153, + "output": 154, + "interpolation": "LINEAR" + }, { + "input": 155, + "output": 156, + "interpolation": "LINEAR" + }, { + "input": 157, + "output": 158, + "interpolation": "LINEAR" + }, { + "input": 159, + "output": 160, + "interpolation": "LINEAR" + }, { + "input": 161, + "output": 162, + "interpolation": "LINEAR" + }, { + "input": 163, + "output": 164, + "interpolation": "LINEAR" + }, { + "input": 165, + "output": 166, + "interpolation": "LINEAR" + }, { + "input": 167, + "output": 168, + "interpolation": "LINEAR" + }, { + "input": 169, + "output": 170, + "interpolation": "LINEAR" + }, { + "input": 171, + "output": 172, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 228, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 173, + "output": 174, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_wheel", + "channels": [ + { + "sampler": 0, + "target": { + "node": 220, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 220, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 220, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 212, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 212, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 212, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 214, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 214, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 214, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 216, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 216, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 216, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 218, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 218, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 218, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 175, + "output": 176, + "interpolation": "LINEAR" + }, { + "input": 177, + "output": 178, + "interpolation": "LINEAR" + }, { + "input": 179, + "output": 180, + "interpolation": "LINEAR" + }, { + "input": 181, + "output": 182, + "interpolation": "LINEAR" + }, { + "input": 183, + "output": 184, + "interpolation": "LINEAR" + }, { + "input": 185, + "output": 186, + "interpolation": "LINEAR" + }, { + "input": 187, + "output": 188, + "interpolation": "LINEAR" + }, { + "input": 189, + "output": 190, + "interpolation": "LINEAR" + }, { + "input": 191, + "output": 192, + "interpolation": "LINEAR" + }, { + "input": 193, + "output": 194, + "interpolation": "LINEAR" + }, { + "input": 195, + "output": 196, + "interpolation": "LINEAR" + }, { + "input": 197, + "output": 198, + "interpolation": "LINEAR" + }, { + "input": 199, + "output": 200, + "interpolation": "LINEAR" + }, { + "input": 201, + "output": 202, + "interpolation": "LINEAR" + }, { + "input": 203, + "output": 204, + "interpolation": "LINEAR" + } + ] + }, { + "name": "elevator_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 28, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 28, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 28, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 266, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 266, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 266, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 205, + "output": 206, + "interpolation": "LINEAR" + }, { + "input": 207, + "output": 208, + "interpolation": "LINEAR" + }, { + "input": 209, + "output": 210, + "interpolation": "LINEAR" + }, { + "input": 211, + "output": 212, + "interpolation": "LINEAR" + }, { + "input": 213, + "output": 214, + "interpolation": "LINEAR" + }, { + "input": 215, + "output": 216, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 45, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 45, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 45, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 44, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 44, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 44, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 217, + "output": 218, + "interpolation": "LINEAR" + }, { + "input": 219, + "output": 220, + "interpolation": "LINEAR" + }, { + "input": 221, + "output": 222, + "interpolation": "LINEAR" + }, { + "input": 223, + "output": 224, + "interpolation": "LINEAR" + }, { + "input": 225, + "output": 226, + "interpolation": "LINEAR" + }, { + "input": 227, + "output": 228, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 68, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 68, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 49, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 49, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 50, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 69, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 69, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 69, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 87, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 87, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 87, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 88, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 229, + "output": 230, + "interpolation": "LINEAR" + }, { + "input": 231, + "output": 232, + "interpolation": "LINEAR" + }, { + "input": 233, + "output": 234, + "interpolation": "LINEAR" + }, { + "input": 235, + "output": 236, + "interpolation": "LINEAR" + }, { + "input": 237, + "output": 238, + "interpolation": "LINEAR" + }, { + "input": 239, + "output": 240, + "interpolation": "LINEAR" + }, { + "input": 241, + "output": 242, + "interpolation": "LINEAR" + }, { + "input": 243, + "output": 244, + "interpolation": "LINEAR" + }, { + "input": 245, + "output": 246, + "interpolation": "LINEAR" + }, { + "input": 247, + "output": 248, + "interpolation": "LINEAR" + }, { + "input": 249, + "output": 250, + "interpolation": "LINEAR" + }, { + "input": 251, + "output": 252, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 60, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 60, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 60, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 62, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 62, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 62, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 64, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 64, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 64, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 56, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 56, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 56, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 47, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 47, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 47, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 52, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 52, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 52, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 54, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 54, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 54, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 48, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 48, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 48, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 79, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 79, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 79, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 81, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 81, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 81, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 66, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 66, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 66, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 190, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 190, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 190, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 191, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 191, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 191, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 188, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 188, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 188, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 184, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 184, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 184, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 194, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 194, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 194, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 196, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 196, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 196, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 186, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 186, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 186, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 155, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 155, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 155, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 156, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 156, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 156, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 253, + "output": 254, + "interpolation": "LINEAR" + }, { + "input": 255, + "output": 256, + "interpolation": "LINEAR" + }, { + "input": 257, + "output": 258, + "interpolation": "LINEAR" + }, { + "input": 259, + "output": 260, + "interpolation": "LINEAR" + }, { + "input": 261, + "output": 262, + "interpolation": "LINEAR" + }, { + "input": 263, + "output": 264, + "interpolation": "LINEAR" + }, { + "input": 265, + "output": 266, + "interpolation": "LINEAR" + }, { + "input": 267, + "output": 268, + "interpolation": "LINEAR" + }, { + "input": 269, + "output": 270, + "interpolation": "LINEAR" + }, { + "input": 271, + "output": 272, + "interpolation": "LINEAR" + }, { + "input": 273, + "output": 274, + "interpolation": "LINEAR" + }, { + "input": 275, + "output": 276, + "interpolation": "LINEAR" + }, { + "input": 277, + "output": 278, + "interpolation": "LINEAR" + }, { + "input": 279, + "output": 280, + "interpolation": "LINEAR" + }, { + "input": 281, + "output": 282, + "interpolation": "LINEAR" + }, { + "input": 283, + "output": 284, + "interpolation": "LINEAR" + }, { + "input": 285, + "output": 286, + "interpolation": "LINEAR" + }, { + "input": 287, + "output": 288, + "interpolation": "LINEAR" + }, { + "input": 289, + "output": 290, + "interpolation": "LINEAR" + }, { + "input": 291, + "output": 292, + "interpolation": "LINEAR" + }, { + "input": 293, + "output": 294, + "interpolation": "LINEAR" + }, { + "input": 295, + "output": 296, + "interpolation": "LINEAR" + }, { + "input": 297, + "output": 298, + "interpolation": "LINEAR" + }, { + "input": 299, + "output": 300, + "interpolation": "LINEAR" + }, { + "input": 301, + "output": 302, + "interpolation": "LINEAR" + }, { + "input": 303, + "output": 304, + "interpolation": "LINEAR" + }, { + "input": 305, + "output": 306, + "interpolation": "LINEAR" + }, { + "input": 307, + "output": 308, + "interpolation": "LINEAR" + }, { + "input": 309, + "output": 310, + "interpolation": "LINEAR" + }, { + "input": 311, + "output": 312, + "interpolation": "LINEAR" + }, { + "input": 313, + "output": 314, + "interpolation": "LINEAR" + }, { + "input": 315, + "output": 316, + "interpolation": "LINEAR" + }, { + "input": 317, + "output": 318, + "interpolation": "LINEAR" + }, { + "input": 319, + "output": 320, + "interpolation": "LINEAR" + }, { + "input": 321, + "output": 322, + "interpolation": "LINEAR" + }, { + "input": 323, + "output": 324, + "interpolation": "LINEAR" + }, { + "input": 325, + "output": 326, + "interpolation": "LINEAR" + }, { + "input": 327, + "output": 328, + "interpolation": "LINEAR" + }, { + "input": 329, + "output": 330, + "interpolation": "LINEAR" + }, { + "input": 331, + "output": 332, + "interpolation": "LINEAR" + }, { + "input": 333, + "output": 334, + "interpolation": "LINEAR" + }, { + "input": 335, + "output": 336, + "interpolation": "LINEAR" + }, { + "input": 337, + "output": 338, + "interpolation": "LINEAR" + }, { + "input": 339, + "output": 340, + "interpolation": "LINEAR" + }, { + "input": 341, + "output": 342, + "interpolation": "LINEAR" + }, { + "input": 343, + "output": 344, + "interpolation": "LINEAR" + }, { + "input": 345, + "output": 346, + "interpolation": "LINEAR" + }, { + "input": 347, + "output": 348, + "interpolation": "LINEAR" + }, { + "input": 349, + "output": 350, + "interpolation": "LINEAR" + }, { + "input": 351, + "output": 352, + "interpolation": "LINEAR" + }, { + "input": 353, + "output": 354, + "interpolation": "LINEAR" + }, { + "input": 355, + "output": 356, + "interpolation": "LINEAR" + }, { + "input": 357, + "output": 358, + "interpolation": "LINEAR" + }, { + "input": 359, + "output": 360, + "interpolation": "LINEAR" + }, { + "input": 361, + "output": 362, + "interpolation": "LINEAR" + }, { + "input": 363, + "output": 364, + "interpolation": "LINEAR" + }, { + "input": 365, + "output": 366, + "interpolation": "LINEAR" + }, { + "input": 367, + "output": 368, + "interpolation": "LINEAR" + }, { + "input": 369, + "output": 370, + "interpolation": "LINEAR" + }, { + "input": 371, + "output": 372, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 145, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 145, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 145, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 148, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 148, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 148, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 373, + "output": 374, + "interpolation": "LINEAR" + }, { + "input": 375, + "output": 376, + "interpolation": "LINEAR" + }, { + "input": 377, + "output": 378, + "interpolation": "LINEAR" + }, { + "input": 379, + "output": 380, + "interpolation": "LINEAR" + }, { + "input": 381, + "output": 382, + "interpolation": "LINEAR" + }, { + "input": 383, + "output": 384, + "interpolation": "LINEAR" + } + ] + }, { + "name": "rudder_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 5, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 5, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 5, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 385, + "output": 386, + "interpolation": "LINEAR" + }, { + "input": 387, + "output": 388, + "interpolation": "LINEAR" + }, { + "input": 389, + "output": 390, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_1", + "channels": [ + { + "sampler": 0, + "target": { + "node": 177, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 177, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 177, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 391, + "output": 392, + "interpolation": "LINEAR" + }, { + "input": 393, + "output": 394, + "interpolation": "LINEAR" + }, { + "input": 395, + "output": 396, + "interpolation": "LINEAR" + } + ] + }, { + "name": "trimtab_elevator_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 27, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 27, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 27, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 265, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 265, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 265, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 397, + "output": 398, + "interpolation": "LINEAR" + }, { + "input": 399, + "output": 400, + "interpolation": "LINEAR" + }, { + "input": 401, + "output": 402, + "interpolation": "LINEAR" + }, { + "input": 403, + "output": 404, + "interpolation": "LINEAR" + }, { + "input": 405, + "output": 406, + "interpolation": "LINEAR" + }, { + "input": 407, + "output": 408, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 91, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 91, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 91, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 94, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 94, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 94, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 96, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 96, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 96, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 97, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 97, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 97, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 99, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 99, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 99, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 101, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 101, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 101, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 103, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 103, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 103, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 105, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 105, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 105, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 107, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 107, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 107, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 109, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 109, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 109, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 111, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 111, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 111, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 113, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 113, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 113, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 116, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 116, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 116, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 118, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 118, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 118, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 119, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 119, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 119, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 120, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 120, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 120, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 123, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 123, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 123, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 125, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 125, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 125, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 127, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 127, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 127, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 130, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 130, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 130, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 132, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 132, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 132, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 135, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 135, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 135, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 137, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 137, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 137, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 139, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 139, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 139, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 141, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 141, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 141, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 143, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 143, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 143, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 144, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 144, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 144, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 152, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 152, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 152, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 153, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 153, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 153, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 169, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 169, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 169, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 167, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 167, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 167, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 163, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 163, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 163, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 159, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 159, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 159, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 161, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 161, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 161, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 202, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 202, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 202, + "path": "scale" + } + }, { + "sampler": 105, + "target": { + "node": 203, + "path": "translation" + } + }, { + "sampler": 106, + "target": { + "node": 203, + "path": "rotation" + } + }, { + "sampler": 107, + "target": { + "node": 203, + "path": "scale" + } + }, { + "sampler": 108, + "target": { + "node": 200, + "path": "translation" + } + }, { + "sampler": 109, + "target": { + "node": 200, + "path": "rotation" + } + }, { + "sampler": 110, + "target": { + "node": 200, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 409, + "output": 410, + "interpolation": "LINEAR" + }, { + "input": 411, + "output": 412, + "interpolation": "LINEAR" + }, { + "input": 413, + "output": 414, + "interpolation": "LINEAR" + }, { + "input": 415, + "output": 416, + "interpolation": "LINEAR" + }, { + "input": 417, + "output": 418, + "interpolation": "LINEAR" + }, { + "input": 419, + "output": 420, + "interpolation": "LINEAR" + }, { + "input": 421, + "output": 422, + "interpolation": "LINEAR" + }, { + "input": 423, + "output": 424, + "interpolation": "LINEAR" + }, { + "input": 425, + "output": 426, + "interpolation": "LINEAR" + }, { + "input": 427, + "output": 428, + "interpolation": "LINEAR" + }, { + "input": 429, + "output": 430, + "interpolation": "LINEAR" + }, { + "input": 431, + "output": 432, + "interpolation": "LINEAR" + }, { + "input": 433, + "output": 434, + "interpolation": "LINEAR" + }, { + "input": 435, + "output": 436, + "interpolation": "LINEAR" + }, { + "input": 437, + "output": 438, + "interpolation": "LINEAR" + }, { + "input": 439, + "output": 440, + "interpolation": "LINEAR" + }, { + "input": 441, + "output": 442, + "interpolation": "LINEAR" + }, { + "input": 443, + "output": 444, + "interpolation": "LINEAR" + }, { + "input": 445, + "output": 446, + "interpolation": "LINEAR" + }, { + "input": 447, + "output": 448, + "interpolation": "LINEAR" + }, { + "input": 449, + "output": 450, + "interpolation": "LINEAR" + }, { + "input": 451, + "output": 452, + "interpolation": "LINEAR" + }, { + "input": 453, + "output": 454, + "interpolation": "LINEAR" + }, { + "input": 455, + "output": 456, + "interpolation": "LINEAR" + }, { + "input": 457, + "output": 458, + "interpolation": "LINEAR" + }, { + "input": 459, + "output": 460, + "interpolation": "LINEAR" + }, { + "input": 461, + "output": 462, + "interpolation": "LINEAR" + }, { + "input": 463, + "output": 464, + "interpolation": "LINEAR" + }, { + "input": 465, + "output": 466, + "interpolation": "LINEAR" + }, { + "input": 467, + "output": 468, + "interpolation": "LINEAR" + }, { + "input": 469, + "output": 470, + "interpolation": "LINEAR" + }, { + "input": 471, + "output": 472, + "interpolation": "LINEAR" + }, { + "input": 473, + "output": 474, + "interpolation": "LINEAR" + }, { + "input": 475, + "output": 476, + "interpolation": "LINEAR" + }, { + "input": 477, + "output": 478, + "interpolation": "LINEAR" + }, { + "input": 479, + "output": 480, + "interpolation": "LINEAR" + }, { + "input": 481, + "output": 482, + "interpolation": "LINEAR" + }, { + "input": 483, + "output": 484, + "interpolation": "LINEAR" + }, { + "input": 485, + "output": 486, + "interpolation": "LINEAR" + }, { + "input": 487, + "output": 488, + "interpolation": "LINEAR" + }, { + "input": 489, + "output": 490, + "interpolation": "LINEAR" + }, { + "input": 491, + "output": 492, + "interpolation": "LINEAR" + }, { + "input": 493, + "output": 494, + "interpolation": "LINEAR" + }, { + "input": 495, + "output": 496, + "interpolation": "LINEAR" + }, { + "input": 497, + "output": 498, + "interpolation": "LINEAR" + }, { + "input": 499, + "output": 500, + "interpolation": "LINEAR" + }, { + "input": 501, + "output": 502, + "interpolation": "LINEAR" + }, { + "input": 503, + "output": 504, + "interpolation": "LINEAR" + }, { + "input": 505, + "output": 506, + "interpolation": "LINEAR" + }, { + "input": 507, + "output": 508, + "interpolation": "LINEAR" + }, { + "input": 509, + "output": 510, + "interpolation": "LINEAR" + }, { + "input": 511, + "output": 512, + "interpolation": "LINEAR" + }, { + "input": 513, + "output": 514, + "interpolation": "LINEAR" + }, { + "input": 515, + "output": 516, + "interpolation": "LINEAR" + }, { + "input": 517, + "output": 518, + "interpolation": "LINEAR" + }, { + "input": 519, + "output": 520, + "interpolation": "LINEAR" + }, { + "input": 521, + "output": 522, + "interpolation": "LINEAR" + }, { + "input": 523, + "output": 524, + "interpolation": "LINEAR" + }, { + "input": 525, + "output": 526, + "interpolation": "LINEAR" + }, { + "input": 527, + "output": 528, + "interpolation": "LINEAR" + }, { + "input": 529, + "output": 530, + "interpolation": "LINEAR" + }, { + "input": 531, + "output": 532, + "interpolation": "LINEAR" + }, { + "input": 533, + "output": 534, + "interpolation": "LINEAR" + }, { + "input": 535, + "output": 536, + "interpolation": "LINEAR" + }, { + "input": 537, + "output": 538, + "interpolation": "LINEAR" + }, { + "input": 539, + "output": 540, + "interpolation": "LINEAR" + }, { + "input": 541, + "output": 542, + "interpolation": "LINEAR" + }, { + "input": 543, + "output": 544, + "interpolation": "LINEAR" + }, { + "input": 545, + "output": 546, + "interpolation": "LINEAR" + }, { + "input": 547, + "output": 548, + "interpolation": "LINEAR" + }, { + "input": 549, + "output": 550, + "interpolation": "LINEAR" + }, { + "input": 551, + "output": 552, + "interpolation": "LINEAR" + }, { + "input": 553, + "output": 554, + "interpolation": "LINEAR" + }, { + "input": 555, + "output": 556, + "interpolation": "LINEAR" + }, { + "input": 557, + "output": 558, + "interpolation": "LINEAR" + }, { + "input": 559, + "output": 560, + "interpolation": "LINEAR" + }, { + "input": 561, + "output": 562, + "interpolation": "LINEAR" + }, { + "input": 563, + "output": 564, + "interpolation": "LINEAR" + }, { + "input": 565, + "output": 566, + "interpolation": "LINEAR" + }, { + "input": 567, + "output": 568, + "interpolation": "LINEAR" + }, { + "input": 569, + "output": 570, + "interpolation": "LINEAR" + }, { + "input": 571, + "output": 572, + "interpolation": "LINEAR" + }, { + "input": 573, + "output": 574, + "interpolation": "LINEAR" + }, { + "input": 575, + "output": 576, + "interpolation": "LINEAR" + }, { + "input": 577, + "output": 578, + "interpolation": "LINEAR" + }, { + "input": 579, + "output": 580, + "interpolation": "LINEAR" + }, { + "input": 581, + "output": 582, + "interpolation": "LINEAR" + }, { + "input": 583, + "output": 584, + "interpolation": "LINEAR" + }, { + "input": 585, + "output": 586, + "interpolation": "LINEAR" + }, { + "input": 587, + "output": 588, + "interpolation": "LINEAR" + }, { + "input": 589, + "output": 590, + "interpolation": "LINEAR" + }, { + "input": 591, + "output": 592, + "interpolation": "LINEAR" + }, { + "input": 593, + "output": 594, + "interpolation": "LINEAR" + }, { + "input": 595, + "output": 596, + "interpolation": "LINEAR" + }, { + "input": 597, + "output": 598, + "interpolation": "LINEAR" + }, { + "input": 599, + "output": 600, + "interpolation": "LINEAR" + }, { + "input": 601, + "output": 602, + "interpolation": "LINEAR" + }, { + "input": 603, + "output": 604, + "interpolation": "LINEAR" + }, { + "input": 605, + "output": 606, + "interpolation": "LINEAR" + }, { + "input": 607, + "output": 608, + "interpolation": "LINEAR" + }, { + "input": 609, + "output": 610, + "interpolation": "LINEAR" + }, { + "input": 611, + "output": 612, + "interpolation": "LINEAR" + }, { + "input": 613, + "output": 614, + "interpolation": "LINEAR" + }, { + "input": 615, + "output": 616, + "interpolation": "LINEAR" + }, { + "input": 617, + "output": 618, + "interpolation": "LINEAR" + }, { + "input": 619, + "output": 620, + "interpolation": "LINEAR" + }, { + "input": 621, + "output": 622, + "interpolation": "LINEAR" + }, { + "input": 623, + "output": 624, + "interpolation": "LINEAR" + }, { + "input": 625, + "output": 626, + "interpolation": "LINEAR" + }, { + "input": 627, + "output": 628, + "interpolation": "LINEAR" + }, { + "input": 629, + "output": 630, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_1_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 173, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 173, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 173, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 631, + "output": 632, + "interpolation": "LINEAR" + }, { + "input": 633, + "output": 634, + "interpolation": "LINEAR" + }, { + "input": 635, + "output": 636, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 350, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 350, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 350, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 349, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 349, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 349, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 637, + "output": 638, + "interpolation": "LINEAR" + }, { + "input": 639, + "output": 640, + "interpolation": "LINEAR" + }, { + "input": 641, + "output": 642, + "interpolation": "LINEAR" + }, { + "input": 643, + "output": 644, + "interpolation": "LINEAR" + }, { + "input": 645, + "output": 646, + "interpolation": "LINEAR" + }, { + "input": 647, + "output": 648, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 292, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 292, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 292, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 319, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 319, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 333, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 333, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 293, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 320, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 320, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 320, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 334, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 649, + "output": 650, + "interpolation": "LINEAR" + }, { + "input": 651, + "output": 652, + "interpolation": "LINEAR" + }, { + "input": 653, + "output": 654, + "interpolation": "LINEAR" + }, { + "input": 655, + "output": 656, + "interpolation": "LINEAR" + }, { + "input": 657, + "output": 658, + "interpolation": "LINEAR" + }, { + "input": 659, + "output": 660, + "interpolation": "LINEAR" + }, { + "input": 661, + "output": 662, + "interpolation": "LINEAR" + }, { + "input": 663, + "output": 664, + "interpolation": "LINEAR" + }, { + "input": 665, + "output": 666, + "interpolation": "LINEAR" + }, { + "input": 667, + "output": 668, + "interpolation": "LINEAR" + }, { + "input": 669, + "output": 670, + "interpolation": "LINEAR" + }, { + "input": 671, + "output": 672, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 370, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 370, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 370, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 371, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 371, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 371, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 375, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 375, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 375, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 378, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 378, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 378, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 379, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 379, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 379, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 380, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 380, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 380, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 383, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 383, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 383, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 385, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 385, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 385, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 394, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 394, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 394, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 398, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 398, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 398, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 400, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 400, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 400, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 402, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 402, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 402, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 403, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 403, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 403, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 404, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 404, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 404, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 406, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 406, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 406, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 409, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 409, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 409, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 410, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 410, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 410, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 411, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 411, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 411, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 413, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 413, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 413, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 416, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 416, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 416, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 417, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 417, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 417, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 418, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 418, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 418, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 419, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 419, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 419, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 420, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 420, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 420, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 422, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 422, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 422, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 426, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 426, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 426, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 273, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 273, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 273, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 296, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 296, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 296, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 275, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 275, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 275, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 297, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 297, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 297, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 367, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 367, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 367, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 373, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 373, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 373, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 376, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 376, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 376, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 436, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 436, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 436, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 437, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 437, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 437, + "path": "scale" + } + }, { + "sampler": 105, + "target": { + "node": 263, + "path": "translation" + } + }, { + "sampler": 106, + "target": { + "node": 263, + "path": "rotation" + } + }, { + "sampler": 107, + "target": { + "node": 263, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 673, + "output": 674, + "interpolation": "LINEAR" + }, { + "input": 675, + "output": 676, + "interpolation": "LINEAR" + }, { + "input": 677, + "output": 678, + "interpolation": "LINEAR" + }, { + "input": 679, + "output": 680, + "interpolation": "LINEAR" + }, { + "input": 681, + "output": 682, + "interpolation": "LINEAR" + }, { + "input": 683, + "output": 684, + "interpolation": "LINEAR" + }, { + "input": 685, + "output": 686, + "interpolation": "LINEAR" + }, { + "input": 687, + "output": 688, + "interpolation": "LINEAR" + }, { + "input": 689, + "output": 690, + "interpolation": "LINEAR" + }, { + "input": 691, + "output": 692, + "interpolation": "LINEAR" + }, { + "input": 693, + "output": 694, + "interpolation": "LINEAR" + }, { + "input": 695, + "output": 696, + "interpolation": "LINEAR" + }, { + "input": 697, + "output": 698, + "interpolation": "LINEAR" + }, { + "input": 699, + "output": 700, + "interpolation": "LINEAR" + }, { + "input": 701, + "output": 702, + "interpolation": "LINEAR" + }, { + "input": 703, + "output": 704, + "interpolation": "LINEAR" + }, { + "input": 705, + "output": 706, + "interpolation": "LINEAR" + }, { + "input": 707, + "output": 708, + "interpolation": "LINEAR" + }, { + "input": 709, + "output": 710, + "interpolation": "LINEAR" + }, { + "input": 711, + "output": 712, + "interpolation": "LINEAR" + }, { + "input": 713, + "output": 714, + "interpolation": "LINEAR" + }, { + "input": 715, + "output": 716, + "interpolation": "LINEAR" + }, { + "input": 717, + "output": 718, + "interpolation": "LINEAR" + }, { + "input": 719, + "output": 720, + "interpolation": "LINEAR" + }, { + "input": 721, + "output": 722, + "interpolation": "LINEAR" + }, { + "input": 723, + "output": 724, + "interpolation": "LINEAR" + }, { + "input": 725, + "output": 726, + "interpolation": "LINEAR" + }, { + "input": 727, + "output": 728, + "interpolation": "LINEAR" + }, { + "input": 729, + "output": 730, + "interpolation": "LINEAR" + }, { + "input": 731, + "output": 732, + "interpolation": "LINEAR" + }, { + "input": 733, + "output": 734, + "interpolation": "LINEAR" + }, { + "input": 735, + "output": 736, + "interpolation": "LINEAR" + }, { + "input": 737, + "output": 738, + "interpolation": "LINEAR" + }, { + "input": 739, + "output": 740, + "interpolation": "LINEAR" + }, { + "input": 741, + "output": 742, + "interpolation": "LINEAR" + }, { + "input": 743, + "output": 744, + "interpolation": "LINEAR" + }, { + "input": 745, + "output": 746, + "interpolation": "LINEAR" + }, { + "input": 747, + "output": 748, + "interpolation": "LINEAR" + }, { + "input": 749, + "output": 750, + "interpolation": "LINEAR" + }, { + "input": 751, + "output": 752, + "interpolation": "LINEAR" + }, { + "input": 753, + "output": 754, + "interpolation": "LINEAR" + }, { + "input": 755, + "output": 756, + "interpolation": "LINEAR" + }, { + "input": 757, + "output": 758, + "interpolation": "LINEAR" + }, { + "input": 759, + "output": 760, + "interpolation": "LINEAR" + }, { + "input": 761, + "output": 762, + "interpolation": "LINEAR" + }, { + "input": 763, + "output": 764, + "interpolation": "LINEAR" + }, { + "input": 765, + "output": 766, + "interpolation": "LINEAR" + }, { + "input": 767, + "output": 768, + "interpolation": "LINEAR" + }, { + "input": 769, + "output": 770, + "interpolation": "LINEAR" + }, { + "input": 771, + "output": 772, + "interpolation": "LINEAR" + }, { + "input": 773, + "output": 774, + "interpolation": "LINEAR" + }, { + "input": 775, + "output": 776, + "interpolation": "LINEAR" + }, { + "input": 777, + "output": 778, + "interpolation": "LINEAR" + }, { + "input": 779, + "output": 780, + "interpolation": "LINEAR" + }, { + "input": 781, + "output": 782, + "interpolation": "LINEAR" + }, { + "input": 783, + "output": 784, + "interpolation": "LINEAR" + }, { + "input": 785, + "output": 786, + "interpolation": "LINEAR" + }, { + "input": 787, + "output": 788, + "interpolation": "LINEAR" + }, { + "input": 789, + "output": 790, + "interpolation": "LINEAR" + }, { + "input": 791, + "output": 792, + "interpolation": "LINEAR" + }, { + "input": 793, + "output": 794, + "interpolation": "LINEAR" + }, { + "input": 795, + "output": 796, + "interpolation": "LINEAR" + }, { + "input": 797, + "output": 798, + "interpolation": "LINEAR" + }, { + "input": 799, + "output": 800, + "interpolation": "LINEAR" + }, { + "input": 801, + "output": 802, + "interpolation": "LINEAR" + }, { + "input": 803, + "output": 804, + "interpolation": "LINEAR" + }, { + "input": 805, + "output": 806, + "interpolation": "LINEAR" + }, { + "input": 807, + "output": 808, + "interpolation": "LINEAR" + }, { + "input": 809, + "output": 810, + "interpolation": "LINEAR" + }, { + "input": 811, + "output": 812, + "interpolation": "LINEAR" + }, { + "input": 813, + "output": 814, + "interpolation": "LINEAR" + }, { + "input": 815, + "output": 816, + "interpolation": "LINEAR" + }, { + "input": 817, + "output": 818, + "interpolation": "LINEAR" + }, { + "input": 819, + "output": 820, + "interpolation": "LINEAR" + }, { + "input": 821, + "output": 822, + "interpolation": "LINEAR" + }, { + "input": 823, + "output": 824, + "interpolation": "LINEAR" + }, { + "input": 825, + "output": 826, + "interpolation": "LINEAR" + }, { + "input": 827, + "output": 828, + "interpolation": "LINEAR" + }, { + "input": 829, + "output": 830, + "interpolation": "LINEAR" + }, { + "input": 831, + "output": 832, + "interpolation": "LINEAR" + }, { + "input": 833, + "output": 834, + "interpolation": "LINEAR" + }, { + "input": 835, + "output": 836, + "interpolation": "LINEAR" + }, { + "input": 837, + "output": 838, + "interpolation": "LINEAR" + }, { + "input": 839, + "output": 840, + "interpolation": "LINEAR" + }, { + "input": 841, + "output": 842, + "interpolation": "LINEAR" + }, { + "input": 843, + "output": 844, + "interpolation": "LINEAR" + }, { + "input": 845, + "output": 846, + "interpolation": "LINEAR" + }, { + "input": 847, + "output": 848, + "interpolation": "LINEAR" + }, { + "input": 849, + "output": 850, + "interpolation": "LINEAR" + }, { + "input": 851, + "output": 852, + "interpolation": "LINEAR" + }, { + "input": 853, + "output": 854, + "interpolation": "LINEAR" + }, { + "input": 855, + "output": 856, + "interpolation": "LINEAR" + }, { + "input": 857, + "output": 858, + "interpolation": "LINEAR" + }, { + "input": 859, + "output": 860, + "interpolation": "LINEAR" + }, { + "input": 861, + "output": 862, + "interpolation": "LINEAR" + }, { + "input": 863, + "output": 864, + "interpolation": "LINEAR" + }, { + "input": 865, + "output": 866, + "interpolation": "LINEAR" + }, { + "input": 867, + "output": 868, + "interpolation": "LINEAR" + }, { + "input": 869, + "output": 870, + "interpolation": "LINEAR" + }, { + "input": 871, + "output": 872, + "interpolation": "LINEAR" + }, { + "input": 873, + "output": 874, + "interpolation": "LINEAR" + }, { + "input": 875, + "output": 876, + "interpolation": "LINEAR" + }, { + "input": 877, + "output": 878, + "interpolation": "LINEAR" + }, { + "input": 879, + "output": 880, + "interpolation": "LINEAR" + }, { + "input": 881, + "output": 882, + "interpolation": "LINEAR" + }, { + "input": 883, + "output": 884, + "interpolation": "LINEAR" + }, { + "input": 885, + "output": 886, + "interpolation": "LINEAR" + }, { + "input": 887, + "output": 888, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 300, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 300, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 300, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 302, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 302, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 302, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 304, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 304, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 304, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 306, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 306, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 306, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 307, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 307, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 307, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 310, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 310, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 310, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 311, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 311, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 311, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 314, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 314, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 314, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 315, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 315, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 315, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 356, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 356, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 356, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 358, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 358, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 358, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 359, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 359, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 359, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 360, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 360, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 360, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 364, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 364, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 364, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 330, + "path": "rotation" + } + }, { + "sampler": 43, + "target": { + "node": 322, + "path": "translation" + } + }, { + "sampler": 44, + "target": { + "node": 322, + "path": "rotation" + } + }, { + "sampler": 45, + "target": { + "node": 342, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 336, + "path": "translation" + } + }, { + "sampler": 47, + "target": { + "node": 336, + "path": "rotation" + } + }, { + "sampler": 48, + "target": { + "node": 344, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 338, + "path": "translation" + } + }, { + "sampler": 50, + "target": { + "node": 338, + "path": "rotation" + } + }, { + "sampler": 51, + "target": { + "node": 346, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 340, + "path": "translation" + } + }, { + "sampler": 53, + "target": { + "node": 340, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 889, + "output": 890, + "interpolation": "LINEAR" + }, { + "input": 891, + "output": 892, + "interpolation": "LINEAR" + }, { + "input": 893, + "output": 894, + "interpolation": "LINEAR" + }, { + "input": 895, + "output": 896, + "interpolation": "LINEAR" + }, { + "input": 897, + "output": 898, + "interpolation": "LINEAR" + }, { + "input": 899, + "output": 900, + "interpolation": "LINEAR" + }, { + "input": 901, + "output": 902, + "interpolation": "LINEAR" + }, { + "input": 903, + "output": 904, + "interpolation": "LINEAR" + }, { + "input": 905, + "output": 906, + "interpolation": "LINEAR" + }, { + "input": 907, + "output": 908, + "interpolation": "LINEAR" + }, { + "input": 909, + "output": 910, + "interpolation": "LINEAR" + }, { + "input": 911, + "output": 912, + "interpolation": "LINEAR" + }, { + "input": 913, + "output": 914, + "interpolation": "LINEAR" + }, { + "input": 915, + "output": 916, + "interpolation": "LINEAR" + }, { + "input": 917, + "output": 918, + "interpolation": "LINEAR" + }, { + "input": 919, + "output": 920, + "interpolation": "LINEAR" + }, { + "input": 921, + "output": 922, + "interpolation": "LINEAR" + }, { + "input": 923, + "output": 924, + "interpolation": "LINEAR" + }, { + "input": 925, + "output": 926, + "interpolation": "LINEAR" + }, { + "input": 927, + "output": 928, + "interpolation": "LINEAR" + }, { + "input": 929, + "output": 930, + "interpolation": "LINEAR" + }, { + "input": 931, + "output": 932, + "interpolation": "LINEAR" + }, { + "input": 933, + "output": 934, + "interpolation": "LINEAR" + }, { + "input": 935, + "output": 936, + "interpolation": "LINEAR" + }, { + "input": 937, + "output": 938, + "interpolation": "LINEAR" + }, { + "input": 939, + "output": 940, + "interpolation": "LINEAR" + }, { + "input": 941, + "output": 942, + "interpolation": "LINEAR" + }, { + "input": 943, + "output": 944, + "interpolation": "LINEAR" + }, { + "input": 945, + "output": 946, + "interpolation": "LINEAR" + }, { + "input": 947, + "output": 948, + "interpolation": "LINEAR" + }, { + "input": 949, + "output": 950, + "interpolation": "LINEAR" + }, { + "input": 951, + "output": 952, + "interpolation": "LINEAR" + }, { + "input": 953, + "output": 954, + "interpolation": "LINEAR" + }, { + "input": 955, + "output": 956, + "interpolation": "LINEAR" + }, { + "input": 957, + "output": 958, + "interpolation": "LINEAR" + }, { + "input": 959, + "output": 960, + "interpolation": "LINEAR" + }, { + "input": 961, + "output": 962, + "interpolation": "LINEAR" + }, { + "input": 963, + "output": 964, + "interpolation": "LINEAR" + }, { + "input": 965, + "output": 966, + "interpolation": "LINEAR" + }, { + "input": 967, + "output": 968, + "interpolation": "LINEAR" + }, { + "input": 969, + "output": 970, + "interpolation": "LINEAR" + }, { + "input": 971, + "output": 972, + "interpolation": "LINEAR" + }, { + "input": 973, + "output": 974, + "interpolation": "LINEAR" + }, { + "input": 975, + "output": 976, + "interpolation": "LINEAR" + }, { + "input": 977, + "output": 978, + "interpolation": "LINEAR" + }, { + "input": 979, + "output": 980, + "interpolation": "LINEAR" + }, { + "input": 981, + "output": 982, + "interpolation": "LINEAR" + }, { + "input": 983, + "output": 984, + "interpolation": "LINEAR" + }, { + "input": 985, + "output": 986, + "interpolation": "LINEAR" + }, { + "input": 987, + "output": 988, + "interpolation": "LINEAR" + }, { + "input": 989, + "output": 990, + "interpolation": "LINEAR" + }, { + "input": 991, + "output": 992, + "interpolation": "LINEAR" + }, { + "input": 993, + "output": 994, + "interpolation": "LINEAR" + }, { + "input": 995, + "output": 996, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 387, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 387, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 387, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 390, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 390, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 390, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 997, + "output": 998, + "interpolation": "LINEAR" + }, { + "input": 999, + "output": 1000, + "interpolation": "LINEAR" + }, { + "input": 1001, + "output": 1002, + "interpolation": "LINEAR" + }, { + "input": 1003, + "output": 1004, + "interpolation": "LINEAR" + }, { + "input": 1005, + "output": 1006, + "interpolation": "LINEAR" + }, { + "input": 1007, + "output": 1008, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_2", + "channels": [ + { + "sampler": 0, + "target": { + "node": 278, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 278, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 278, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1009, + "output": 1010, + "interpolation": "LINEAR" + }, { + "input": 1011, + "output": 1012, + "interpolation": "LINEAR" + }, { + "input": 1013, + "output": 1014, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_2_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 281, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 281, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 281, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1015, + "output": 1016, + "interpolation": "LINEAR" + }, { + "input": 1017, + "output": 1018, + "interpolation": "LINEAR" + }, { + "input": 1019, + "output": 1020, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 324, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 324, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 324, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 325, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 325, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 325, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 362, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 362, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 362, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 327, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 327, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 327, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1021, + "output": 1022, + "interpolation": "LINEAR" + }, { + "input": 1023, + "output": 1024, + "interpolation": "LINEAR" + }, { + "input": 1025, + "output": 1026, + "interpolation": "LINEAR" + }, { + "input": 1027, + "output": 1028, + "interpolation": "LINEAR" + }, { + "input": 1029, + "output": 1030, + "interpolation": "LINEAR" + }, { + "input": 1031, + "output": 1032, + "interpolation": "LINEAR" + }, { + "input": 1033, + "output": 1034, + "interpolation": "LINEAR" + }, { + "input": 1035, + "output": 1036, + "interpolation": "LINEAR" + }, { + "input": 1037, + "output": 1038, + "interpolation": "LINEAR" + }, { + "input": 1039, + "output": 1040, + "interpolation": "LINEAR" + }, { + "input": 1041, + "output": 1042, + "interpolation": "LINEAR" + }, { + "input": 1043, + "output": 1044, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 73, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 73, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 73, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 74, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 74, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 74, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 76, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 76, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 76, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 71, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 71, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 71, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1045, + "output": 1046, + "interpolation": "LINEAR" + }, { + "input": 1047, + "output": 1048, + "interpolation": "LINEAR" + }, { + "input": 1049, + "output": 1050, + "interpolation": "LINEAR" + }, { + "input": 1051, + "output": 1052, + "interpolation": "LINEAR" + }, { + "input": 1053, + "output": 1054, + "interpolation": "LINEAR" + }, { + "input": 1055, + "output": 1056, + "interpolation": "LINEAR" + }, { + "input": 1057, + "output": 1058, + "interpolation": "LINEAR" + }, { + "input": 1059, + "output": 1060, + "interpolation": "LINEAR" + }, { + "input": 1061, + "output": 1062, + "interpolation": "LINEAR" + }, { + "input": 1063, + "output": 1064, + "interpolation": "LINEAR" + }, { + "input": 1065, + "output": 1066, + "interpolation": "LINEAR" + }, { + "input": 1067, + "output": 1068, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_cargo", + "channels": [ + { + "sampler": 0, + "target": { + "node": 452, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 458, + "path": "translation" + } + }, { + "sampler": 2, + "target": { + "node": 458, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 458, + "path": "scale" + } + }, { + "sampler": 4, + "target": { + "node": 455, + "path": "translation" + } + }, { + "sampler": 5, + "target": { + "node": 455, + "path": "rotation" + } + }, { + "sampler": 6, + "target": { + "node": 455, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1069, + "output": 1070, + "interpolation": "LINEAR" + }, { + "input": 1071, + "output": 1072, + "interpolation": "LINEAR" + }, { + "input": 1073, + "output": 1074, + "interpolation": "LINEAR" + }, { + "input": 1075, + "output": 1076, + "interpolation": "LINEAR" + }, { + "input": 1077, + "output": 1078, + "interpolation": "LINEAR" + }, { + "input": 1079, + "output": 1080, + "interpolation": "LINEAR" + }, { + "input": 1081, + "output": 1082, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_passenger", + "channels": [ + { + "sampler": 0, + "target": { + "node": 462, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 468, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1083, + "output": 1084, + "interpolation": "LINEAR" + }, { + "input": 1085, + "output": 1086, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_rear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 449, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 444, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 1087, + "output": 1088, + "interpolation": "LINEAR" + }, { + "input": 1089, + "output": 1090, + "interpolation": "LINEAR" + } + ] + }, { + "name": "HANDLING_Wipers", + "channels": [ + { + "sampler": 0, + "target": { + "node": 471, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 472, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 473, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 474, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1091, + "output": 1092, + "interpolation": "LINEAR" + }, { + "input": 1093, + "output": 1094, + "interpolation": "LINEAR" + }, { + "input": 1095, + "output": 1096, + "interpolation": "LINEAR" + }, { + "input": 1097, + "output": 1098, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 84, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 84, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 84, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 83, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 83, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 83, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 65, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 65, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 65, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 46, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 46, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 46, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 42, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 42, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 42, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1099, + "output": 1100, + "interpolation": "LINEAR" + }, { + "input": 1101, + "output": 1102, + "interpolation": "LINEAR" + }, { + "input": 1103, + "output": 1104, + "interpolation": "LINEAR" + }, { + "input": 1105, + "output": 1106, + "interpolation": "LINEAR" + }, { + "input": 1107, + "output": 1108, + "interpolation": "LINEAR" + }, { + "input": 1109, + "output": 1110, + "interpolation": "LINEAR" + }, { + "input": 1111, + "output": 1112, + "interpolation": "LINEAR" + }, { + "input": 1113, + "output": 1114, + "interpolation": "LINEAR" + }, { + "input": 1115, + "output": 1116, + "interpolation": "LINEAR" + }, { + "input": 1117, + "output": 1118, + "interpolation": "LINEAR" + }, { + "input": 1119, + "output": 1120, + "interpolation": "LINEAR" + }, { + "input": 1121, + "output": 1122, + "interpolation": "LINEAR" + }, { + "input": 1123, + "output": 1124, + "interpolation": "LINEAR" + }, { + "input": 1125, + "output": 1126, + "interpolation": "LINEAR" + }, { + "input": 1127, + "output": 1128, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 289, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 289, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 289, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 366, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 366, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 366, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 361, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 361, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 361, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 357, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 357, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 357, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 355, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 355, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 355, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1129, + "output": 1130, + "interpolation": "LINEAR" + }, { + "input": 1131, + "output": 1132, + "interpolation": "LINEAR" + }, { + "input": 1133, + "output": 1134, + "interpolation": "LINEAR" + }, { + "input": 1135, + "output": 1136, + "interpolation": "LINEAR" + }, { + "input": 1137, + "output": 1138, + "interpolation": "LINEAR" + }, { + "input": 1139, + "output": 1140, + "interpolation": "LINEAR" + }, { + "input": 1141, + "output": 1142, + "interpolation": "LINEAR" + }, { + "input": 1143, + "output": 1144, + "interpolation": "LINEAR" + }, { + "input": 1145, + "output": 1146, + "interpolation": "LINEAR" + }, { + "input": 1147, + "output": 1148, + "interpolation": "LINEAR" + }, { + "input": 1149, + "output": 1150, + "interpolation": "LINEAR" + }, { + "input": 1151, + "output": 1152, + "interpolation": "LINEAR" + }, { + "input": 1153, + "output": 1154, + "interpolation": "LINEAR" + }, { + "input": 1155, + "output": 1156, + "interpolation": "LINEAR" + }, { + "input": 1157, + "output": 1158, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Rudder_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 524, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 524, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3496, + "output": 3497, + "interpolation": "LINEAR" + }, { + "input": 3496, + "output": 3498, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_Left_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 525, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 525, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3499, + "output": 3500, + "interpolation": "LINEAR" + }, { + "input": 3499, + "output": 3501, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_right_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 526, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 526, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3499, + "output": 3502, + "interpolation": "LINEAR" + }, { + "input": 3499, + "output": 3503, + "interpolation": "LINEAR" + } + ] + }, { + "name": "DoorB_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 527, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 3496, + "output": 3504, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_left_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 529, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3499, + "output": 3505, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_right_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 530, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3499, + "output": 3506, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Cargo_Door_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 532, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 532, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3496, + "output": 3507, + "interpolation": "LINEAR" + }, { + "input": 3496, + "output": 3508, + "interpolation": "LINEAR" + } + ] + } + ], + "asset": { + "generator": "babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344", + "version": "2.0", + "extensions": { + "ASOBO_asset_optimized": { + "BoundingBoxMax": [ + 258.3755187988281, 505.03790283203125, 439.2071228027344 + ], + "BoundingBoxMin": [ + -406.351318359375, -523.7728881835938, -366.2286071777344 + ], + "MajorVersion": 4, + "MinorVersion": 4, + "UseCheckerboardMaterialForMissingTextures": true + }, + "ASOBO_normal_map_convention": { + "tangent_space_convention": "DirectX" + } + } + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 14528, + "name": "bufferViewFloatMat4" + }, { + "buffer": 0, + "byteLength": 342288, + "byteOffset": 14528, + "name": "bufferViewAnimationFloatScalar" + }, { + "buffer": 0, + "byteLength": 664320, + "byteOffset": 356816, + "name": "bufferViewAnimationFloatVec3" + }, { + "buffer": 0, + "byteLength": 483392, + "byteOffset": 1021136, + "name": "bufferViewAnimationFloatVec4" + }, { + "buffer": 0, + "byteLength": 28797048, + "byteStride": 36, + "byteOffset": 1504528, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 5062050, + "byteOffset": 30301576, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 8340576, + "byteStride": 48, + "byteOffset": 35363628, + "target": 34962, + "name": "BufferViewVertex4Blend" + }, { + "buffer": 0, + "byteLength": 53416, + "byteStride": 44, + "byteOffset": 43704204, + "target": 34962, + "name": "BufferViewVertex1Blend" + }, { + "buffer": 0, + "byteLength": 159636, + "byteOffset": 43757620, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 845424, + "byteStride": 36, + "byteOffset": 43917256, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 324, + "byteOffset": 44762680 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 44763004 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 44763976 + }, { + "buffer": 0, + "byteLength": 644, + "byteOffset": 44765272 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 44765916 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 44767848 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 44770424 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 44772356 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 44774932 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 44775904 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 44778480 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 44781056 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 44782028 + } + ], + "extensionsRequired": ["MSFT_texture_dds"], + "materials": [ + { + "name": "WINGS", + "normalTexture": { + "index": 2 + }, + "occlusionTexture": { + "index": 1 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 0 + }, + "metallicRoughnessTexture": { + "index": 1 + } + } + }, { + "name": "REARGEAR", + "normalTexture": { + "index": 5 + }, + "occlusionTexture": { + "index": 4 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 3 + }, + "metallicRoughnessTexture": { + "index": 4 + } + } + }, { + "name": "UNDERCARRIAGE", + "normalTexture": { + "index": 8 + }, + "occlusionTexture": { + "index": 7 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 6 + }, + "metallicRoughnessTexture": { + "index": 7 + } + } + }, { + "name": "DECALS1", + "alphaMode": "BLEND", + "normalTexture": { + "index": 11, + "scale": 0.5 + }, + "occlusionTexture": { + "index": 10 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 9 + }, + "metallicRoughnessTexture": { + "index": 10 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 16 + } + } + }, { + "name": "TAIL", + "normalTexture": { + "index": 14 + }, + "occlusionTexture": { + "index": 13 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 12 + }, + "metallicRoughnessTexture": { + "index": 13 + } + } + }, { + "name": "Livery_KLM", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 15 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "FUSELAGE1", + "normalTexture": { + "index": 18 + }, + "occlusionTexture": { + "index": 17 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 16 + }, + "metallicRoughnessTexture": { + "index": 17 + } + } + }, { + "name": "LIVERY1", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 19 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "Livery_KLM2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 20 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "WINDSHIELD", + "alphaMode": "BLEND", + "occlusionTexture": { + "index": 21 + }, + "emissiveTexture": { + "index": 22 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.623529434, 0.623529434, 0.623529434, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0, + "metallicRoughnessTexture": { + "index": 21 + } + }, + "extensions": { + "ASOBO_material_detail_map": { + "UVScale": 2, + "detailColorTexture": { + "index": 23 + }, + "detailNormalTexture": { + "index": 24 + } + } + }, + "extras": { + "ASOBO_material_code": "Windshield" + } + }, { + "name": "LIGHTS", + "occlusionTexture": { + "index": 25 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.9, 0.9, 0.9, 1 + ], + "metallicRoughnessTexture": { + "index": 25 + } + } + }, { + "name": "FROST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 28, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 27 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 26 + }, + "metallicRoughnessTexture": { + "index": 27 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "FROST_BLAST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 31, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 30 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 29 + }, + "metallicRoughnessTexture": { + "index": 30 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "DECALS2", + "alphaMode": "BLEND", + "normalTexture": { + "index": 33 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.3, + "baseColorTexture": { + "index": 32 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 15 + } + } + }, { + "name": "TIRE", + "normalTexture": { + "index": 36 + }, + "occlusionTexture": { + "index": 35 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 34 + }, + "metallicRoughnessTexture": { + "index": 35 + } + } + }, { + "name": "TIREBLUR", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.5, + "baseColorTexture": { + "index": 37 + } + } + }, { + "name": "ENGSTILL", + "occlusionTexture": { + "index": 39 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 38 + }, + "metallicRoughnessTexture": { + "index": 39 + } + } + }, { + "name": "ENGBLUR", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 40 + } + } + }, { + "name": "ENGSLOW", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 41 + } + } + }, { + "name": "ENGINE", + "normalTexture": { + "index": 44 + }, + "occlusionTexture": { + "index": 43 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 42 + }, + "metallicRoughnessTexture": { + "index": 43 + } + } + }, { + "name": "Generic_LOD5", + "occlusionTexture": { + "index": 46 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 45 + }, + "metallicRoughnessTexture": { + "index": 46 + } + } + }, { + "name": "FUSELAGE2", + "normalTexture": { + "index": 49 + }, + "occlusionTexture": { + "index": 48 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 47 + }, + "metallicRoughnessTexture": { + "index": 48 + } + } + }, { + "name": "GLASS", + "alphaCutoff": 0.01, + "alphaMode": "MASK", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.66906476, 0.66906476, 0.66906476, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + } + }, { + "name": "LIVERY1_3", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 50 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 5 + } + } + }, { + "name": "HANDLE", + "normalTexture": { + "index": 53 + }, + "occlusionTexture": { + "index": 52 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 51 + }, + "metallicRoughnessTexture": { + "index": 52 + } + } + }, { + "name": "FRONTGEAR", + "normalTexture": { + "index": 56 + }, + "occlusionTexture": { + "index": 55 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 54 + }, + "metallicRoughnessTexture": { + "index": 55 + } + } + }, { + "name": "Cargo_Door", + "normalTexture": { + "index": 59 + }, + "occlusionTexture": { + "index": 58 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 57 + }, + "metallicRoughnessTexture": { + "index": 58 + } + } + }, { + "name": "Passenger_Door", + "normalTexture": { + "index": 62 + }, + "occlusionTexture": { + "index": 61 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 60 + }, + "metallicRoughnessTexture": { + "index": 61 + } + } + }, { + "name": "rivets", + "alphaMode": "BLEND", + "normalTexture": { + "index": 65 + }, + "occlusionTexture": { + "index": 64 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 63 + }, + "metallicRoughnessTexture": { + "index": 64 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": {} + } + }, { + "name": "HUBLOTx", + "normalTexture": { + "index": 68 + }, + "occlusionTexture": { + "index": 67 + }, + "emissiveTexture": { + "index": 69 + }, + "emissiveFactor": [ + 0.48201438784599304, 0.48171502351760864, 0.4404016137123108 + ], + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 66 + }, + "metallicRoughnessTexture": { + "index": 67 + } + }, + "extensions": { + "ASOBO_material_draw_order": { + "drawOrderOffset": 11 + } + }, + "extras": { + "ASOBO_material_code": "Porthole" + } + }, { + "name": "Cargo_Soute", + "normalTexture": { + "index": 72 + }, + "occlusionTexture": { + "index": 71 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 70 + }, + "metallicRoughnessTexture": { + "index": 71 + } + } + }, { + "name": "Hublot", + "occlusionTexture": { + "index": 74 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 73 + }, + "metallicRoughnessTexture": { + "index": 74 + } + }, + "extensions": { + "ASOBO_material_detail_map": { + "UVScale": 40, + "detailNormalTexture": { + "index": 75, + "scale": 0.2 + } + } + } + }, { + "name": "COLLISION", + "pbrMetallicRoughness": { + "baseColorFactor": [1, 0, 0, 0.7] + }, + "extensions": { + "ASOBO_material_invisible": {}, + "ASOBO_tags": { + "tags": ["Collision"] + } + } + }, { + "name": "RegistrationNumber2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "RegistrationNumber", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.8, 0.8, 0.8, 1 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 8 + } + } + }, { + "name": "LIVERYDECALS", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 76 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "ENGINE0", + "normalTexture": { + "index": 44 + }, + "occlusionTexture": { + "index": 43 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 77 + }, + "metallicRoughnessTexture": { + "index": 43 + } + } + } + ], + "meshes": [ + { + "primitives": [ + { + "attributes": { + "COLOR_0": 2958, + "JOINTS_0": 2956, + "NORMAL": 2953, + "POSITION": 2951, + "TANGENT": 2952, + "TEXCOORD_0": 2954, + "TEXCOORD_1": 2955, + "WEIGHTS_0": 2957 + }, + "indices": 2959, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1454, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_Details_Spoiler_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2967, + "JOINTS_0": 2965, + "NORMAL": 2962, + "POSITION": 2960, + "TANGENT": 2961, + "TEXCOORD_0": 2963, + "TEXCOORD_1": 2964, + "WEIGHTS_0": 2966 + }, + "indices": 2968, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 240, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_37_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2976, + "JOINTS_0": 2974, + "NORMAL": 2971, + "POSITION": 2969, + "TANGENT": 2970, + "TEXCOORD_0": 2972, + "TEXCOORD_1": 2973, + "WEIGHTS_0": 2975 + }, + "indices": 2977, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2402, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Undercarriage_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2985, + "JOINTS_0": 2983, + "NORMAL": 2980, + "POSITION": 2978, + "TANGENT": 2979, + "TEXCOORD_0": 2981, + "TEXCOORD_1": 2982, + "WEIGHTS_0": 2984 + }, + "indices": 2986, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2950, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2994, + "JOINTS_0": 2992, + "NORMAL": 2989, + "POSITION": 2987, + "TANGENT": 2988, + "TEXCOORD_0": 2990, + "TEXCOORD_1": 2991, + "WEIGHTS_0": 2993 + }, + "indices": 2995, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 892, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FlapsKrueger_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1164, + "NORMAL": 1161, + "POSITION": 1159, + "TANGENT": 1160, + "TEXCOORD_0": 1162, + "TEXCOORD_1": 1163 + }, + "indices": 1165, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3018, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Rudder_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1171, + "NORMAL": 1168, + "POSITION": 1166, + "TANGENT": 1167, + "TEXCOORD_0": 1169, + "TEXCOORD_1": 1170 + }, + "indices": 1172, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 191, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_Rudder" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1178, + "NORMAL": 1175, + "POSITION": 1173, + "TANGENT": 1174, + "TEXCOORD_0": 1176, + "TEXCOORD_1": 1177 + }, + "indices": 1179, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1778, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1178, + "NORMAL": 1175, + "POSITION": 1173, + "TANGENT": 1174, + "TEXCOORD_0": 1176, + "TEXCOORD_1": 1177 + }, + "indices": 1179, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "StartIndex": 5334, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1178, + "NORMAL": 1175, + "POSITION": 1173, + "TANGENT": 1174, + "TEXCOORD_0": 1176, + "TEXCOORD_1": 1177 + }, + "indices": 1179, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "StartIndex": 5676, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1185, + "NORMAL": 1182, + "POSITION": 1180, + "TANGENT": 1181, + "TEXCOORD_0": 1183, + "TEXCOORD_1": 1184 + }, + "indices": 1186, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_RGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1192, + "NORMAL": 1189, + "POSITION": 1187, + "TANGENT": 1188, + "TEXCOORD_0": 1190, + "TEXCOORD_1": 1191 + }, + "indices": 1193, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1199, + "NORMAL": 1196, + "POSITION": 1194, + "TANGENT": 1195, + "TEXCOORD_0": 1197, + "TEXCOORD_1": 1198 + }, + "indices": 1200, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Right01_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1206, + "NORMAL": 1203, + "POSITION": 1201, + "TANGENT": 1202, + "TEXCOORD_0": 1204, + "TEXCOORD_1": 1205 + }, + "indices": 1207, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 326, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_03_hydraulic01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1213, + "NORMAL": 1210, + "POSITION": 1208, + "TANGENT": 1209, + "TEXCOORD_0": 1211, + "TEXCOORD_1": 1212 + }, + "indices": 1214, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1778, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1213, + "NORMAL": 1210, + "POSITION": 1208, + "TANGENT": 1209, + "TEXCOORD_0": 1211, + "TEXCOORD_1": 1212 + }, + "indices": 1214, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "StartIndex": 5334, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1213, + "NORMAL": 1210, + "POSITION": 1208, + "TANGENT": 1209, + "TEXCOORD_0": 1211, + "TEXCOORD_1": 1212 + }, + "indices": 1214, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "StartIndex": 5676, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1220, + "NORMAL": 1217, + "POSITION": 1215, + "TANGENT": 1216, + "TEXCOORD_0": 1218, + "TEXCOORD_1": 1219 + }, + "indices": 1221, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_LGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1227, + "NORMAL": 1224, + "POSITION": 1222, + "TANGENT": 1223, + "TEXCOORD_0": 1225, + "TEXCOORD_1": 1226 + }, + "indices": 1228, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1234, + "NORMAL": 1231, + "POSITION": 1229, + "TANGENT": 1230, + "TEXCOORD_0": 1232, + "TEXCOORD_1": 1233 + }, + "indices": 1235, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Left01_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1241, + "NORMAL": 1238, + "POSITION": 1236, + "TANGENT": 1237, + "TEXCOORD_0": 1239, + "TEXCOORD_1": 1240 + }, + "indices": 1242, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 326, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_C_Door_03_hydraulic01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1248, + "NORMAL": 1245, + "POSITION": 1243, + "TANGENT": 1244, + "TEXCOORD_0": 1246, + "TEXCOORD_1": 1247 + }, + "indices": 1249, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2472, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1255, + "NORMAL": 1252, + "POSITION": 1250, + "TANGENT": 1251, + "TEXCOORD_0": 1253, + "TEXCOORD_1": 1254 + }, + "indices": 1256, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2360, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1255, + "NORMAL": 1252, + "POSITION": 1250, + "TANGENT": 1251, + "TEXCOORD_0": 1253, + "TEXCOORD_1": 1254 + }, + "indices": 1256, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1540, + "StartIndex": 7080, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Trim_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1262, + "NORMAL": 1259, + "POSITION": 1257, + "TANGENT": 1258, + "TEXCOORD_0": 1260, + "TEXCOORD_1": 1261 + }, + "indices": 1263, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1262, + "NORMAL": 1259, + "POSITION": 1257, + "TANGENT": 1258, + "TEXCOORD_0": 1260, + "TEXCOORD_1": 1261 + }, + "indices": 1263, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1269, + "NORMAL": 1266, + "POSITION": 1264, + "TANGENT": 1265, + "TEXCOORD_0": 1267, + "TEXCOORD_1": 1268 + }, + "indices": 1270, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1269, + "NORMAL": 1266, + "POSITION": 1264, + "TANGENT": 1265, + "TEXCOORD_0": 1267, + "TEXCOORD_1": 1268 + }, + "indices": 1270, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1276, + "NORMAL": 1273, + "POSITION": 1271, + "TANGENT": 1272, + "TEXCOORD_0": 1274, + "TEXCOORD_1": 1275 + }, + "indices": 1277, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 722, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_ElevatorTrimL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1283, + "NORMAL": 1280, + "POSITION": 1278, + "TANGENT": 1279, + "TEXCOORD_0": 1281, + "TEXCOORD_1": 1282 + }, + "indices": 1284, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1290, + "NORMAL": 1287, + "POSITION": 1285, + "TANGENT": 1286, + "TEXCOORD_0": 1288, + "TEXCOORD_1": 1289 + }, + "indices": 1291, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1297, + "NORMAL": 1294, + "POSITION": 1292, + "TANGENT": 1293, + "TEXCOORD_0": 1295, + "TEXCOORD_1": 1296 + }, + "indices": 1298, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1304, + "NORMAL": 1301, + "POSITION": 1299, + "TANGENT": 1300, + "TEXCOORD_0": 1302, + "TEXCOORD_1": 1303 + }, + "indices": 1305, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_19_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1311, + "NORMAL": 1308, + "POSITION": 1306, + "TANGENT": 1307, + "TEXCOORD_0": 1309, + "TEXCOORD_1": 1310 + }, + "indices": 1312, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_11_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1318, + "NORMAL": 1315, + "POSITION": 1313, + "TANGENT": 1314, + "TEXCOORD_0": 1316, + "TEXCOORD_1": 1317 + }, + "indices": 1319, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_12_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1325, + "NORMAL": 1322, + "POSITION": 1320, + "TANGENT": 1321, + "TEXCOORD_0": 1323, + "TEXCOORD_1": 1324 + }, + "indices": 1326, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_13_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1332, + "NORMAL": 1329, + "POSITION": 1327, + "TANGENT": 1328, + "TEXCOORD_0": 1330, + "TEXCOORD_1": 1331 + }, + "indices": 1333, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_14_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1339, + "NORMAL": 1336, + "POSITION": 1334, + "TANGENT": 1335, + "TEXCOORD_0": 1337, + "TEXCOORD_1": 1338 + }, + "indices": 1340, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_15_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1346, + "NORMAL": 1343, + "POSITION": 1341, + "TANGENT": 1342, + "TEXCOORD_0": 1344, + "TEXCOORD_1": 1345 + }, + "indices": 1347, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_16_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3003, + "JOINTS_0": 3001, + "NORMAL": 2998, + "POSITION": 2996, + "TANGENT": 2997, + "TEXCOORD_0": 2999, + "TEXCOORD_1": 3000, + "WEIGHTS_0": 3002 + }, + "indices": 3004, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2326, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_2_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1353, + "NORMAL": 1350, + "POSITION": 1348, + "TANGENT": 1349, + "TEXCOORD_0": 1351, + "TEXCOORD_1": 1352 + }, + "indices": 1354, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_18_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1360, + "NORMAL": 1357, + "POSITION": 1355, + "TANGENT": 1356, + "TEXCOORD_0": 1358, + "TEXCOORD_1": 1359 + }, + "indices": 1361, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 234, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1367, + "NORMAL": 1364, + "POSITION": 1362, + "TANGENT": 1363, + "TEXCOORD_0": 1365, + "TEXCOORD_1": 1366 + }, + "indices": 1368, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1531, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1367, + "NORMAL": 1364, + "POSITION": 1362, + "TANGENT": 1363, + "TEXCOORD_0": 1365, + "TEXCOORD_1": 1366 + }, + "indices": 1368, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 342, + "StartIndex": 4593, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_1_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1374, + "NORMAL": 1371, + "POSITION": 1369, + "TANGENT": 1370, + "TEXCOORD_0": 1372, + "TEXCOORD_1": 1373 + }, + "indices": 1375, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_07_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1381, + "NORMAL": 1378, + "POSITION": 1376, + "TANGENT": 1377, + "TEXCOORD_0": 1379, + "TEXCOORD_1": 1380 + }, + "indices": 1382, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_08_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1388, + "NORMAL": 1385, + "POSITION": 1383, + "TANGENT": 1384, + "TEXCOORD_0": 1386, + "TEXCOORD_1": 1387 + }, + "indices": 1389, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_09_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1395, + "NORMAL": 1392, + "POSITION": 1390, + "TANGENT": 1391, + "TEXCOORD_0": 1393, + "TEXCOORD_1": 1394 + }, + "indices": 1396, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_10_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1402, + "NORMAL": 1399, + "POSITION": 1397, + "TANGENT": 1398, + "TEXCOORD_0": 1400, + "TEXCOORD_1": 1401 + }, + "indices": 1403, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 546, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1402, + "NORMAL": 1399, + "POSITION": 1397, + "TANGENT": 1398, + "TEXCOORD_0": 1400, + "TEXCOORD_1": 1401 + }, + "indices": 1403, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "StartIndex": 1638, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FlapsKrueger_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1409, + "NORMAL": 1406, + "POSITION": 1404, + "TANGENT": 1405, + "TEXCOORD_0": 1407, + "TEXCOORD_1": 1408 + }, + "indices": 1410, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1416, + "NORMAL": 1413, + "POSITION": 1411, + "TANGENT": 1412, + "TEXCOORD_0": 1414, + "TEXCOORD_1": 1415 + }, + "indices": 1417, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1423, + "NORMAL": 1420, + "POSITION": 1418, + "TANGENT": 1419, + "TEXCOORD_0": 1421, + "TEXCOORD_1": 1422 + }, + "indices": 1424, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1423, + "NORMAL": 1420, + "POSITION": 1418, + "TANGENT": 1419, + "TEXCOORD_0": 1421, + "TEXCOORD_1": 1422 + }, + "indices": 1424, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2036, + "StartIndex": 5940, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1430, + "NORMAL": 1427, + "POSITION": 1425, + "TANGENT": 1426, + "TEXCOORD_0": 1428, + "TEXCOORD_1": 1429 + }, + "indices": 1431, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7659, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_gear_Root_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1437, + "NORMAL": 1434, + "POSITION": 1432, + "TANGENT": 1433, + "TEXCOORD_0": 1435, + "TEXCOORD_1": 1436 + }, + "indices": 1438, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_RightPart32_Decal_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1444, + "NORMAL": 1441, + "POSITION": 1439, + "TANGENT": 1440, + "TEXCOORD_0": 1442, + "TEXCOORD_1": 1443 + }, + "indices": 1445, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 248, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_18_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1451, + "NORMAL": 1448, + "POSITION": 1446, + "TANGENT": 1447, + "TEXCOORD_0": 1449, + "TEXCOORD_1": 1450 + }, + "indices": 1452, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 948, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_31_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1458, + "NORMAL": 1455, + "POSITION": 1453, + "TANGENT": 1454, + "TEXCOORD_0": 1456, + "TEXCOORD_1": 1457 + }, + "indices": 1459, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1465, + "NORMAL": 1462, + "POSITION": 1460, + "TANGENT": 1461, + "TEXCOORD_0": 1463, + "TEXCOORD_1": 1464 + }, + "indices": 1466, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_33_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1472, + "NORMAL": 1469, + "POSITION": 1467, + "TANGENT": 1468, + "TEXCOORD_0": 1470, + "TEXCOORD_1": 1471 + }, + "indices": 1473, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_34_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1479, + "NORMAL": 1476, + "POSITION": 1474, + "TANGENT": 1475, + "TEXCOORD_0": 1477, + "TEXCOORD_1": 1478 + }, + "indices": 1480, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 748, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_32_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1486, + "NORMAL": 1483, + "POSITION": 1481, + "TANGENT": 1482, + "TEXCOORD_0": 1484, + "TEXCOORD_1": 1485 + }, + "indices": 1487, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1328, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_30_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1493, + "NORMAL": 1490, + "POSITION": 1488, + "TANGENT": 1489, + "TEXCOORD_0": 1491, + "TEXCOORD_1": 1492 + }, + "indices": 1494, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 476, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_27_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1500, + "NORMAL": 1497, + "POSITION": 1495, + "TANGENT": 1496, + "TEXCOORD_0": 1498, + "TEXCOORD_1": 1499 + }, + "indices": 1501, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_28_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1507, + "NORMAL": 1504, + "POSITION": 1502, + "TANGENT": 1503, + "TEXCOORD_0": 1505, + "TEXCOORD_1": 1506 + }, + "indices": 1508, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_23_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1514, + "NORMAL": 1511, + "POSITION": 1509, + "TANGENT": 1510, + "TEXCOORD_0": 1512, + "TEXCOORD_1": 1513 + }, + "indices": 1515, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 656, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_26_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1521, + "NORMAL": 1518, + "POSITION": 1516, + "TANGENT": 1517, + "TEXCOORD_0": 1519, + "TEXCOORD_1": 1520 + }, + "indices": 1522, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 616, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_29_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1528, + "NORMAL": 1525, + "POSITION": 1523, + "TANGENT": 1524, + "TEXCOORD_0": 1526, + "TEXCOORD_1": 1527 + }, + "indices": 1529, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_19_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1535, + "NORMAL": 1532, + "POSITION": 1530, + "TANGENT": 1531, + "TEXCOORD_0": 1533, + "TEXCOORD_1": 1534 + }, + "indices": 1536, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 468, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_21_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1542, + "NORMAL": 1539, + "POSITION": 1537, + "TANGENT": 1538, + "TEXCOORD_0": 1540, + "TEXCOORD_1": 1541 + }, + "indices": 1543, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_20_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1549, + "NORMAL": 1546, + "POSITION": 1544, + "TANGENT": 1545, + "TEXCOORD_0": 1547, + "TEXCOORD_1": 1548 + }, + "indices": 1550, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 788, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_07_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1556, + "NORMAL": 1553, + "POSITION": 1551, + "TANGENT": 1552, + "TEXCOORD_0": 1554, + "TEXCOORD_1": 1555 + }, + "indices": 1557, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1830, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_10_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1563, + "NORMAL": 1560, + "POSITION": 1558, + "TANGENT": 1559, + "TEXCOORD_0": 1561, + "TEXCOORD_1": 1562 + }, + "indices": 1564, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 820, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_08_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1570, + "NORMAL": 1567, + "POSITION": 1565, + "TANGENT": 1566, + "TEXCOORD_0": 1568, + "TEXCOORD_1": 1569 + }, + "indices": 1571, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 27862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_09_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1577, + "NORMAL": 1574, + "POSITION": 1572, + "TANGENT": 1573, + "TEXCOORD_0": 1575, + "TEXCOORD_1": 1576 + }, + "indices": 1578, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 428, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_35_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1584, + "NORMAL": 1581, + "POSITION": 1579, + "TANGENT": 1580, + "TEXCOORD_0": 1582, + "TEXCOORD_1": 1583 + }, + "indices": 1585, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 404, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_36_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1591, + "NORMAL": 1588, + "POSITION": 1586, + "TANGENT": 1587, + "TEXCOORD_0": 1589, + "TEXCOORD_1": 1590 + }, + "indices": 1592, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1056, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_06_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1598, + "NORMAL": 1595, + "POSITION": 1593, + "TANGENT": 1594, + "TEXCOORD_0": 1596, + "TEXCOORD_1": 1597 + }, + "indices": 1599, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_LWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1605, + "NORMAL": 1602, + "POSITION": 1600, + "TANGENT": 1601, + "TEXCOORD_0": 1603, + "TEXCOORD_1": 1604 + }, + "indices": 1606, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_LWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1612, + "NORMAL": 1609, + "POSITION": 1607, + "TANGENT": 1608, + "TEXCOORD_0": 1610, + "TEXCOORD_1": 1611 + }, + "indices": 1613, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_LWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1619, + "NORMAL": 1616, + "POSITION": 1614, + "TANGENT": 1615, + "TEXCOORD_0": 1617, + "TEXCOORD_1": 1618 + }, + "indices": 1620, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_LWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1626, + "NORMAL": 1623, + "POSITION": 1621, + "TANGENT": 1622, + "TEXCOORD_0": 1624, + "TEXCOORD_1": 1625 + }, + "indices": 1627, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_14_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1633, + "NORMAL": 1630, + "POSITION": 1628, + "TANGENT": 1629, + "TEXCOORD_0": 1631, + "TEXCOORD_1": 1632 + }, + "indices": 1634, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_05_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1640, + "NORMAL": 1637, + "POSITION": 1635, + "TANGENT": 1636, + "TEXCOORD_0": 1638, + "TEXCOORD_1": 1639 + }, + "indices": 1641, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_06_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1647, + "NORMAL": 1644, + "POSITION": 1642, + "TANGENT": 1643, + "TEXCOORD_0": 1645, + "TEXCOORD_1": 1646 + }, + "indices": 1648, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 600, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_15_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1654, + "NORMAL": 1651, + "POSITION": 1649, + "TANGENT": 1650, + "TEXCOORD_0": 1652, + "TEXCOORD_1": 1653 + }, + "indices": 1655, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1132, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_16_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1661, + "NORMAL": 1658, + "POSITION": 1656, + "TANGENT": 1657, + "TEXCOORD_0": 1659, + "TEXCOORD_1": 1660 + }, + "indices": 1662, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 455, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1668, + "NORMAL": 1665, + "POSITION": 1663, + "TANGENT": 1664, + "TEXCOORD_0": 1666, + "TEXCOORD_1": 1667 + }, + "indices": 1669, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 62, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door02_Decals_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1675, + "NORMAL": 1672, + "POSITION": 1670, + "TANGENT": 1671, + "TEXCOORD_0": 1673, + "TEXCOORD_1": 1674 + }, + "indices": 1676, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 62, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door02_Decals_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1682, + "NORMAL": 1679, + "POSITION": 1677, + "TANGENT": 1678, + "TEXCOORD_0": 1680, + "TEXCOORD_1": 1681 + }, + "indices": 1683, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1052, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door03_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1689, + "NORMAL": 1686, + "POSITION": 1684, + "TANGENT": 1685, + "TEXCOORD_0": 1687, + "TEXCOORD_1": 1688 + }, + "indices": 1690, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 850, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1696, + "NORMAL": 1693, + "POSITION": 1691, + "TANGENT": 1692, + "TEXCOORD_0": 1694, + "TEXCOORD_1": 1695 + }, + "indices": 1697, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door04_Decals_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1703, + "NORMAL": 1700, + "POSITION": 1698, + "TANGENT": 1699, + "TEXCOORD_0": 1701, + "TEXCOORD_1": 1702 + }, + "indices": 1704, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 660, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1703, + "NORMAL": 1700, + "POSITION": 1698, + "TANGENT": 1699, + "TEXCOORD_0": 1701, + "TEXCOORD_1": 1702 + }, + "indices": 1704, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 240, + "StartIndex": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_1_blurred_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1710, + "NORMAL": 1707, + "POSITION": 1705, + "TANGENT": 1706, + "TEXCOORD_0": 1708, + "TEXCOORD_1": 1709 + }, + "indices": 1711, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 660, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1710, + "NORMAL": 1707, + "POSITION": 1705, + "TANGENT": 1706, + "TEXCOORD_0": 1708, + "TEXCOORD_1": 1709 + }, + "indices": 1711, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 180, + "StartIndex": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_1_slow_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1717, + "NORMAL": 1714, + "POSITION": 1712, + "TANGENT": 1713, + "TEXCOORD_0": 1715, + "TEXCOORD_1": 1716 + }, + "indices": 1718, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5700, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_1_Still_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1724, + "NORMAL": 1721, + "POSITION": 1719, + "TANGENT": 1720, + "TEXCOORD_0": 1722, + "TEXCOORD_1": 1723 + }, + "indices": 1725, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12316, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1724, + "NORMAL": 1721, + "POSITION": 1719, + "TANGENT": 1720, + "TEXCOORD_0": 1722, + "TEXCOORD_1": 1723 + }, + "indices": 1725, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 36948, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1724, + "NORMAL": 1721, + "POSITION": 1719, + "TANGENT": 1720, + "TEXCOORD_0": 1722, + "TEXCOORD_1": 1723 + }, + "indices": 1725, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 38340, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Duct_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1731, + "NORMAL": 1728, + "POSITION": 1726, + "TANGENT": 1727, + "TEXCOORD_0": 1729, + "TEXCOORD_1": 1730 + }, + "indices": 1732, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6524, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Details_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3012, + "JOINTS_0": 3010, + "NORMAL": 3007, + "POSITION": 3005, + "TANGENT": 3006, + "TEXCOORD_0": 3008, + "TEXCOORD_1": 3009, + "WEIGHTS_0": 3011 + }, + "indices": 3013, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 16362, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3021, + "JOINTS_0": 3019, + "NORMAL": 3016, + "POSITION": 3014, + "TANGENT": 3015, + "TEXCOORD_0": 3017, + "TEXCOORD_1": 3018, + "WEIGHTS_0": 3020 + }, + "indices": 3022, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4266, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3030, + "JOINTS_0": 3028, + "NORMAL": 3025, + "POSITION": 3023, + "TANGENT": 3024, + "TEXCOORD_0": 3026, + "TEXCOORD_1": 3027, + "WEIGHTS_0": 3029 + }, + "indices": 3031, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 142, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1738, + "NORMAL": 1735, + "POSITION": 1733, + "TANGENT": 1734, + "TEXCOORD_0": 1736, + "TEXCOORD_1": 1737 + }, + "indices": 1739, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_LEFT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1745, + "NORMAL": 1742, + "POSITION": 1740, + "TANGENT": 1741, + "TEXCOORD_0": 1743, + "TEXCOORD_1": 1744 + }, + "indices": 1746, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1745, + "NORMAL": 1742, + "POSITION": 1740, + "TANGENT": 1741, + "TEXCOORD_0": 1743, + "TEXCOORD_1": 1744 + }, + "indices": 1746, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINEL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1752, + "NORMAL": 1749, + "POSITION": 1747, + "TANGENT": 1748, + "TEXCOORD_0": 1750, + "TEXCOORD_1": 1751 + }, + "indices": 1753, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 32, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_EngA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1759, + "NORMAL": 1756, + "POSITION": 1754, + "TANGENT": 1755, + "TEXCOORD_0": 1757, + "TEXCOORD_1": 1758 + }, + "indices": 1760, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 594, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1766, + "NORMAL": 1763, + "POSITION": 1761, + "TANGENT": 1762, + "TEXCOORD_0": 1764, + "TEXCOORD_1": 1765 + }, + "indices": 1767, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 594, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_3_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1773, + "NORMAL": 1770, + "POSITION": 1768, + "TANGENT": 1769, + "TEXCOORD_0": 1771, + "TEXCOORD_1": 1772 + }, + "indices": 1774, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 596, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1780, + "NORMAL": 1777, + "POSITION": 1775, + "TANGENT": 1776, + "TEXCOORD_0": 1778, + "TEXCOORD_1": 1779 + }, + "indices": 1781, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_03_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1787, + "NORMAL": 1784, + "POSITION": 1782, + "TANGENT": 1783, + "TEXCOORD_0": 1785, + "TEXCOORD_1": 1786 + }, + "indices": 1788, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1794, + "NORMAL": 1791, + "POSITION": 1789, + "TANGENT": 1790, + "TEXCOORD_0": 1792, + "TEXCOORD_1": 1793 + }, + "indices": 1795, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1801, + "NORMAL": 1798, + "POSITION": 1796, + "TANGENT": 1797, + "TEXCOORD_0": 1799, + "TEXCOORD_1": 1800 + }, + "indices": 1802, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1808, + "NORMAL": 1805, + "POSITION": 1803, + "TANGENT": 1804, + "TEXCOORD_0": 1806, + "TEXCOORD_1": 1807 + }, + "indices": 1809, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 268, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1808, + "NORMAL": 1805, + "POSITION": 1803, + "TANGENT": 1804, + "TEXCOORD_0": 1806, + "TEXCOORD_1": 1807 + }, + "indices": 1809, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 78, + "StartIndex": 804, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_wing_landinglight_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1815, + "NORMAL": 1812, + "POSITION": 1810, + "TANGENT": 1811, + "TEXCOORD_0": 1813, + "TEXCOORD_1": 1814 + }, + "indices": 1816, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1822, + "NORMAL": 1819, + "POSITION": 1817, + "TANGENT": 1818, + "TEXCOORD_0": 1820, + "TEXCOORD_1": 1821 + }, + "indices": 1823, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 272, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1829, + "NORMAL": 1826, + "POSITION": 1824, + "TANGENT": 1825, + "TEXCOORD_0": 1827, + "TEXCOORD_1": 1828 + }, + "indices": 1830, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1246, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1829, + "NORMAL": 1826, + "POSITION": 1824, + "TANGENT": 1825, + "TEXCOORD_0": 1827, + "TEXCOORD_1": 1828 + }, + "indices": 1830, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "StartIndex": 3738, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1836, + "NORMAL": 1833, + "POSITION": 1831, + "TANGENT": 1832, + "TEXCOORD_0": 1834, + "TEXCOORD_1": 1835 + }, + "indices": 1837, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door01_Decals_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1843, + "NORMAL": 1840, + "POSITION": 1838, + "TANGENT": 1839, + "TEXCOORD_0": 1841, + "TEXCOORD_1": 1842 + }, + "indices": 1844, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 456, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Body_front_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1850, + "NORMAL": 1847, + "POSITION": 1845, + "TANGENT": 1846, + "TEXCOORD_0": 1848, + "TEXCOORD_1": 1849 + }, + "indices": 1851, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2652, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_windowGlass_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 25764, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24388, + "StartIndex": 77292, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 18218, + "StartIndex": 150456, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1732, + "StartIndex": 205110, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 65530, + "PrimitiveCount": 32792, + "StartIndex": 210306, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131058, + "PrimitiveCount": 33954, + "StartIndex": 308682, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131058, + "PrimitiveCount": 206, + "StartIndex": 410544, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131058, + "PrimitiveCount": 192, + "StartIndex": 411162, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131058, + "PrimitiveCount": 484, + "StartIndex": 411738, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131058, + "PrimitiveCount": 296, + "StartIndex": 413190, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1857, + "NORMAL": 1854, + "POSITION": 1852, + "TANGENT": 1853, + "TEXCOORD_0": 1855, + "TEXCOORD_1": 1856 + }, + "indices": 1858, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 196588, + "PrimitiveCount": 1204, + "StartIndex": 414078, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Body_front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1864, + "NORMAL": 1861, + "POSITION": 1859, + "TANGENT": 1860, + "TEXCOORD_0": 1862, + "TEXCOORD_1": 1863 + }, + "indices": 1865, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 17508, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart16_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1871, + "NORMAL": 1868, + "POSITION": 1866, + "TANGENT": 1867, + "TEXCOORD_0": 1869, + "TEXCOORD_1": 1870 + }, + "indices": 1872, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1562, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart10_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1878, + "NORMAL": 1875, + "POSITION": 1873, + "TANGENT": 1874, + "TEXCOORD_0": 1876, + "TEXCOORD_1": 1877 + }, + "indices": 1879, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart11_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1885, + "NORMAL": 1882, + "POSITION": 1880, + "TANGENT": 1881, + "TEXCOORD_0": 1883, + "TEXCOORD_1": 1884 + }, + "indices": 1886, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1562, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart09_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1892, + "NORMAL": 1889, + "POSITION": 1887, + "TANGENT": 1888, + "TEXCOORD_0": 1890, + "TEXCOORD_1": 1891 + }, + "indices": 1893, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart12_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1899, + "NORMAL": 1896, + "POSITION": 1894, + "TANGENT": 1895, + "TEXCOORD_0": 1897, + "TEXCOORD_1": 1898 + }, + "indices": 1900, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1422, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Gear_Wheel_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1906, + "NORMAL": 1903, + "POSITION": 1901, + "TANGENT": 1902, + "TEXCOORD_0": 1904, + "TEXCOORD_1": 1905 + }, + "indices": 1907, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 836, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart13_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1913, + "NORMAL": 1910, + "POSITION": 1908, + "TANGENT": 1909, + "TEXCOORD_0": 1911, + "TEXCOORD_1": 1912 + }, + "indices": 1914, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1132, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart14_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1920, + "NORMAL": 1917, + "POSITION": 1915, + "TANGENT": 1916, + "TEXCOORD_0": 1918, + "TEXCOORD_1": 1919 + }, + "indices": 1921, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8300, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Wheel_Nose_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1927, + "NORMAL": 1924, + "POSITION": 1922, + "TANGENT": 1923, + "TEXCOORD_0": 1925, + "TEXCOORD_1": 1926 + }, + "indices": 1928, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Wheel_Nose_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1934, + "NORMAL": 1931, + "POSITION": 1929, + "TANGENT": 1930, + "TEXCOORD_0": 1932, + "TEXCOORD_1": 1933 + }, + "indices": 1935, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 428, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart15_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3039, + "JOINTS_0": 3037, + "NORMAL": 3034, + "POSITION": 3032, + "TANGENT": 3033, + "TEXCOORD_0": 3035, + "TEXCOORD_1": 3036, + "WEIGHTS_0": 3038 + }, + "indices": 3040, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 758, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_gear_pipe_1_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1941, + "NORMAL": 1938, + "POSITION": 1936, + "TANGENT": 1937, + "TEXCOORD_0": 1939, + "TEXCOORD_1": 1940 + }, + "indices": 1942, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 148, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Left02_hydraulic02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1948, + "NORMAL": 1945, + "POSITION": 1943, + "TANGENT": 1944, + "TEXCOORD_0": 1946, + "TEXCOORD_1": 1947 + }, + "indices": 1949, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 340, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart07_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1955, + "NORMAL": 1952, + "POSITION": 1950, + "TANGENT": 1951, + "TEXCOORD_0": 1953, + "TEXCOORD_1": 1954 + }, + "indices": 1956, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 236, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart04_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1962, + "NORMAL": 1959, + "POSITION": 1957, + "TANGENT": 1958, + "TEXCOORD_0": 1960, + "TEXCOORD_1": 1961 + }, + "indices": 1963, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 160, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart05_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1969, + "NORMAL": 1966, + "POSITION": 1964, + "TANGENT": 1965, + "TEXCOORD_0": 1967, + "TEXCOORD_1": 1968 + }, + "indices": 1970, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 16, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart16_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1976, + "NORMAL": 1973, + "POSITION": 1971, + "TANGENT": 1972, + "TEXCOORD_0": 1974, + "TEXCOORD_1": 1975 + }, + "indices": 1977, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_cgear_landinglight_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1983, + "NORMAL": 1980, + "POSITION": 1978, + "TANGENT": 1979, + "TEXCOORD_0": 1981, + "TEXCOORD_1": 1982 + }, + "indices": 1984, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 148, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Right02_hydraulic02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1990, + "NORMAL": 1987, + "POSITION": 1985, + "TANGENT": 1986, + "TEXCOORD_0": 1988, + "TEXCOORD_1": 1989 + }, + "indices": 1991, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1997, + "NORMAL": 1994, + "POSITION": 1992, + "TANGENT": 1993, + "TEXCOORD_0": 1995, + "TEXCOORD_1": 1996 + }, + "indices": 1998, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2004, + "NORMAL": 2001, + "POSITION": 1999, + "TANGENT": 2000, + "TEXCOORD_0": 2002, + "TEXCOORD_1": 2003 + }, + "indices": 2005, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2011, + "NORMAL": 2008, + "POSITION": 2006, + "TANGENT": 2007, + "TEXCOORD_0": 2009, + "TEXCOORD_1": 2010 + }, + "indices": 2012, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2018, + "NORMAL": 2015, + "POSITION": 2013, + "TANGENT": 2014, + "TEXCOORD_0": 2016, + "TEXCOORD_1": 2017 + }, + "indices": 2019, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2025, + "NORMAL": 2022, + "POSITION": 2020, + "TANGENT": 2021, + "TEXCOORD_0": 2023, + "TEXCOORD_1": 2024 + }, + "indices": 2026, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 322, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2032, + "NORMAL": 2029, + "POSITION": 2027, + "TANGENT": 2028, + "TEXCOORD_0": 2030, + "TEXCOORD_1": 2031 + }, + "indices": 2033, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 88, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart03_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2039, + "NORMAL": 2036, + "POSITION": 2034, + "TANGENT": 2035, + "TEXCOORD_0": 2037, + "TEXCOORD_1": 2038 + }, + "indices": 2040, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 330, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_NosePart06_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2046, + "NORMAL": 2043, + "POSITION": 2041, + "TANGENT": 2042, + "TEXCOORD_0": 2044, + "TEXCOORD_1": 2045 + }, + "indices": 2047, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2053, + "NORMAL": 2050, + "POSITION": 2048, + "TANGENT": 2049, + "TEXCOORD_0": 2051, + "TEXCOORD_1": 2052 + }, + "indices": 2054, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2472, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2060, + "NORMAL": 2057, + "POSITION": 2055, + "TANGENT": 2056, + "TEXCOORD_0": 2058, + "TEXCOORD_1": 2059 + }, + "indices": 2061, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2360, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2060, + "NORMAL": 2057, + "POSITION": 2055, + "TANGENT": 2056, + "TEXCOORD_0": 2058, + "TEXCOORD_1": 2059 + }, + "indices": 2061, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1540, + "StartIndex": 7080, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Trim_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2067, + "NORMAL": 2064, + "POSITION": 2062, + "TANGENT": 2063, + "TEXCOORD_0": 2065, + "TEXCOORD_1": 2066 + }, + "indices": 2068, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2067, + "NORMAL": 2064, + "POSITION": 2062, + "TANGENT": 2063, + "TEXCOORD_0": 2065, + "TEXCOORD_1": 2066 + }, + "indices": 2068, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2074, + "NORMAL": 2071, + "POSITION": 2069, + "TANGENT": 2070, + "TEXCOORD_0": 2072, + "TEXCOORD_1": 2073 + }, + "indices": 2075, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2074, + "NORMAL": 2071, + "POSITION": 2069, + "TANGENT": 2070, + "TEXCOORD_0": 2072, + "TEXCOORD_1": 2073 + }, + "indices": 2075, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2081, + "NORMAL": 2078, + "POSITION": 2076, + "TANGENT": 2077, + "TEXCOORD_0": 2079, + "TEXCOORD_1": 2080 + }, + "indices": 2082, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 722, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_ElevatorTrimR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2088, + "NORMAL": 2085, + "POSITION": 2083, + "TANGENT": 2084, + "TEXCOORD_0": 2086, + "TEXCOORD_1": 2087 + }, + "indices": 2089, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 455, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2088, + "NORMAL": 2085, + "POSITION": 2083, + "TANGENT": 2084, + "TEXCOORD_0": 2086, + "TEXCOORD_1": 2087 + }, + "indices": 2089, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 124, + "StartIndex": 1365, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2095, + "NORMAL": 2092, + "POSITION": 2090, + "TANGENT": 2091, + "TEXCOORD_0": 2093, + "TEXCOORD_1": 2094 + }, + "indices": 2096, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1052, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door03_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2102, + "NORMAL": 2099, + "POSITION": 2097, + "TANGENT": 2098, + "TEXCOORD_0": 2100, + "TEXCOORD_1": 2101 + }, + "indices": 2103, + "material": 36, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12316, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2102, + "NORMAL": 2099, + "POSITION": 2097, + "TANGENT": 2098, + "TEXCOORD_0": 2100, + "TEXCOORD_1": 2101 + }, + "indices": 2103, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 36948, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2102, + "NORMAL": 2099, + "POSITION": 2097, + "TANGENT": 2098, + "TEXCOORD_0": 2100, + "TEXCOORD_1": 2101 + }, + "indices": 2103, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 38340, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Duct_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2109, + "NORMAL": 2106, + "POSITION": 2104, + "TANGENT": 2105, + "TEXCOORD_0": 2107, + "TEXCOORD_1": 2108 + }, + "indices": 2110, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4584, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Details_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2116, + "NORMAL": 2113, + "POSITION": 2111, + "TANGENT": 2112, + "TEXCOORD_0": 2114, + "TEXCOORD_1": 2115 + }, + "indices": 2117, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5700, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_2_Still_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2123, + "NORMAL": 2120, + "POSITION": 2118, + "TANGENT": 2119, + "TEXCOORD_0": 2121, + "TEXCOORD_1": 2122 + }, + "indices": 2124, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 660, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2123, + "NORMAL": 2120, + "POSITION": 2118, + "TANGENT": 2119, + "TEXCOORD_0": 2121, + "TEXCOORD_1": 2122 + }, + "indices": 2124, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 240, + "StartIndex": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_2_blurred_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2130, + "NORMAL": 2127, + "POSITION": 2125, + "TANGENT": 2126, + "TEXCOORD_0": 2128, + "TEXCOORD_1": 2129 + }, + "indices": 2131, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 660, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2130, + "NORMAL": 2127, + "POSITION": 2125, + "TANGENT": 2126, + "TEXCOORD_0": 2128, + "TEXCOORD_1": 2129 + }, + "indices": 2131, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 180, + "StartIndex": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_2_slow_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3048, + "JOINTS_0": 3046, + "NORMAL": 3043, + "POSITION": 3041, + "TANGENT": 3042, + "TEXCOORD_0": 3044, + "TEXCOORD_1": 3045, + "WEIGHTS_0": 3047 + }, + "indices": 3049, + "material": 36, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 16362, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3057, + "JOINTS_0": 3055, + "NORMAL": 3052, + "POSITION": 3050, + "TANGENT": 3051, + "TEXCOORD_0": 3053, + "TEXCOORD_1": 3054, + "WEIGHTS_0": 3056 + }, + "indices": 3058, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4266, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3066, + "JOINTS_0": 3064, + "NORMAL": 3061, + "POSITION": 3059, + "TANGENT": 3060, + "TEXCOORD_0": 3062, + "TEXCOORD_1": 3063, + "WEIGHTS_0": 3065 + }, + "indices": 3067, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 154, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Engine_Body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2137, + "NORMAL": 2134, + "POSITION": 2132, + "TANGENT": 2133, + "TEXCOORD_0": 2135, + "TEXCOORD_1": 2136 + }, + "indices": 2138, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_RIGHT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2144, + "NORMAL": 2141, + "POSITION": 2139, + "TANGENT": 2140, + "TEXCOORD_0": 2142, + "TEXCOORD_1": 2143 + }, + "indices": 2145, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2144, + "NORMAL": 2141, + "POSITION": 2139, + "TANGENT": 2140, + "TEXCOORD_0": 2142, + "TEXCOORD_1": 2143 + }, + "indices": 2145, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINER" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2151, + "NORMAL": 2148, + "POSITION": 2146, + "TANGENT": 2147, + "TEXCOORD_0": 2149, + "TEXCOORD_1": 2150 + }, + "indices": 2152, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 32, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_EngB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2158, + "NORMAL": 2155, + "POSITION": 2153, + "TANGENT": 2154, + "TEXCOORD_0": 2156, + "TEXCOORD_1": 2157 + }, + "indices": 2159, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 546, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2158, + "NORMAL": 2155, + "POSITION": 2153, + "TANGENT": 2154, + "TEXCOORD_0": 2156, + "TEXCOORD_1": 2157 + }, + "indices": 2159, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "StartIndex": 1638, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FlapsKrueger_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2165, + "NORMAL": 2162, + "POSITION": 2160, + "TANGENT": 2161, + "TEXCOORD_0": 2163, + "TEXCOORD_1": 2164 + }, + "indices": 2166, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2172, + "NORMAL": 2169, + "POSITION": 2167, + "TANGENT": 2168, + "TEXCOORD_0": 2170, + "TEXCOORD_1": 2171 + }, + "indices": 2173, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2179, + "NORMAL": 2176, + "POSITION": 2174, + "TANGENT": 2175, + "TEXCOORD_0": 2177, + "TEXCOORD_1": 2178 + }, + "indices": 2180, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1980, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2179, + "NORMAL": 2176, + "POSITION": 2174, + "TANGENT": 2175, + "TEXCOORD_0": 2177, + "TEXCOORD_1": 2178 + }, + "indices": 2180, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2036, + "StartIndex": 5940, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2186, + "NORMAL": 2183, + "POSITION": 2181, + "TANGENT": 2182, + "TEXCOORD_0": 2184, + "TEXCOORD_1": 2185 + }, + "indices": 2187, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1132, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_16_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2193, + "NORMAL": 2190, + "POSITION": 2188, + "TANGENT": 2189, + "TEXCOORD_0": 2191, + "TEXCOORD_1": 2192 + }, + "indices": 2194, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 600, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_15_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2200, + "NORMAL": 2197, + "POSITION": 2195, + "TANGENT": 2196, + "TEXCOORD_0": 2198, + "TEXCOORD_1": 2199 + }, + "indices": 2201, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 594, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2207, + "NORMAL": 2204, + "POSITION": 2202, + "TANGENT": 2203, + "TEXCOORD_0": 2205, + "TEXCOORD_1": 2206 + }, + "indices": 2208, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 596, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2214, + "NORMAL": 2211, + "POSITION": 2209, + "TANGENT": 2210, + "TEXCOORD_0": 2212, + "TEXCOORD_1": 2213 + }, + "indices": 2215, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 594, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_1_3_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2221, + "NORMAL": 2218, + "POSITION": 2216, + "TANGENT": 2217, + "TEXCOORD_0": 2219, + "TEXCOORD_1": 2220 + }, + "indices": 2222, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2228, + "NORMAL": 2225, + "POSITION": 2223, + "TANGENT": 2224, + "TEXCOORD_0": 2226, + "TEXCOORD_1": 2227 + }, + "indices": 2229, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2235, + "NORMAL": 2232, + "POSITION": 2230, + "TANGENT": 2231, + "TEXCOORD_0": 2233, + "TEXCOORD_1": 2234 + }, + "indices": 2236, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_03_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2242, + "NORMAL": 2239, + "POSITION": 2237, + "TANGENT": 2238, + "TEXCOORD_0": 2240, + "TEXCOORD_1": 2241 + }, + "indices": 2243, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2249, + "NORMAL": 2246, + "POSITION": 2244, + "TANGENT": 2245, + "TEXCOORD_0": 2247, + "TEXCOORD_1": 2248 + }, + "indices": 2250, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_05_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2256, + "NORMAL": 2253, + "POSITION": 2251, + "TANGENT": 2252, + "TEXCOORD_0": 2254, + "TEXCOORD_1": 2255 + }, + "indices": 2257, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_06_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2263, + "NORMAL": 2260, + "POSITION": 2258, + "TANGENT": 2259, + "TEXCOORD_0": 2261, + "TEXCOORD_1": 2262 + }, + "indices": 2264, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_18_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2270, + "NORMAL": 2267, + "POSITION": 2265, + "TANGENT": 2266, + "TEXCOORD_0": 2268, + "TEXCOORD_1": 2269 + }, + "indices": 2271, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_09_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2277, + "NORMAL": 2274, + "POSITION": 2272, + "TANGENT": 2273, + "TEXCOORD_0": 2275, + "TEXCOORD_1": 2276 + }, + "indices": 2278, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1531, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2277, + "NORMAL": 2274, + "POSITION": 2272, + "TANGENT": 2273, + "TEXCOORD_0": 2275, + "TEXCOORD_1": 2276 + }, + "indices": 2278, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 342, + "StartIndex": 4593, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_1_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2284, + "NORMAL": 2281, + "POSITION": 2279, + "TANGENT": 2280, + "TEXCOORD_0": 2282, + "TEXCOORD_1": 2283 + }, + "indices": 2285, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_07_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2291, + "NORMAL": 2288, + "POSITION": 2286, + "TANGENT": 2287, + "TEXCOORD_0": 2289, + "TEXCOORD_1": 2290 + }, + "indices": 2292, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_08_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2298, + "NORMAL": 2295, + "POSITION": 2293, + "TANGENT": 2294, + "TEXCOORD_0": 2296, + "TEXCOORD_1": 2297 + }, + "indices": 2299, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_10_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2305, + "NORMAL": 2302, + "POSITION": 2300, + "TANGENT": 2301, + "TEXCOORD_0": 2303, + "TEXCOORD_1": 2304 + }, + "indices": 2306, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_19_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2312, + "NORMAL": 2309, + "POSITION": 2307, + "TANGENT": 2308, + "TEXCOORD_0": 2310, + "TEXCOORD_1": 2311 + }, + "indices": 2313, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_11_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2319, + "NORMAL": 2316, + "POSITION": 2314, + "TANGENT": 2315, + "TEXCOORD_0": 2317, + "TEXCOORD_1": 2318 + }, + "indices": 2320, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_13_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2326, + "NORMAL": 2323, + "POSITION": 2321, + "TANGENT": 2322, + "TEXCOORD_0": 2324, + "TEXCOORD_1": 2325 + }, + "indices": 2327, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_15_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2333, + "NORMAL": 2330, + "POSITION": 2328, + "TANGENT": 2329, + "TEXCOORD_0": 2331, + "TEXCOORD_1": 2332 + }, + "indices": 2334, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_12_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2340, + "NORMAL": 2337, + "POSITION": 2335, + "TANGENT": 2336, + "TEXCOORD_0": 2338, + "TEXCOORD_1": 2339 + }, + "indices": 2341, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_14_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2347, + "NORMAL": 2344, + "POSITION": 2342, + "TANGENT": 2343, + "TEXCOORD_0": 2345, + "TEXCOORD_1": 2346 + }, + "indices": 2348, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_flap_hydrolics_16_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2354, + "NORMAL": 2351, + "POSITION": 2349, + "TANGENT": 2350, + "TEXCOORD_0": 2352, + "TEXCOORD_1": 2353 + }, + "indices": 2355, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2361, + "NORMAL": 2358, + "POSITION": 2356, + "TANGENT": 2357, + "TEXCOORD_0": 2359, + "TEXCOORD_1": 2360 + }, + "indices": 2362, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2368, + "NORMAL": 2365, + "POSITION": 2363, + "TANGENT": 2364, + "TEXCOORD_0": 2366, + "TEXCOORD_1": 2367 + }, + "indices": 2369, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2375, + "NORMAL": 2372, + "POSITION": 2370, + "TANGENT": 2371, + "TEXCOORD_0": 2373, + "TEXCOORD_1": 2374 + }, + "indices": 2376, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 234, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3075, + "JOINTS_0": 3073, + "NORMAL": 3070, + "POSITION": 3068, + "TANGENT": 3069, + "TEXCOORD_0": 3071, + "TEXCOORD_1": 3072, + "WEIGHTS_0": 3074 + }, + "indices": 3076, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2326, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Spoiler_2_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2382, + "NORMAL": 2379, + "POSITION": 2377, + "TANGENT": 2378, + "TEXCOORD_0": 2380, + "TEXCOORD_1": 2381 + }, + "indices": 2383, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 850, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2389, + "NORMAL": 2386, + "POSITION": 2384, + "TANGENT": 2385, + "TEXCOORD_0": 2387, + "TEXCOORD_1": 2388 + }, + "indices": 2390, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door04_Decals_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2396, + "NORMAL": 2393, + "POSITION": 2391, + "TANGENT": 2392, + "TEXCOORD_0": 2394, + "TEXCOORD_1": 2395 + }, + "indices": 2397, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 788, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_07_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2403, + "NORMAL": 2400, + "POSITION": 2398, + "TANGENT": 2399, + "TEXCOORD_0": 2401, + "TEXCOORD_1": 2402 + }, + "indices": 2404, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 820, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_08_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2410, + "NORMAL": 2407, + "POSITION": 2405, + "TANGENT": 2406, + "TEXCOORD_0": 2408, + "TEXCOORD_1": 2409 + }, + "indices": 2411, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1056, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_06_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2417, + "NORMAL": 2414, + "POSITION": 2412, + "TANGENT": 2413, + "TEXCOORD_0": 2415, + "TEXCOORD_1": 2416 + }, + "indices": 2418, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 428, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_35_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2424, + "NORMAL": 2421, + "POSITION": 2419, + "TANGENT": 2420, + "TEXCOORD_0": 2422, + "TEXCOORD_1": 2423 + }, + "indices": 2425, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 404, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_36_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2431, + "NORMAL": 2428, + "POSITION": 2426, + "TANGENT": 2427, + "TEXCOORD_0": 2429, + "TEXCOORD_1": 2430 + }, + "indices": 2432, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_RWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2438, + "NORMAL": 2435, + "POSITION": 2433, + "TANGENT": 2434, + "TEXCOORD_0": 2436, + "TEXCOORD_1": 2437 + }, + "indices": 2439, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_RWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2445, + "NORMAL": 2442, + "POSITION": 2440, + "TANGENT": 2441, + "TEXCOORD_0": 2443, + "TEXCOORD_1": 2444 + }, + "indices": 2446, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_RWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2452, + "NORMAL": 2449, + "POSITION": 2447, + "TANGENT": 2448, + "TEXCOORD_0": 2450, + "TEXCOORD_1": 2451 + }, + "indices": 2453, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_RWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2459, + "NORMAL": 2456, + "POSITION": 2454, + "TANGENT": 2455, + "TEXCOORD_0": 2457, + "TEXCOORD_1": 2458 + }, + "indices": 2460, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 27862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_09_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2466, + "NORMAL": 2463, + "POSITION": 2461, + "TANGENT": 2462, + "TEXCOORD_0": 2464, + "TEXCOORD_1": 2465 + }, + "indices": 2467, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1830, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_10_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2473, + "NORMAL": 2470, + "POSITION": 2468, + "TANGENT": 2469, + "TEXCOORD_0": 2471, + "TEXCOORD_1": 2472 + }, + "indices": 2474, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_14_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2480, + "NORMAL": 2477, + "POSITION": 2475, + "TANGENT": 2476, + "TEXCOORD_0": 2478, + "TEXCOORD_1": 2479 + }, + "indices": 2481, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 248, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_18_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2487, + "NORMAL": 2484, + "POSITION": 2482, + "TANGENT": 2483, + "TEXCOORD_0": 2485, + "TEXCOORD_1": 2486 + }, + "indices": 2488, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_19_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2494, + "NORMAL": 2491, + "POSITION": 2489, + "TANGENT": 2490, + "TEXCOORD_0": 2492, + "TEXCOORD_1": 2493 + }, + "indices": 2495, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 468, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_21_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2501, + "NORMAL": 2498, + "POSITION": 2496, + "TANGENT": 2497, + "TEXCOORD_0": 2499, + "TEXCOORD_1": 2500 + }, + "indices": 2502, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_20_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2508, + "NORMAL": 2505, + "POSITION": 2503, + "TANGENT": 2504, + "TEXCOORD_0": 2506, + "TEXCOORD_1": 2507 + }, + "indices": 2509, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2515, + "NORMAL": 2512, + "POSITION": 2510, + "TANGENT": 2511, + "TEXCOORD_0": 2513, + "TEXCOORD_1": 2514 + }, + "indices": 2516, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 948, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_31_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2522, + "NORMAL": 2519, + "POSITION": 2517, + "TANGENT": 2518, + "TEXCOORD_0": 2520, + "TEXCOORD_1": 2521 + }, + "indices": 2523, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_33_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2529, + "NORMAL": 2526, + "POSITION": 2524, + "TANGENT": 2525, + "TEXCOORD_0": 2527, + "TEXCOORD_1": 2528 + }, + "indices": 2530, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_23_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2536, + "NORMAL": 2533, + "POSITION": 2531, + "TANGENT": 2532, + "TEXCOORD_0": 2534, + "TEXCOORD_1": 2535 + }, + "indices": 2537, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_28_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2543, + "NORMAL": 2540, + "POSITION": 2538, + "TANGENT": 2539, + "TEXCOORD_0": 2541, + "TEXCOORD_1": 2542 + }, + "indices": 2544, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 656, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_26_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2550, + "NORMAL": 2547, + "POSITION": 2545, + "TANGENT": 2546, + "TEXCOORD_0": 2548, + "TEXCOORD_1": 2549 + }, + "indices": 2551, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 476, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_27_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2557, + "NORMAL": 2554, + "POSITION": 2552, + "TANGENT": 2553, + "TEXCOORD_0": 2555, + "TEXCOORD_1": 2556 + }, + "indices": 2558, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 616, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_29_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2564, + "NORMAL": 2561, + "POSITION": 2559, + "TANGENT": 2560, + "TEXCOORD_0": 2562, + "TEXCOORD_1": 2563 + }, + "indices": 2565, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1328, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_30_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2571, + "NORMAL": 2568, + "POSITION": 2566, + "TANGENT": 2567, + "TEXCOORD_0": 2569, + "TEXCOORD_1": 2570 + }, + "indices": 2572, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 748, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_32_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2578, + "NORMAL": 2575, + "POSITION": 2573, + "TANGENT": 2574, + "TEXCOORD_0": 2576, + "TEXCOORD_1": 2577 + }, + "indices": 2579, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_34_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2585, + "NORMAL": 2582, + "POSITION": 2580, + "TANGENT": 2581, + "TEXCOORD_0": 2583, + "TEXCOORD_1": 2584 + }, + "indices": 2586, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7659, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_gear_Root_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2592, + "NORMAL": 2589, + "POSITION": 2587, + "TANGENT": 2588, + "TEXCOORD_0": 2590, + "TEXCOORD_1": 2591 + }, + "indices": 2593, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_RightPart32_Decal_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2599, + "NORMAL": 2596, + "POSITION": 2594, + "TANGENT": 2595, + "TEXCOORD_0": 2597, + "TEXCOORD_1": 2598 + }, + "indices": 2600, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 268, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2599, + "NORMAL": 2596, + "POSITION": 2594, + "TANGENT": 2595, + "TEXCOORD_0": 2597, + "TEXCOORD_1": 2598 + }, + "indices": 2600, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 78, + "StartIndex": 804, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_wing_landinglight_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2606, + "NORMAL": 2603, + "POSITION": 2601, + "TANGENT": 2602, + "TEXCOORD_0": 2604, + "TEXCOORD_1": 2605 + }, + "indices": 2607, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 272, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2613, + "NORMAL": 2610, + "POSITION": 2608, + "TANGENT": 2609, + "TEXCOORD_0": 2611, + "TEXCOORD_1": 2612 + }, + "indices": 2614, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1246, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2613, + "NORMAL": 2610, + "POSITION": 2608, + "TANGENT": 2609, + "TEXCOORD_0": 2611, + "TEXCOORD_1": 2612 + }, + "indices": 2614, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "StartIndex": 3738, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2620, + "NORMAL": 2617, + "POSITION": 2615, + "TANGENT": 2616, + "TEXCOORD_0": 2618, + "TEXCOORD_1": 2619 + }, + "indices": 2621, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_lightpods_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2627, + "NORMAL": 2624, + "POSITION": 2622, + "TANGENT": 2623, + "TEXCOORD_0": 2625, + "TEXCOORD_1": 2626 + }, + "indices": 2628, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1500, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Undercarriage_Front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2634, + "NORMAL": 2631, + "POSITION": 2629, + "TANGENT": 2630, + "TEXCOORD_0": 2632, + "TEXCOORD_1": 2633 + }, + "indices": 2635, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 496, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Glass_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2641, + "NORMAL": 2638, + "POSITION": 2636, + "TANGENT": 2637, + "TEXCOORD_0": 2639, + "TEXCOORD_1": 2640 + }, + "indices": 2642, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15840, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2641, + "NORMAL": 2638, + "POSITION": 2636, + "TANGENT": 2637, + "TEXCOORD_0": 2639, + "TEXCOORD_1": 2640 + }, + "indices": 2642, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3107, + "StartIndex": 47520, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2641, + "NORMAL": 2638, + "POSITION": 2636, + "TANGENT": 2637, + "TEXCOORD_0": 2639, + "TEXCOORD_1": 2640 + }, + "indices": 2642, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "StartIndex": 56841, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 148, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "StartIndex": 444, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22, + "StartIndex": 1224, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 454, + "StartIndex": 1290, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14, + "StartIndex": 2652, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 72, + "StartIndex": 2694, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2648, + "NORMAL": 2645, + "POSITION": 2643, + "TANGENT": 2644, + "TEXCOORD_0": 2646, + "TEXCOORD_1": 2647 + }, + "indices": 2649, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 250, + "StartIndex": 2910, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_2_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2655, + "NORMAL": 2652, + "POSITION": 2650, + "TANGENT": 2651, + "TEXCOORD_0": 2653, + "TEXCOORD_1": 2654 + }, + "indices": 2656, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_2_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2662, + "NORMAL": 2659, + "POSITION": 2657, + "TANGENT": 2658, + "TEXCOORD_0": 2660, + "TEXCOORD_1": 2661 + }, + "indices": 2663, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 446, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2669, + "NORMAL": 2666, + "POSITION": 2664, + "TANGENT": 2665, + "TEXCOORD_0": 2667, + "TEXCOORD_1": 2668 + }, + "indices": 2670, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1819, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_2_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2676, + "NORMAL": 2673, + "POSITION": 2671, + "TANGENT": 2672, + "TEXCOORD_0": 2674, + "TEXCOORD_1": 2675 + }, + "indices": 2677, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2676, + "NORMAL": 2673, + "POSITION": 2671, + "TANGENT": 2672, + "TEXCOORD_0": 2674, + "TEXCOORD_1": 2675 + }, + "indices": 2677, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 19675, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_INTERIOR2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2683, + "NORMAL": 2680, + "POSITION": 2678, + "TANGENT": 2679, + "TEXCOORD_0": 2681, + "TEXCOORD_1": 2682 + }, + "indices": 2684, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 9643, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2683, + "NORMAL": 2680, + "POSITION": 2678, + "TANGENT": 2679, + "TEXCOORD_0": 2681, + "TEXCOORD_1": 2682 + }, + "indices": 2684, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 372, + "StartIndex": 28929, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_CARGO_DOOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2690, + "NORMAL": 2687, + "POSITION": 2685, + "TANGENT": 2686, + "TEXCOORD_0": 2688, + "TEXCOORD_1": 2689 + }, + "indices": 2691, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 526, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2690, + "NORMAL": 2687, + "POSITION": 2685, + "TANGENT": 2686, + "TEXCOORD_0": 2688, + "TEXCOORD_1": 2689 + }, + "indices": 2691, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 438, + "StartIndex": 1578, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2690, + "NORMAL": 2687, + "POSITION": 2685, + "TANGENT": 2686, + "TEXCOORD_0": 2688, + "TEXCOORD_1": 2689 + }, + "indices": 2691, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 2892, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_CARGO_DOOR_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2697, + "NORMAL": 2694, + "POSITION": 2692, + "TANGENT": 2693, + "TEXCOORD_0": 2695, + "TEXCOORD_1": 2696 + }, + "indices": 2698, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_CARGO_PISTON_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2704, + "NORMAL": 2701, + "POSITION": 2699, + "TANGENT": 2700, + "TEXCOORD_0": 2702, + "TEXCOORD_1": 2703 + }, + "indices": 2705, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 249, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_Cargo" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2711, + "NORMAL": 2708, + "POSITION": 2706, + "TANGENT": 2707, + "TEXCOORD_0": 2709, + "TEXCOORD_1": 2710 + }, + "indices": 2712, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_CARGO_PISTON_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2718, + "NORMAL": 2715, + "POSITION": 2713, + "TANGENT": 2714, + "TEXCOORD_0": 2716, + "TEXCOORD_1": 2717 + }, + "indices": 2719, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15840, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2718, + "NORMAL": 2715, + "POSITION": 2713, + "TANGENT": 2714, + "TEXCOORD_0": 2716, + "TEXCOORD_1": 2717 + }, + "indices": 2719, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2219, + "StartIndex": 47520, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2718, + "NORMAL": 2715, + "POSITION": 2713, + "TANGENT": 2714, + "TEXCOORD_0": 2716, + "TEXCOORD_1": 2717 + }, + "indices": 2719, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "StartIndex": 54177, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2725, + "NORMAL": 2722, + "POSITION": 2720, + "TANGENT": 2721, + "TEXCOORD_0": 2723, + "TEXCOORD_1": 2724 + }, + "indices": 2726, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_1_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22, + "StartIndex": 1170, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "StartIndex": 1236, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "StartIndex": 2466, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 72, + "StartIndex": 2496, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2732, + "NORMAL": 2729, + "POSITION": 2727, + "TANGENT": 2728, + "TEXCOORD_0": 2730, + "TEXCOORD_1": 2731 + }, + "indices": 2733, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 250, + "StartIndex": 2712, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_1_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2739, + "NORMAL": 2736, + "POSITION": 2734, + "TANGENT": 2735, + "TEXCOORD_0": 2737, + "TEXCOORD_1": 2738 + }, + "indices": 2740, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_1_GASKET" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2746, + "NORMAL": 2743, + "POSITION": 2741, + "TANGENT": 2742, + "TEXCOORD_0": 2744, + "TEXCOORD_1": 2745 + }, + "indices": 2747, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2753, + "NORMAL": 2750, + "POSITION": 2748, + "TANGENT": 2749, + "TEXCOORD_0": 2751, + "TEXCOORD_1": 2752 + }, + "indices": 2754, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1819, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_PASSENGER_DOOR_1_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2760, + "NORMAL": 2757, + "POSITION": 2755, + "TANGENT": 2756, + "TEXCOORD_0": 2758, + "TEXCOORD_1": 2759 + }, + "indices": 2761, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2760, + "NORMAL": 2757, + "POSITION": 2755, + "TANGENT": 2756, + "TEXCOORD_0": 2758, + "TEXCOORD_1": 2759 + }, + "indices": 2761, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 19675, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2760, + "NORMAL": 2757, + "POSITION": 2755, + "TANGENT": 2756, + "TEXCOORD_0": 2758, + "TEXCOORD_1": 2759 + }, + "indices": 2761, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "StartIndex": 59097, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_INTERIOR1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3084, + "JOINTS_0": 3082, + "NORMAL": 3079, + "POSITION": 3077, + "TANGENT": 3078, + "TEXCOORD_0": 3080, + "TEXCOORD_1": 3081, + "WEIGHTS_0": 3083 + }, + "indices": 3085, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1550, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3093, + "JOINTS_0": 3091, + "NORMAL": 3088, + "POSITION": 3086, + "TANGENT": 3087, + "TEXCOORD_0": 3089, + "TEXCOORD_1": 3090, + "WEIGHTS_0": 3092 + }, + "indices": 3094, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2020, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3102, + "JOINTS_0": 3100, + "NORMAL": 3097, + "POSITION": 3095, + "TANGENT": 3096, + "TEXCOORD_0": 3098, + "TEXCOORD_1": 3099, + "WEIGHTS_0": 3101 + }, + "indices": 3103, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1866, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3111, + "JOINTS_0": 3109, + "NORMAL": 3106, + "POSITION": 3104, + "TANGENT": 3105, + "TEXCOORD_0": 3107, + "TEXCOORD_1": 3108, + "WEIGHTS_0": 3110 + }, + "indices": 3112, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 932, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3120, + "JOINTS_0": 3118, + "NORMAL": 3115, + "POSITION": 3113, + "TANGENT": 3114, + "TEXCOORD_0": 3116, + "TEXCOORD_1": 3117, + "WEIGHTS_0": 3119 + }, + "indices": 3121, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 472, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Aileron_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3129, + "JOINTS_0": 3127, + "NORMAL": 3124, + "POSITION": 3122, + "TANGENT": 3123, + "TEXCOORD_0": 3125, + "TEXCOORD_1": 3126, + "WEIGHTS_0": 3128 + }, + "indices": 3130, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_22_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3138, + "JOINTS_0": 3136, + "NORMAL": 3133, + "POSITION": 3131, + "TANGENT": 3132, + "TEXCOORD_0": 3134, + "TEXCOORD_1": 3135, + "WEIGHTS_0": 3137 + }, + "indices": 3139, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 412, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3147, + "JOINTS_0": 3145, + "NORMAL": 3142, + "POSITION": 3140, + "TANGENT": 3141, + "TEXCOORD_0": 3143, + "TEXCOORD_1": 3144, + "WEIGHTS_0": 3146 + }, + "indices": 3148, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Left02_hydraulic01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3156, + "JOINTS_0": 3154, + "NORMAL": 3151, + "POSITION": 3149, + "TANGENT": 3150, + "TEXCOORD_0": 3152, + "TEXCOORD_1": 3153, + "WEIGHTS_0": 3155 + }, + "indices": 3157, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 412, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door_Right02_hydraulic01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3165, + "JOINTS_0": 3163, + "NORMAL": 3160, + "POSITION": 3158, + "TANGENT": 3159, + "TEXCOORD_0": 3161, + "TEXCOORD_1": 3162, + "WEIGHTS_0": 3164 + }, + "indices": 3166, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2020, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3174, + "JOINTS_0": 3172, + "NORMAL": 3169, + "POSITION": 3167, + "TANGENT": 3168, + "TEXCOORD_0": 3170, + "TEXCOORD_1": 3171, + "WEIGHTS_0": 3173 + }, + "indices": 3175, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1866, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3183, + "JOINTS_0": 3181, + "NORMAL": 3178, + "POSITION": 3176, + "TANGENT": 3177, + "TEXCOORD_0": 3179, + "TEXCOORD_1": 3180, + "WEIGHTS_0": 3182 + }, + "indices": 3184, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2516, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3192, + "JOINTS_0": 3190, + "NORMAL": 3187, + "POSITION": 3185, + "TANGENT": 3186, + "TEXCOORD_0": 3188, + "TEXCOORD_1": 3189, + "WEIGHTS_0": 3191 + }, + "indices": 3193, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 892, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FlapsKrueger_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3201, + "JOINTS_0": 3199, + "NORMAL": 3196, + "POSITION": 3194, + "TANGENT": 3195, + "TEXCOORD_0": 3197, + "TEXCOORD_1": 3198, + "WEIGHTS_0": 3200 + }, + "indices": 3202, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 932, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3210, + "JOINTS_0": 3208, + "NORMAL": 3205, + "POSITION": 3203, + "TANGENT": 3204, + "TEXCOORD_0": 3206, + "TEXCOORD_1": 3207, + "WEIGHTS_0": 3209 + }, + "indices": 3211, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 472, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Aileron_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3219, + "JOINTS_0": 3217, + "NORMAL": 3214, + "POSITION": 3212, + "TANGENT": 3213, + "TEXCOORD_0": 3215, + "TEXCOORD_1": 3216, + "WEIGHTS_0": 3218 + }, + "indices": 3220, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1454, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Flaps_Details_Spoiler_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3228, + "JOINTS_0": 3226, + "NORMAL": 3223, + "POSITION": 3221, + "TANGENT": 3222, + "TEXCOORD_0": 3224, + "TEXCOORD_1": 3225, + "WEIGHTS_0": 3227 + }, + "indices": 3229, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 240, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_37_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3237, + "JOINTS_0": 3235, + "NORMAL": 3232, + "POSITION": 3230, + "TANGENT": 3231, + "TEXCOORD_0": 3233, + "TEXCOORD_1": 3234, + "WEIGHTS_0": 3236 + }, + "indices": 3238, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1550, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3246, + "JOINTS_0": 3244, + "NORMAL": 3241, + "POSITION": 3239, + "TANGENT": 3240, + "TEXCOORD_0": 3242, + "TEXCOORD_1": 3243, + "WEIGHTS_0": 3245 + }, + "indices": 3247, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Landing_Gear_22_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3255, + "JOINTS_0": 3253, + "NORMAL": 3250, + "POSITION": 3248, + "TANGENT": 3249, + "TEXCOORD_0": 3251, + "TEXCOORD_1": 3252, + "WEIGHTS_0": 3254 + }, + "indices": 3256, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2402, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Undercarriage_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2767, + "NORMAL": 2764, + "POSITION": 2762, + "TANGENT": 2763, + "TEXCOORD_0": 2765, + "TEXCOORD_1": 2766 + }, + "indices": 2768, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 150, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2774, + "NORMAL": 2771, + "POSITION": 2769, + "TANGENT": 2770, + "TEXCOORD_0": 2772, + "TEXCOORD_1": 2773 + }, + "indices": 2775, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2781, + "NORMAL": 2778, + "POSITION": 2776, + "TANGENT": 2777, + "TEXCOORD_0": 2779, + "TEXCOORD_1": 2780 + }, + "indices": 2782, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2788, + "NORMAL": 2785, + "POSITION": 2783, + "TANGENT": 2784, + "TEXCOORD_0": 2786, + "TEXCOORD_1": 2787 + }, + "indices": 2789, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 28, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2795, + "NORMAL": 2792, + "POSITION": 2790, + "TANGENT": 2791, + "TEXCOORD_0": 2793, + "TEXCOORD_1": 2794 + }, + "indices": 2796, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2802, + "NORMAL": 2799, + "POSITION": 2797, + "TANGENT": 2798, + "TEXCOORD_0": 2800, + "TEXCOORD_1": 2801 + }, + "indices": 2803, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2809, + "NORMAL": 2806, + "POSITION": 2804, + "TANGENT": 2805, + "TEXCOORD_0": 2807, + "TEXCOORD_1": 2808 + }, + "indices": 2810, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 268, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Porthole_Blocker_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2816, + "NORMAL": 2813, + "POSITION": 2811, + "TANGENT": 2812, + "TEXCOORD_0": 2814, + "TEXCOORD_1": 2815 + }, + "indices": 2817, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2823, + "NORMAL": 2820, + "POSITION": 2818, + "TANGENT": 2819, + "TEXCOORD_0": 2821, + "TEXCOORD_1": 2822 + }, + "indices": 2824, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2830, + "NORMAL": 2827, + "POSITION": 2825, + "TANGENT": 2826, + "TEXCOORD_0": 2828, + "TEXCOORD_1": 2829 + }, + "indices": 2831, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2837, + "NORMAL": 2834, + "POSITION": 2832, + "TANGENT": 2833, + "TEXCOORD_0": 2835, + "TEXCOORD_1": 2836 + }, + "indices": 2838, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2844, + "NORMAL": 2841, + "POSITION": 2839, + "TANGENT": 2840, + "TEXCOORD_0": 2842, + "TEXCOORD_1": 2843 + }, + "indices": 2845, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 216, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_tail_strobe_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2851, + "NORMAL": 2848, + "POSITION": 2846, + "TANGENT": 2847, + "TEXCOORD_0": 2849, + "TEXCOORD_1": 2850 + }, + "indices": 2852, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 216, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_tail_strobe_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2858, + "NORMAL": 2855, + "POSITION": 2853, + "TANGENT": 2854, + "TEXCOORD_0": 2856, + "TEXCOORD_1": 2857 + }, + "indices": 2859, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 56, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_body_beacon2_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2865, + "NORMAL": 2862, + "POSITION": 2860, + "TANGENT": 2861, + "TEXCOORD_0": 2863, + "TEXCOORD_1": 2864 + }, + "indices": 2866, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 56, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_body_beacon1_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2872, + "NORMAL": 2869, + "POSITION": 2867, + "TANGENT": 2868, + "TEXCOORD_0": 2870, + "TEXCOORD_1": 2871 + }, + "indices": 2873, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14350, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2872, + "NORMAL": 2869, + "POSITION": 2867, + "TANGENT": 2868, + "TEXCOORD_0": 2870, + "TEXCOORD_1": 2871 + }, + "indices": 2873, + "material": 30, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 804, + "StartIndex": 43050, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2872, + "NORMAL": 2869, + "POSITION": 2867, + "TANGENT": 2868, + "TEXCOORD_0": 2870, + "TEXCOORD_1": 2871 + }, + "indices": 2873, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1892, + "StartIndex": 45462, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_CARGO_INTERIOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2879, + "NORMAL": 2876, + "POSITION": 2874, + "TANGENT": 2875, + "TEXCOORD_0": 2877, + "TEXCOORD_1": 2878 + }, + "indices": 2880, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5558, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_FUSELAGE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3264, + "JOINTS_0": 3262, + "NORMAL": 3259, + "POSITION": 3257, + "TANGENT": 3258, + "TEXCOORD_0": 3260, + "TEXCOORD_1": 3261, + "WEIGHTS_0": 3263 + }, + "indices": 3265, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3273, + "JOINTS_0": 3271, + "NORMAL": 3268, + "POSITION": 3266, + "TANGENT": 3267, + "TEXCOORD_0": 3269, + "TEXCOORD_1": 3270, + "WEIGHTS_0": 3272 + }, + "indices": 3274, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 216, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3282, + "JOINTS_0": 3280, + "NORMAL": 3277, + "POSITION": 3275, + "TANGENT": 3276, + "TEXCOORD_0": 3278, + "TEXCOORD_1": 3279, + "WEIGHTS_0": 3281 + }, + "indices": 3283, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 218, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3291, + "JOINTS_0": 3289, + "NORMAL": 3286, + "POSITION": 3284, + "TANGENT": 3285, + "TEXCOORD_0": 3287, + "TEXCOORD_1": 3288, + "WEIGHTS_0": 3290 + }, + "indices": 3292, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3300, + "JOINTS_0": 3298, + "NORMAL": 3295, + "POSITION": 3293, + "TANGENT": 3294, + "TEXCOORD_0": 3296, + "TEXCOORD_1": 3297, + "WEIGHTS_0": 3299 + }, + "indices": 3301, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1166, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_wiper" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2886, + "NORMAL": 2883, + "POSITION": 2881, + "TANGENT": 2882, + "TEXCOORD_0": 2884, + "TEXCOORD_1": 2885 + }, + "indices": 2887, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 490, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_GROUND_GPUPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2893, + "NORMAL": 2890, + "POSITION": 2888, + "TANGENT": 2889, + "TEXCOORD_0": 2891, + "TEXCOORD_1": 2892 + }, + "indices": 2894, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1296, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_GROUND_FuelPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2900, + "NORMAL": 2897, + "POSITION": 2895, + "TANGENT": 2896, + "TEXCOORD_0": 2898, + "TEXCOORD_1": 2899 + }, + "indices": 2901, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 534, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_WINDSHIELD" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2907, + "NORMAL": 2904, + "POSITION": 2902, + "TANGENT": 2903, + "TEXCOORD_0": 2905, + "TEXCOORD_1": 2906 + }, + "indices": 2908, + "material": 31, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22202, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_HublotIn_001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2914, + "NORMAL": 2911, + "POSITION": 2909, + "TANGENT": 2910, + "TEXCOORD_0": 2912, + "TEXCOORD_1": 2913 + }, + "indices": 2915, + "material": 31, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22202, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_HublotIn_002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2921, + "NORMAL": 2918, + "POSITION": 2916, + "TANGENT": 2917, + "TEXCOORD_0": 2919, + "TEXCOORD_1": 2920 + }, + "indices": 2922, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_DRONE_COLLISION_IN" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3309, + "JOINTS_0": 3307, + "NORMAL": 3304, + "POSITION": 3302, + "TANGENT": 3303, + "TEXCOORD_0": 3305, + "TEXCOORD_1": 3306, + "WEIGHTS_0": 3308 + }, + "indices": 3310, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 76, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_RegNumber_Wing" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2928, + "NORMAL": 2925, + "POSITION": 2923, + "TANGENT": 2924, + "TEXCOORD_0": 2926, + "TEXCOORD_1": 2927 + }, + "indices": 2929, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 35813, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2935, + "NORMAL": 2932, + "POSITION": 2930, + "TANGENT": 2931, + "TEXCOORD_0": 2933, + "TEXCOORD_1": 2934 + }, + "indices": 2936, + "material": 34, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_RegNumber" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2942, + "NORMAL": 2939, + "POSITION": 2937, + "TANGENT": 2938, + "TEXCOORD_0": 2940, + "TEXCOORD_1": 2941 + }, + "indices": 2943, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8733, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2949, + "NORMAL": 2946, + "POSITION": 2944, + "TANGENT": 2945, + "TEXCOORD_0": 2947, + "TEXCOORD_1": 2948 + }, + "indices": 2950, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 316, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Glass" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3318, + "JOINTS_0": 3316, + "NORMAL": 3313, + "POSITION": 3311, + "TANGENT": 3312, + "TEXCOORD_0": 3314, + "TEXCOORD_1": 3315, + "WEIGHTS_0": 3317 + }, + "indices": 3319, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 424, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3327, + "JOINTS_0": 3325, + "NORMAL": 3322, + "POSITION": 3320, + "TANGENT": 3321, + "TEXCOORD_0": 3323, + "TEXCOORD_1": 3324, + "WEIGHTS_0": 3326 + }, + "indices": 3328, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14779, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3336, + "JOINTS_0": 3334, + "NORMAL": 3331, + "POSITION": 3329, + "TANGENT": 3330, + "TEXCOORD_0": 3332, + "TEXCOORD_1": 3333, + "WEIGHTS_0": 3335 + }, + "indices": 3337, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 153, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3345, + "JOINTS_0": 3343, + "NORMAL": 3340, + "POSITION": 3338, + "TANGENT": 3339, + "TEXCOORD_0": 3341, + "TEXCOORD_1": 3342, + "WEIGHTS_0": 3344 + }, + "indices": 3346, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13809, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3354, + "JOINTS_0": 3352, + "NORMAL": 3349, + "POSITION": 3347, + "TANGENT": 3348, + "TEXCOORD_0": 3350, + "TEXCOORD_1": 3351, + "WEIGHTS_0": 3353 + }, + "indices": 3355, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Wing_body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3363, + "JOINTS_0": 3361, + "NORMAL": 3358, + "POSITION": 3356, + "TANGENT": 3357, + "TEXCOORD_0": 3359, + "TEXCOORD_1": 3360, + "WEIGHTS_0": 3362 + }, + "indices": 3364, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 424, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3372, + "JOINTS_0": 3370, + "NORMAL": 3367, + "POSITION": 3365, + "TANGENT": 3366, + "TEXCOORD_0": 3368, + "TEXCOORD_1": 3369, + "WEIGHTS_0": 3371 + }, + "indices": 3373, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14779, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3381, + "JOINTS_0": 3379, + "NORMAL": 3376, + "POSITION": 3374, + "TANGENT": 3375, + "TEXCOORD_0": 3377, + "TEXCOORD_1": 3378, + "WEIGHTS_0": 3380 + }, + "indices": 3382, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 153, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3390, + "JOINTS_0": 3388, + "NORMAL": 3385, + "POSITION": 3383, + "TANGENT": 3384, + "TEXCOORD_0": 3386, + "TEXCOORD_1": 3387, + "WEIGHTS_0": 3389 + }, + "indices": 3391, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13809, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3399, + "JOINTS_0": 3397, + "NORMAL": 3394, + "POSITION": 3392, + "TANGENT": 3393, + "TEXCOORD_0": 3395, + "TEXCOORD_1": 3396, + "WEIGHTS_0": 3398 + }, + "indices": 3400, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Wing_body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3401, + "NORMAL": 3402, + "POSITION": 3403, + "TANGENT": 3404, + "TEXCOORD_0": 3405, + "TEXCOORD_1": 3406 + }, + "indices": 3407, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1820, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Rudder_center.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3408, + "NORMAL": 3409, + "POSITION": 3410, + "TANGENT": 3411, + "TEXCOORD_0": 3412, + "TEXCOORD_1": 3413 + }, + "indices": 3414, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_Left.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3415, + "NORMAL": 3416, + "POSITION": 3417, + "TANGENT": 3418, + "TEXCOORD_0": 3419, + "TEXCOORD_1": 3420 + }, + "indices": 3421, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_right.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3422, + "NORMAL": 3423, + "POSITION": 3424, + "TANGENT": 3425, + "TEXCOORD_0": 3426, + "TEXCOORD_1": 3427 + }, + "indices": 3428, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 302, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorB.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3429, + "NORMAL": 3430, + "POSITION": 3431, + "TEXCOORD_0": 3432, + "TEXCOORD_1": 3433 + }, + "indices": 3434, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 21, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageA.005" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3435, + "NORMAL": 3436, + "POSITION": 3437, + "TANGENT": 3438, + "TEXCOORD_0": 3439, + "TEXCOORD_1": 3440 + }, + "indices": 3441, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door01_left.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3442, + "NORMAL": 3443, + "POSITION": 3444, + "TANGENT": 3445, + "TEXCOORD_0": 3446, + "TEXCOORD_1": 3447 + }, + "indices": 3448, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door01_right.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3449, + "NORMAL": 3450, + "POSITION": 3451, + "TANGENT": 3452, + "TEXCOORD_0": 3453, + "TEXCOORD_1": 3454 + }, + "indices": 3455, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "livery_vstab" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3456, + "NORMAL": 3457, + "POSITION": 3458, + "TANGENT": 3459, + "TEXCOORD_0": 3460, + "TEXCOORD_1": 3461 + }, + "indices": 3462, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Cargo_Door_LIVERYDECAL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3463, + "NORMAL": 3464, + "POSITION": 3465, + "TEXCOORD_0": 3466, + "TEXCOORD_1": 3467 + }, + "indices": 3468, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 306, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3469, + "NORMAL": 3470, + "POSITION": 3471, + "TANGENT": 3472, + "TEXCOORD_0": 3473, + "TEXCOORD_1": 3474 + }, + "indices": 3475, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2812, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.004" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3476, + "NORMAL": 3477, + "POSITION": 3478, + "TEXCOORD_0": 3479, + "TEXCOORD_1": 3480 + }, + "indices": 3481, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13128, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3482, + "NORMAL": 3483, + "POSITION": 3484, + "TANGENT": 3485, + "TEXCOORD_0": 3486, + "TEXCOORD_1": 3487 + }, + "indices": 3488, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.003" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3489, + "NORMAL": 3490, + "POSITION": 3491, + "TANGENT": 3492, + "TEXCOORD_0": 3493, + "TEXCOORD_1": 3494 + }, + "indices": 3495, + "material": 35, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3832, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.008" + } + ], + "nodes": [ + { + "translation": [ + -4.76837158e-7, 0, -9.536743e-7 + ], + "mesh": 0, + "skin": 0, + "name": "Flaps_Details_Spoiler_left" + }, { + "translation": [ + 5.032778, -3.417544, -5.55187273 + ], + "rotation": [ + -0.503368855, 0.495709151, 0.499797016, 0.501094043 + ], + "scale": [ + 1.00000072, 1.00000632, 0.9999972 + ], + "mesh": 1, + "skin": 1, + "name": "Landing_Gear_37_left" + }, { + "translation": [ + 0, 0, -3.57627869e-7 + ], + "mesh": 2, + "skin": 2, + "name": "Undercarriage_left" + }, { + "translation": [ + 18.75111, 1.65194607, -8.437931 + ], + "rotation": [ + 0.0150541347, 0.2984709, 0.0480715372, 0.953088462 + ], + "scale": [ + 1, 1.00000036, 1.00000072 + ], + "mesh": 3, + "skin": 3, + "name": "FlapsKrueger_2_left" + }, { + "name": "HIPS", + "children": [ + 5, + 8, + 12, + 17, + 21, + 26, + 207, + 208, + 209, + 210, + 254, + 262, + 440, + 441, + 442, + 443, + 452, + 458, + 460, + 461, + 471, + 473 + ] + }, { + "translation": [ + 0.00000191479921, 9.241079, -36.3505249 + ], + "rotation": [ + 0.351553828, 0.6135225, 0.351553649, 0.6135227 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "Tail_Rudder_center", + "children": [6, 7] + }, { + "translation": [ + -0.00000381469727, 0, 4.54747351e-13 + ], + "rotation": [ + -3.46389931e-12, -1.141133e-11, -1.49011612e-8, 1 + ], + "scale": [ + 1, 1, 1.00000012 + ], + "mesh": 4, + "name": "Rudder_center" + }, { + "translation": [ + -3.43654442, -0.537023544, 4.54747351e-13 + ], + "rotation": [ + -0.3515538, -0.6135225, -0.351553679, 0.6135227 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "mesh": 5, + "name": "Livery_KLM_Rudder" + }, { + "translation": [ + -0.726416945, -1.95301223, 23.6319084 + ], + "rotation": [ + 0.427315861, 0.516586959, -0.473471433, 0.5712827 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "name": "Door_Right02_center", + "children": [9, 10, 11] + }, { + "translation": [ + -0.00000190734863, 1.1920929e-7, 0 + ], + "rotation": [ + -3.72529074e-9, 0, -4.65661343e-10, 1 + ], + "scale": [ + 1, 0.9999999, 1 + ], + "mesh": 6, + "name": "C_Door_02_right" + }, { + "translation": [ + 0.458667755, -0.0267460346, 0.552114964 + ], + "rotation": [ + 0.512122333, -0.626890063, -0.3186886, -0.49313 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "name": "Door_Right03_center" + }, { + "translation": [ + 0.114679337, -0.11825192, 0.424622059 + ], + "rotation": [ + -0.427315861, -0.5165871, 0.473471284, 0.571282744 + ], + "scale": [ + 0.9999999, 0.99999994, 1 + ], + "mesh": 7, + "name": "Livery_KLM_RGDoor" + }, { + "translation": [ + -0.731975853, -1.761568, 25.1424141 + ], + "rotation": [ + -0.0471240319, 0.7069722, -0.06672683, 0.7025078 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "name": "Door_Right01_center", + "children": [13, 15] + }, { + "translation": [ + 0.00000190734863, 4.76837158e-7, 0.00000190734863 + ], + "rotation": [ + 4.65661232e-10, -2.32830671e-10, 3.72529074e-9, 1 + ], + "scale": [ + 0.9999999, 1, 1.00000012 + ], + "mesh": 8, + "name": "C_Door_01_right", + "children": [14] + }, { + "translation": [ + 0.9317913, -0.0627985, 0.1983509 + ], + "rotation": [ + 0.07458955, 0.7141527, 0.07631398, 0.6918081 + ], + "scale": [ + 1.00000012, 1.00000012, 0.999999642 + ], + "mesh": 9, + "name": "Door_Right01_Decals_center" + }, { + "translation": [ + -0.7503414, -0.0338468552, 0.414570749 + ], + "rotation": [ + -0.396525681, -0.50923115, 0.5034293, 0.574465036 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Right03_hydraulic01_center", + "children": [16] + }, { + "translation": [ + -0.0128884315, 0.004556179, -0.00103569031 + ], + "rotation": [ + 0.01026999, -0.108941317, -0.797837734, 0.592858553 + ], + "scale": [ + 1.00000048, 1.00000083, 1.00000024 + ], + "mesh": 10, + "name": "C_Door_03_hydraulic01_right" + }, { + "translation": [ + 0.723948359, -1.95345688, 23.5944271 + ], + "rotation": [ + 0.00493113929, 0.705479443, -0.0346209928, 0.707867146 + ], + "scale": [ + 0.9999999, 0.99999994, 0.99999994 + ], + "name": "Door_Left02_center", + "children": [18, 19, 20] + }, { + "translation": [ + 0.3847618, -0.58023, -0.0432002544 + ], + "rotation": [ + 0.7827109, 0.116333261, 0.33318314, 0.5126591 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "Door_Left03_center" + }, { + "translation": [ + -0.0374679565, -0.0009872913, 0.002609253 + ], + "rotation": [ + 0.0256658774, 0.6589433, 0.7515741, 0.0164738484 + ], + "scale": [ + 1.00000036, 1.00000036, 1.00000036 + ], + "mesh": 11, + "name": "C_Door_02_left" + }, { + "translation": [ + 0.05247307, -0.443425417, 0.06258595 + ], + "rotation": [ + -0.004931191, -0.7054795, 0.03462106, 0.7078671 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 12, + "name": "Livery_KLM_LGDoor" + }, { + "translation": [ + 0.7319975, -1.76198089, 25.1398849 + ], + "rotation": [ + -0.0667134, 0.7025059, -0.0471375138, 0.7069745 + ], + "scale": [ + 0.9999999, 1.00000012, 0.9999999 + ], + "name": "Door_Left01_center", + "children": [22, 24] + }, { + "translation": [ + 0.00000190734863, 0, 0 + ], + "rotation": [ + -4.65661454e-10, 3.49245965e-10, -3.72529074e-9, 1 + ], + "scale": [ + 0.9999999, 0.9999997, 1.00000012 + ], + "mesh": 13, + "name": "C_Door_01_left", + "children": [23] + }, { + "translation": [ + 0.9292259, -0.0627961159, -0.198352814 + ], + "rotation": [ + -0.07631395, 0.691808164, -0.07458949, 0.7141527 + ], + "scale": [ + 0.99999994, 1.00000012, 0.999999762 + ], + "mesh": 14, + "name": "Door_Left01_Decals_center" + }, { + "translation": [ + -0.7485962, -0.05103779, -0.416645736 + ], + "rotation": [ + -0.00976675749, -0.791484535, 0.164192423, 0.58864063 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Left03_hydraulic01_center", + "children": [25] + }, { + "translation": [ + 4.76837158e-7, -2.38418579e-7, 0 + ], + "rotation": [ + -1.86264515e-9, 8.614732e-8, -7.45058e-8, 1 + ], + "scale": [ + 1.00000048, 0.999999762, 1 + ], + "mesh": 15, + "name": "C_Door_03_hydraulic01_left" + }, { + "name": "Wing_left", + "children": [27, 34, 200, 202] + }, { + "translation": [ + 1.450443, 1.40532589, -32.1805077 + ], + "rotation": [ + -0.699695766, 0.021218136, 0.08916643, 0.7085372 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "Trim_Elevator_left", + "children": [28, 30, 31, 32, 33] + }, { + "translation": [ + 4.46584272, 4.07697868, 0.00621420145 + ], + "rotation": [ + 0.7352894, 0.102221251, 0.101580471, 0.662255049 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "name": "Elevator_left", + "children": [29] + }, { + "translation": [ + 0, 0.00000166893, 0.000009536743 + ], + "rotation": [ + -2.79396545e-7, 7.45057438e-9, 5.58792745e-9, 1 + ], + "scale": [ + 1, 1.00000083, 1.00000072 + ], + "mesh": 16, + "name": "ELEVATOR_LEFT_1" + }, { + "translation": [ + -9.536743e-7, -0.00000381469727, -5.96046448e-8 + ], + "rotation": [ + -9.86037847e-8, 1.86264537e-9, 1.033186e-9, 1 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "mesh": 17, + "name": "TRIM_ELEVATOR_LEFT_1" + }, { + "translation": [ + 2.06527, 1.33728981, 0.291667283 + ], + "rotation": [ + -0.08916645, -0.7085372, -0.699695766, -0.021218054 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "mesh": 18, + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "translation": [ + -6.54495144, -31.5664921, -0.6193118 + ], + "rotation": [ + 0.699695766, -0.021218149, -0.08916643, 0.7085372 + ], + "scale": [ + 0.99999994, 1, 0.9999998 + ], + "mesh": 19, + "name": "FROST_ELEVATORL" + }, { + "translation": [ + -0.0290999413, 0.0197677612, -0.08572006 + ], + "rotation": [ + 0.699695766, -0.021218136, -0.08916643, 0.7085372 + ], + "scale": [ + 1, 1.00000012, 0.99999994 + ], + "mesh": 20, + "name": "Livery_KLM_ElevatorTrimL" + }, { + "translation": [ + 3.348375, -0.123601377, -1.04428136 + ], + "rotation": [ + 0.00473341, 0.2594188, 0.0519678928, 0.964354157 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000024 + ], + "name": "WING_BONE_LEFT_00", + "children": [ + 35, + 84, + 87, + 91, + 155, + 159, + 163, + 167, + 169, + 172, + 184, + 186, + 188, + 190, + 194, + 198, + 199 + ] + }, { + "translation": [ + 8.314296, -0.00000137090683, -5.364418e-7 + ], + "rotation": [ + -8.754432e-8, 1.20198811e-8, -3.7252903e-9, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "name": "WING_BONE_LEFT_01", + "children": [ + 36, + 66, + 68, + 71, + 73, + 79, + 81, + 83 + ] + }, { + "translation": [ + 6.33785439, -0.03361386, -0.00021648407 + ], + "rotation": [ + 7.636845e-8, 8.58562856e-8, -3.72529e-9, 1 + ], + "scale": [ + 1.00000024, 0.99999994, 1.00000012 + ], + "name": "WING_BONE_LEFT_02", + "children": [ + 37, + 47, + 48, + 49, + 52, + 54, + 56, + 58, + 60, + 62, + 64, + 65 + ] + }, { + "translation": [ + 6.566532, -0.00651597977, 0.002133131 + ], + "rotation": [ + 7.497147e-8, 6.48724452e-8, -1.63912773e-7, 1 + ], + "scale": [ + 0.9999999, 1, 0.9999999 + ], + "name": "WING_BONE_LEFT_03", + "children": [38, 43, 44, 45, 46] + }, { + "translation": [ + 5.34786224, 0.0235242844, -0.00155836344 + ], + "rotation": [ + -5.220064e-7, -2.883608e-7, 3.72529065e-8, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 0.999999762 + ], + "name": "WING_BONE_LEFT_04", + "children": [39, 40, 41, 42] + }, { + "translation": [ + 5.1418705, 0.203219891, -1.33749044 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 21, + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "translation": [ + 1.00637817, 0.0480079651, 1.13949251 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 22, + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "translation": [ + 0.660989761, 0.0385291576, 1.23135138 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 23, + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "translation": [ + -0.04543686, 0.288306952, 1.03098464 + ], + "rotation": [ + 0.682595, 0.02664601, -0.03207462, 0.7296063 + ], + "scale": [ + 1.00000072, 1.00000083, 1.00000048 + ], + "name": "FlapsKrueger_5_left" + }, { + "translation": [ + -0.2617283, 0.11290288, 0.0147028565 + ], + "rotation": [ + 0.009747561, -0.0007136329, 0.9998518, 0.0141735217 + ], + "scale": [ + 1.00000024, 1.00000048, 0.99999994 + ], + "name": "Wing_Spoiler_2_5_left" + }, { + "translation": [ + -0.004673004, -0.00971519947, -0.461001784 + ], + "rotation": [ + 0.008513641, -0.0145073226, 0.00494640833, 0.9998463 + ], + "scale": [ + 1.00000083, 0.9999997, 1.00000012 + ], + "name": "Aileron_1_left" + }, { + "translation": [ + 3.998932, 0.0289180279, -0.344465554 + ], + "rotation": [ + 0.008513387, -0.0145070786, 0.00494640134, 0.999846339 + ], + "scale": [ + 1.00000072, 0.9999997, 1.00000012 + ], + "name": "Aileron_2_left" + }, { + "translation": [ + 0.03655243, 0.36692667, 1.46626389 + ], + "rotation": [ + 0.682594657, 0.026645815, -0.0320744365, 0.729606569 + ], + "scale": [ + 1.000001, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_4_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Wing_Spoiler_2_3_left" + }, { + "translation": [ + 0.214468, 0.01886487, -0.6683294 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Wing_Spoiler_2_2_left" + }, { + "translation": [ + 6.303793, -0.008411646, -0.6237762 + ], + "rotation": [ + -0.00684345234, 0.6832026, 0.0139844446, 0.730062962 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000024 + ], + "name": "Flaps_3_left", + "children": [50] + }, { + "translation": [ + -0.111465216, -0.127858162, -2.3174572 + ], + "rotation": [ + 0.703286, -0.0672622249, -0.0638457462, 0.704832137 + ], + "scale": [ + 0.999999464, 0.999998331, 0.999998868 + ], + "name": "flap_hydrolics_19_left", + "children": [51] + }, { + "translation": [ + 0.0153012276, 0.0232906342, -0.008198619 + ], + "rotation": [ + -0.0005077095, -0.0210990012, -0.00375075731, 0.9997702 + ], + "scale": [ + 1.0000006, 0.99999994, 1.000001 + ], + "mesh": 24, + "name": "FLAP_HYDROLICS_19_LEFT_1" + }, { + "translation": [ + 0.214487076, 0.019739747, -0.6686902 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_2_left", + "children": [53] + }, { + "translation": [ + -0.000111579895, 0.0000923872, 0.009029388 + ], + "rotation": [ + 0.669253647, 0.217644021, 0.228405774, 0.6727269 + ], + "scale": [ + 0.001000001, 0.0009999984, 0.0009999996 + ], + "mesh": 25, + "name": "flap_hydrolics_11_left" + }, { + "translation": [ + 0.204582214, -0.17100656, -0.421413481 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_2_left", + "children": [55] + }, { + "translation": [ + -0.001511097, -0.00104165077, 0.0128536224 + ], + "rotation": [ + 0.670056164, 0.217436373, 0.228743777, 0.6718799 + ], + "scale": [ + 0.999997735, 1.00000024, 1.00000048 + ], + "mesh": 26, + "name": "flap_hydrolics_12_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_3_left", + "children": [57] + }, { + "translation": [ + 0.000696182251, 0.000135302544, 0.009157181 + ], + "rotation": [ + 0.693391, 0.128252029, 0.139201611, 0.6952577 + ], + "scale": [ + 0.0009999998, 0.0009999968, 0.00100000121 + ], + "mesh": 27, + "name": "flap_hydrolics_13_left" + }, { + "translation": [ + 2.60530663, -0.109168291, -0.32803908 + ], + "rotation": [ + 0.00760348374, 0.6947899, 0.00263366452, 0.719167769 + ], + "scale": [ + 0.9999992, 0.999999344, 1.00000107 + ], + "name": "Hydrolic2_SPOILER_2_3_left", + "children": [59] + }, { + "translation": [ + -0.0005893707, 0.000117778778, 0.012922287 + ], + "rotation": [ + 0.6939637, 0.128384724, 0.140233949, 0.6944539 + ], + "scale": [ + 1.00000036, 0.999997854, 0.999999762 + ], + "mesh": 28, + "name": "flap_hydrolics_14_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506818056 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_4_left", + "children": [61] + }, { + "translation": [ + -0.000370025635, 0.000463008881, 0.00738334656 + ], + "rotation": [ + 0.702864349, 0.06744829, 0.07868167, 0.703734159 + ], + "scale": [ + 0.001000001, 0.000999998, 0.00100000028 + ], + "mesh": 29, + "name": "flap_hydrolics_15_left" + }, { + "translation": [ + 4.92433929, -0.07270765, -0.265460849 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_4_left", + "children": [63] + }, { + "translation": [ + -0.00141239166, 0.000199198723, 0.0114097595 + ], + "rotation": [ + 0.7035865, 0.06700544, 0.07907146, 0.7030107 + ], + "scale": [ + 1.00000012, 0.999998033, 1.0000006 + ], + "mesh": 30, + "name": "flap_hydrolics_16_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506819963 + ], + "rotation": [ + 0.00760329235, 0.6947918, 0.00263375067, 0.719166 + ], + "scale": [ + 0.999999046, 0.9999996, 1.000001 + ], + "name": "Wing_Spoiler_2_4_left" + }, { + "translation": [ + -0.2762127, 0.432390571, 2.03908443 + ], + "rotation": [ + 0.682594657, 0.0266456641, -0.0320743136, 0.729606569 + ], + "scale": [ + 1.00000131, 0.9999998, 1 + ], + "name": "FlapsKrueger_3_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Wing_Spoiler_2_1_left", + "children": [67] + }, { + "translation": [ + -0.0005944371, 0.134915829, -0.0294208527 + ], + "rotation": [ + 0, 2.324164e-7, 1.5102164e-9, 1 + ], + "scale": [ + 1.0000006, 0.9999989, 0.999999464 + ], + "mesh": 31, + "skin": 4, + "name": "Spoiler_2_1_left" + }, { + "translation": [ + 2.86842632, -0.255201161, -1.31981921 + ], + "rotation": [ + -0.00684322044, 0.6832027, 0.0139845619, 0.730062842 + ], + "scale": [ + 0.9999999, 0.999999762, 1.00000012 + ], + "name": "Flaps_2_left", + "children": [69] + }, { + "translation": [ + -0.08635807, -0.170148611, 2.576231 + ], + "rotation": [ + 0.729701459, -0.14941819, -0.107722856, 0.6584875 + ], + "scale": [ + 0.999999762, 0.999998748, 0.999999464 + ], + "name": "flap_hydrolics_18_left", + "children": [70] + }, { + "translation": [ + -0.00000214576721, -0.000005722046, 0.0000011920929 + ], + "rotation": [ + -6.5192487e-9, -7.450568e-9, -9.778896e-9, 1 + ], + "scale": [ + 0.999999464, 1.000001, 1.00000167 + ], + "mesh": 32, + "name": "FLAP_HYDROLICS_18_LEFT_1" + }, { + "translation": [ + 1.75635815, 0.1111089, -1.07744527 + ], + "rotation": [ + -0.00158689881, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 0.999999166, 0.999999166, 0.9999998 + ], + "name": "Wing_Spoiler_1_4_left", + "children": [72] + }, { + "translation": [ + 0.00000190734863, 0, -0.00000262260437 + ], + "rotation": [ + -3.555861e-7, 5.41182477e-9, 3.72524034e-9, 1 + ], + "scale": [ + 1.000027, 0.9999999, 0.999973 + ], + "mesh": 33, + "name": "Spoiler_2_left" + }, { + "translation": [ + 1.266262, -0.357050836, -0.87978965 + ], + "rotation": [ + 0.0357552953, -0.105803363, 0.0137958294, 0.9936483 + ], + "scale": [ + 0.999999, 0.9999991, 0.9999996 + ], + "name": "Hydrolic2_Flaps_1_1_left", + "children": [74, 76, 78] + }, { + "translation": [ + -0.002585411, 0.30455035, -0.6518159 + ], + "rotation": [ + -0.0045641847, -0.004072023, -0.000149001367, 0.9999813 + ], + "scale": [ + 1.00000012, 0.99999994, 0.99999994 + ], + "name": "Flaps_1_1_left", + "children": [75] + }, { + "translation": [ + 0.523477554, -0.5627988, -0.0773828 + ], + "rotation": [ + -0.03284911, 0.01778281, 0.00322122267, 0.999296963 + ], + "scale": [ + 1.00000191, 1.00000083, 0.9999986 + ], + "mesh": 34, + "name": "FLAPS_1_1_LEFT_1" + }, { + "translation": [ + -0.0025844574, 0.304550469, -0.651815653 + ], + "rotation": [ + 0.00173283485, -0.0000230509668, -0.000235040134, 0.9999985 + ], + "scale": [ + 1.00000024, 0.999999642, 1 + ], + "name": "Hydrolic1_Flaps_1_1_left", + "children": [77] + }, { + "translation": [ + 0.636061668, -0.040795207, -0.04158187 + ], + "rotation": [ + -0.03287646, 0.0178138148, 0.00273070834, 0.999296963 + ], + "scale": [ + 1.000002, 0.9999976, 1.000002 + ], + "mesh": 35, + "name": "flap_hydrolics_07_left" + }, { + "translation": [ + -0.05363655, -0.00392746925, 0.002531767 + ], + "rotation": [ + -0.0328682065, 0.0178198945, 0.002791128, 0.999296963 + ], + "scale": [ + 1.0000006, 0.9999998, 1 + ], + "mesh": 36, + "name": "flap_hydrolics_08_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic1_SPOILER_2_1_left", + "children": [80] + }, { + "translation": [ + -0.000380516052, 0.0000175237656, 0.008708954 + ], + "rotation": [ + 0.646871865, 0.275456548, 0.286379755, 0.6508972 + ], + "scale": [ + 0.00100000051, 0.0009999997, 0.0009999989 + ], + "mesh": 37, + "name": "flap_hydrolics_09_left" + }, { + "translation": [ + 4.08401966, -0.29387182, -0.499293 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic2_SPOILER_2_1_left", + "children": [82] + }, { + "translation": [ + -0.000857770443, 0.00188428164, 0.0116596222 + ], + "rotation": [ + 0.647217155, 0.2763278, 0.287694633, 0.6496035 + ], + "scale": [ + 1, 0.999999344, 0.9999997 + ], + "mesh": 38, + "name": "flap_hydrolics_10_left" + }, { + "translation": [ + -1.92368126, 0.48232764, 2.70130849 + ], + "rotation": [ + 0.6825947, 0.0266455319, -0.0320741422, 0.729606569 + ], + "scale": [ + 1.00000143, 1.00000024, 1.00000024 + ], + "name": "FLAPSKRUEGER_2_LEFT_1" + }, { + "translation": [ + 1.22019815, 0.462972224, 3.0046103 + ], + "rotation": [ + 0.682609856, 0.0262488779, -0.031650465, 0.7296253 + ], + "scale": [ + 0.9999991, 0.999999464, 0.9999997 + ], + "name": "FlapsKrueger_1_left", + "children": [85, 86] + }, { + "translation": [ + -0.0539946556, -0.430566549, 0.539566 + ], + "rotation": [ + -0.673679352, 0.0101103531, 0.012335402, 0.7388516 + ], + "scale": [ + 0.9999978, 0.999999344, 1.00000346 + ], + "mesh": 39, + "name": "FLAPSKRUEGER_1_LEFT_1" + }, { + "translation": [ + -4.2860055, -4.131102, -0.2542407 + ], + "rotation": [ + -0.652156353, -0.250215173, 0.169562742, 0.6952215 + ], + "scale": [ + 1.00000036, 0.9999996, 1.00000036 + ], + "mesh": 40, + "name": "FROST_KRUEGER_L_1" + }, { + "translation": [ + 5.42593765, -0.5243263, -3.44257951 + ], + "rotation": [ + -0.047746323, 0.516863644, 0.00933413, 0.854684234 + ], + "scale": [ + 0.999999046, 0.9999994, 0.999999642 + ], + "name": "Flaps_1_left", + "children": [88, 90] + }, { + "translation": [ + 0.00532531738, -0.341880441, 2.4792347 + ], + "rotation": [ + 0.723513842, 0.00672937743, 0.05795717, 0.6878397 + ], + "scale": [ + 1.0000006, 0.999999642, 1 + ], + "name": "flap_hydrolics_17_left", + "children": [89] + }, { + "translation": [ + 0.0017156601, 0.05996704, 0.008613229 + ], + "rotation": [ + -0.0197386649, 0.0160001218, 0.008083914, 0.999644458 + ], + "scale": [ + 0.99999994, 1.00000119, 0.999998868 + ], + "mesh": 41, + "name": "FLAP_HYDROLICS_17_LEFT_1" + }, { + "translation": [ + -4.76837158e-7, -0.5439116, -0.0132002831 + ], + "rotation": [ + 0.008577848, -0.707054734, -0.00857794, 0.707054853 + ], + "scale": [ + 1.00000012, 0.999999, 1.00000072 + ], + "mesh": 42, + "name": "FLAPS_1_LEFT_1" + }, { + "translation": [ + 3.86463928, -0.591216445, -3.30302334 + ], + "rotation": [ + 0.4957455, -0.06434884, 0.8660403, -0.008359094 + ], + "scale": [ + 0.9999995, 0.9999992, 0.9999999 + ], + "name": "Wheel_Base_left", + "children": [ + 92, + 94, + 96, + 103, + 118, + 125, + 129, + 130, + 153 + ] + }, { + "rotation": [ + 1.94529832e-7, 1.62923143e-7, -4.470348e-8, 1 + ], + "scale": [ + 0.9999998, 1.00000036, 1.00000143 + ], + "mesh": 43, + "name": "Landing_gear_Root_left", + "children": [93] + }, { + "translation": [ + 5.78418541, -1.01794553, -5.087912 + ], + "rotation": [ + -0.0387214534, -0.705824733, -0.0425599925, 0.706045866 + ], + "scale": [ + 0.99999994, 1, 0.9999999 + ], + "mesh": 44, + "name": "Landing_Gear_RightPart32_Decal_left" + }, { + "translation": [ + 0.238498211, 0.6228665, -0.060988903 + ], + "rotation": [ + -0.7381156, -0.653139, 0.109995052, 0.128436789 + ], + "scale": [ + 0.999999762, 0.9999995, 1.0000006 + ], + "name": "Landing_Gear_18_left", + "children": [95] + }, { + "translation": [ + 0.00000143051147, 4.76837158e-7, 0.00000143051147 + ], + "rotation": [ + 0.00000344300724, 0, -1.16415363e-10, 1 + ], + "scale": [ + 0.9999997, 1.00000012, 1.0000025 + ], + "mesh": 45, + "name": "LANDING_GEAR_18_LEFT_1" + }, { + "translation": [ + 0.3341503, 2.01456714, -0.263353348 + ], + "rotation": [ + -0.7060459, 0.0425602868, -0.7058247, -0.0387211032 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999997 + ], + "name": "Landing_Gear_33_left", + "children": [97, 102] + }, { + "translation": [ + -0.117916107, 0.148765087, -0.04537821 + ], + "rotation": [ + -0.984737754, 0.008130156, -0.173853, 0.0007824776 + ], + "scale": [ + 0.9999992, 1.00000107, 0.9999999 + ], + "name": "LANDING_GEAR_37_LEFT_1", + "children": [98, 99, 101] + }, { + "translation": [ + 0.0101308823, 0.00364494324, 0.00000143051147 + ], + "rotation": [ + 1.10616476e-7, -0.17364791, 7.456741e-7, 0.984807849 + ], + "scale": [ + 1.000001, 1.00000477, 0.9999976 + ], + "mesh": 46, + "name": "Landing_Gear_31_left" + }, { + "translation": [ + -0.667953968, -0.574824452, -0.007077217 + ], + "rotation": [ + -0.508839, -0.4962332, 0.4942222, 0.5005796 + ], + "scale": [ + 0.9999965, 1.00000238, 1.00000072 + ], + "name": "Landing_Gear_17_left", + "children": [100] + }, { + "translation": [ + -0.0272248983, 0.00246763229, -0.408616662 + ], + "rotation": [ + 0.5143783, -0.5180434, 0.485144258, -0.48133263 + ], + "scale": [ + 1.000014, 0.9999857, 1.00000048 + ], + "mesh": 47, + "name": "LANDING_GEAR_17_LEFT_1" + }, { + "translation": [ + -0.220382929, 2.38418579e-7, -0.112304211 + ], + "rotation": [ + -4.22581365e-8, -4.030838e-8, 3.632154e-8, 1 + ], + "scale": [ + 0.9999999, 1.00000083, 0.9999992 + ], + "name": "LANDING_GEAR_31_LEFT_1" + }, { + "translation": [ + -4.76837158e-7, 0, 4.76837158e-7 + ], + "rotation": [ + -8.742278e-8, -2.384186e-7, 2.38418522e-7, 1 + ], + "scale": [ + 1.00000191, 0.999998868, 1.00000107 + ], + "mesh": 48, + "name": "LANDING_GEAR_33_LEFT_1" + }, { + "translation": [ + 0.66707325, 2.00849175, -0.241577148 + ], + "rotation": [ + -0.7096821, -0.09555769, -0.696978, 0.0379722454 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999998 + ], + "name": "Landing_Gear_34_left", + "children": [104, 105] + }, { + "translation": [ + -4.76837158e-7, 7.15255737e-7, -4.76837158e-7 + ], + "rotation": [ + 0, -2.38418437e-7, 1.86264e-9, 1 + ], + "scale": [ + 1.00000274, 1.00000083, 0.9999985 + ], + "mesh": 49, + "name": "LANDING_GEAR_34_LEFT_1" + }, { + "translation": [ + -0.09678888, 0.1311264, 0.0691962242 + ], + "rotation": [ + -0.8397728, -0.406130165, 0.352002054, 0.07703619 + ], + "scale": [ + 0.999999046, 1.00000119, 0.9999998 + ], + "name": "Landing_Gear_38_left", + "children": [106, 107] + }, { + "translation": [ + 0.00585567951, -0.005277157, -0.0000011920929 + ], + "rotation": [ + 4.74705331e-7, -0.396177, 8.033397e-7, 0.9181742 + ], + "scale": [ + 1.00001025, 0.9999978, 0.9999919 + ], + "mesh": 50, + "name": "Landing_Gear_32_left" + }, { + "translation": [ + -0.006328702, -0.943199158, 0.00322252512 + ], + "rotation": [ + -0.7569836, -0.6488944, 0.07686616, 0.001832599 + ], + "scale": [ + 0.9999984, 1.00000346, 0.9999983 + ], + "name": "LANDING_GEAR_32_LEFT_1", + "children": [108, 109, 116] + }, { + "translation": [ + 0.0160865784, 0.0256962776, -0.00000333786 + ], + "rotation": [ + 2.94344346e-7, 0.0177500751, 5.58881652e-7, 0.999842465 + ], + "scale": [ + 1, 0.9999999, 1 + ], + "mesh": 51, + "name": "Landing_Gear_30_left" + }, { + "translation": [ + 0, -2.38418579e-7, 4.76837158e-7 + ], + "rotation": [ + -1.71364093e-7, -3.35274137e-8, 5.960465e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999995, 1.00000036 + ], + "name": "Landing_Gear_27_left", + "children": [110, 111, 113, 115] + }, { + "translation": [ + -0.07389784, 0.454004884, -0.0186975 + ], + "rotation": [ + -0.18356587, 0.381382853, -0.104943141, 0.8999098 + ], + "scale": [ + 0.99999994, 0.9999971, 1.000003 + ], + "mesh": 52, + "name": "LANDING_GEAR_27_LEFT_1" + }, { + "translation": [ + -0.161371708, 0.885039, -0.0548084974 + ], + "rotation": [ + 0.0121803228, -0.607089639, 0.0937830061, 0.7889858 + ], + "scale": [ + 0.999996841, 0.9999983, 1.00000453 + ], + "name": "Landing_Gear_28_left", + "children": [112] + }, { + "translation": [ + 4.76837158e-7, 0.444334626, 0.00736904144 + ], + "rotation": [ + 0.00000153448536, -0.468125641, 0.000002689669, 0.8836619 + ], + "scale": [ + 0.9999737, 0.9999993, 1.00003 + ], + "mesh": 53, + "name": "LANDING_GEAR_28_LEFT_1" + }, { + "translation": [ + 0.0539302826, 0.152822375, -0.0107142925 + ], + "rotation": [ + -0.04510645, 0.07957641, 0.09312738, 0.9914436 + ], + "scale": [ + 0.9999985, 0.9999958, 1.00000453 + ], + "name": "Landing_Gear_23_left", + "children": [114] + }, { + "translation": [ + 0, 2.38418579e-7, -2.38418579e-7 + ], + "rotation": [ + -7.823108e-8, -8.10252061e-8, -7.45056772e-9, 1 + ], + "scale": [ + 0.999999762, 1.0000037, 0.9999962 + ], + "mesh": 54, + "name": "LANDING_GEAR_23_LEFT_1" + }, { + "translation": [ + -0.09444857, 0.30971384, -0.007365823 + ], + "rotation": [ + -0.183566138, 0.381383, -0.104943119, 0.899909735 + ], + "scale": [ + 0.999965131, 1.00000739, 1.00003088 + ], + "mesh": 55, + "name": "Landing_Gear_26_left" + }, { + "translation": [ + -1.28527832, 0.0296032429, 0.135627866 + ], + "rotation": [ + -0.0498267226, 0.05795893, -0.0002607252, 0.9970747 + ], + "scale": [ + 0.99999404, 1.00000179, 1.00000525 + ], + "name": "Landing_Gear_29_left", + "children": [117] + }, { + "translation": [ + -0.447705269, -0.06923854, 0.051782012 + ], + "rotation": [ + -0.6097387, -0.338331372, 0.6316665, -0.338744879 + ], + "scale": [ + 0.999999762, 1.00000548, 0.999993443 + ], + "mesh": 56, + "name": "LANDING_GEAR_29_LEFT_1" + }, { + "translation": [ + 0.276956558, 1.2843008, -0.173484325 + ], + "rotation": [ + -0.708400846, -0.000837276748, -0.70367527, -0.0548514463 + ], + "scale": [ + 0.9999982, 1.00000179, 1 + ], + "name": "Landing_Gear_20_left", + "children": [119, 124] + }, { + "translation": [ + -0.008528233, 0.0648286343, -0.0042090416 + ], + "rotation": [ + 0.5267732, 0.43828246, -0.377283126, 0.6229574 + ], + "scale": [ + 1, 1, 0.999999464 + ], + "name": "Landing_Gear_21_left", + "children": [120, 122, 123] + }, { + "translation": [ + -0.00144147873, -0.162924767, -0.0667929649 + ], + "rotation": [ + 0.5143717, -0.5180526, 0.4851355, 0.4813385 + ], + "scale": [ + 0.99999845, 1.00000036, 1.00000072 + ], + "name": "Landing_Gear_19_left", + "children": [121] + }, { + "translation": [ + -0.5397187, -0.00603103638, -0.291376829 + ], + "rotation": [ + 0.00426713657, 0.4907738, -0.173198283, 0.8538883 + ], + "scale": [ + 1.00001121, 0.999990165, 0.9999987 + ], + "mesh": 57, + "name": "LANDING_GEAR_19_LEFT_1" + }, { + "translation": [ + 4.76837158e-7, -4.76837158e-7, -1.1920929e-7 + ], + "rotation": [ + -1.862647e-9, 8.82124453e-8, -2.52842767e-7, 1 + ], + "scale": [ + 0.9999998, 0.999999046, 1.0000031 + ], + "mesh": 58, + "name": "LANDING_GEAR_21_LEFT_1" + }, { + "translation": [ + -9.536743e-7, -0.13403368, -0.00518023968 + ], + "rotation": [ + 4.84279781e-8, -9.413213e-8, 3.74281157e-8, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000048 + ], + "name": "Landing_Gear_41_left" + }, { + "translation": [ + 4.76837158e-7, 0, -4.76837158e-7 + ], + "rotation": [ + 3.54834356e-7, -4.769528e-7, 1.86265e-9, 1 + ], + "scale": [ + 1.00000334, 0.999997437, 0.9999999 + ], + "mesh": 59, + "name": "LANDING_GEAR_20_LEFT_1" + }, { + "translation": [ + 0.2054596, 2.51543021, 0.0104985237 + ], + "rotation": [ + 0.05778034, 0.701247156, 0.707739532, 0.06339251 + ], + "scale": [ + 1.00000048, 1.0000006, 0.9999989 + ], + "name": "Landing_Gear_07_left", + "children": [126, 127, 128] + }, { + "translation": [ + 0.004246235, 0.002342701, -0.00506520271 + ], + "rotation": [ + 0.001840842, 0.09832068, 0.00456322124, 0.995142639 + ], + "scale": [ + 0.999999344, 1.00000226, 1.0000006 + ], + "mesh": 60, + "name": "LANDING_GEAR_07_LEFT_1" + }, { + "translation": [ + 0.713954, -0.125073433, 0.177424431 + ], + "rotation": [ + -0.444532126, -0.450933218, 0.5486535, 0.5459211 + ], + "scale": [ + 1.000001, 1.00000107, 0.999999046 + ], + "name": "landing_gear08_left" + }, { + "translation": [ + 0.302407265, -0.1270957, -0.1663909 + ], + "rotation": [ + -0.4445324, -0.450934261, 0.548653364, 0.545920134 + ], + "scale": [ + 0.999999642, 1.00000262, 0.999999166 + ], + "name": "landing_gear01_left" + }, { + "translation": [ + 0.2576151, 2.26505852, -0.121347904 + ], + "rotation": [ + -0.7060459, 0.0425600223, -0.705824733, -0.0387208536 + ], + "scale": [ + 1.00000036, 1.00000167, 1.00000012 + ], + "name": "landing_gear07_left" + }, { + "translation": [ + 0.37328434, 3.202888, -0.0094332695 + ], + "rotation": [ + -0.001716404, -0.707084954, -0.00556211546, 0.7071046 + ], + "scale": [ + 0.9999992, 1.00000048, 0.99999994 + ], + "name": "Landing_Gear_10_left", + "children": [ + 131, + 132, + 134, + 135, + 151, + 152 + ] + }, { + "translation": [ + 4.76837158e-7, 0, 0.00000143051147 + ], + "rotation": [ + -1.86264582e-9, 1.52192825e-7, 4.769396e-7, 1 + ], + "scale": [ + 1.00000238, 1.00000012, 0.999999642 + ], + "mesh": 61, + "name": "LANDING_GEAR_10_LEFT_1" + }, { + "translation": [ + 0.02512598, -0.339024067, 0.11894083 + ], + "rotation": [ + -0.53749454, -0.5397919, -0.461148649, 0.455045432 + ], + "scale": [ + 0.9999951, 0.999999046, 1.00000632 + ], + "name": "Landing_Gear_08_left", + "children": [133] + }, { + "translation": [ + -4.76837158e-7, 4.76837158e-7, 0.0119392872 + ], + "rotation": [ + -1.164147e-10, -2.36556374e-7, 2.9104677e-11, 1 + ], + "scale": [ + 0.999997, 1.00000536, 0.9999993 + ], + "mesh": 62, + "name": "LANDING_GEAR_08_LEFT_1" + }, { + "translation": [ + -0.106812954, -0.1869855, 0.245285511 + ], + "rotation": [ + -0.99862957, -4.82746259e-7, 4.917588e-7, -0.05233586 + ], + "scale": [ + 1.00000107, 1.00000143, 0.9999998 + ], + "name": "landing_gear05_left" + }, { + "translation": [ + 0, 0.00338745117, -0.0809435844 + ], + "rotation": [ + -0.99862957, -1.53951171e-10, -6.803354e-11, -0.0523355044 + ], + "scale": [ + 0.99999994, 0.999999762, 1 + ], + "name": "Landing_Gear_09_left", + "children": [ + 136, + 137, + 139, + 141, + 145, + 148 + ] + }, { + "translation": [ + 0.04571581, -0.000412225723, 0.002076149 + ], + "rotation": [ + 0.000905919, 0.004437105, -0.0031852664, 0.9999847 + ], + "scale": [ + 1.00000465, 0.9999972, 0.9999999 + ], + "mesh": 63, + "name": "LANDING_GEAR_09_LEFT_1" + }, { + "translation": [ + 0.04093027, -0.241693735, -0.0619039536 + ], + "rotation": [ + -0.500420034, -0.500418, 0.499581784, -0.499579519 + ], + "scale": [ + 0.9999992, 1.000001, 1 + ], + "name": "Landing_Gear_35_left", + "children": [138] + }, { + "translation": [ + 4.76837158e-7, 9.536743e-7, 0 + ], + "rotation": [ + -2.38418352e-7, 0, -1.27674894e-14, 1 + ], + "scale": [ + 1.00000131, 1.00000679, 0.9999941 + ], + "mesh": 64, + "name": "LANDING_GEAR_35_LEFT_1" + }, { + "translation": [ + 0.0474247932, -0.24166441, 0.0612587929 + ], + "rotation": [ + -0.5004198, -0.500417769, 0.499582082, -0.499579728 + ], + "scale": [ + 0.9999991, 1.000001, 0.9999999 + ], + "name": "Landing_Gear_36_left", + "children": [140] + }, { + "translation": [ + -0.00000143051147, 9.536743e-7, 9.536743e-7 + ], + "rotation": [ + -2.82129918e-7, 7.546636e-8, -2.82129974e-7, 1 + ], + "scale": [ + 0.999994338, 1.000006, 1.00000238 + ], + "mesh": 65, + "name": "LANDING_GEAR_36_LEFT_1" + }, { + "translation": [ + 0.09416151, 0.312451124, 0.243170738 + ], + "rotation": [ + 0.5010935, -0.499796718, 0.49570924, 0.50336957 + ], + "scale": [ + 1.00000036, 1.00000036, 1.00000012 + ], + "name": "Landing_Gear_06_left", + "children": [142, 143, 144] + }, { + "translation": [ + 0, 9.536743e-7, 0 + ], + "rotation": [ + 2.38651239e-7, -2.91039658e-11, 2.846706e-10, 1 + ], + "scale": [ + 0.9999999, 1.000006, 0.9999954 + ], + "mesh": 66, + "name": "LANDING_GEAR_06_LEFT_1" + }, { + "translation": [ + 0.414316177, 0.08274412, -0.02635479 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear03_left" + }, { + "translation": [ + 0.217025757, 0.08245802, -0.258730173 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear02_left" + }, { + "translation": [ + 0.0517382622, -0.00169229507, 0.681097031 + ], + "rotation": [ + -8.662515e-7, 9.862437e-15, 7.1051156500000006e-15, 1 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_01_key_left", + "children": [146, 147] + }, { + "translation": [ + -0.00000143051147, -2.38418579e-7, -9.536743e-7 + ], + "rotation": [ + 8.02678642e-7, -9.126963e-8, -3.282905e-8, 1 + ], + "scale": [ + 0.9999655, 1.00003421, 1.00000215 + ], + "mesh": 67, + "name": "LWheel_01_still" + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, 0 + ], + "rotation": [ + 8.02678642e-7, -9.17353e-8, -3.329472e-8, 1 + ], + "scale": [ + 0.999952137, 1.000008, 1.0000416 + ], + "mesh": 68, + "name": "LWheel_01_blurred" + }, { + "translation": [ + 0.03893137, -0.00159454346, -0.7607932 + ], + "rotation": [ + -1, -3.5525578200000003e-15, 1.26194213e-14, 1.19248815e-8 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_02_key_left", + "children": [149, 150] + }, { + "translation": [ + 0.0000176429749, -0.00237965584, 0.00112390518 + ], + "rotation": [ + -1, 2.6077025e-8, 1.51339918e-7, -7.549791e-8 + ], + "scale": [ + 0.9999662, 1.00003672, 0.9999982 + ], + "mesh": 69, + "name": "LWheel_02_still" + }, { + "translation": [ + 0, -2.38418579e-7, 0 + ], + "rotation": [ + -1, 2.607704e-8, 1.51339918e-7, 1.19248789e-8 + ], + "scale": [ + 1.00001, 0.9999903, 1.00000131 + ], + "mesh": 70, + "name": "LWheel_02_blurred" + }, { + "translation": [ + 0.0153021812, -0.474268675, -0.275248051 + ], + "rotation": [ + -0.9986295, -5.223288e-7, 0.00000105891706, -0.05233606 + ], + "scale": [ + 1.000003, 0.999992669, 1.00000656 + ], + "name": "landing_gear06_left" + }, { + "translation": [ + -0.106812, -0.491230726, -0.296488762 + ], + "rotation": [ + -0.9992415, -2.31640115e-7, -0.00000165028121, -0.0389420353 + ], + "scale": [ + 0.9999983, 1.00000632, 0.9999982 + ], + "name": "landing_gear04_left" + }, { + "translation": [ + 1.22382164, -0.348029673, -0.153943539 + ], + "rotation": [ + 0.00730145676, -0.7070985, 0.00345581421, 0.707069039 + ], + "scale": [ + 0.999999464, 1.00000012, 1 + ], + "name": "Landing_Gear_14_left", + "children": [154] + }, { + "translation": [ + 0, -5.96046448e-8, -4.76837158e-7 + ], + "rotation": [ + 8.94069743e-8, 4.65010928e-8, 2.38418579e-7, 1 + ], + "scale": [ + 1.00000083, 1, 0.9999999 + ], + "mesh": 71, + "name": "LANDING_GEAR_14_LEFT_1" + }, { + "translation": [ + 7.87326145, -0.4715016, -1.4636035 + ], + "rotation": [ + -0.04368639, 0.5110596, 0.006458442, 0.85841006 + ], + "scale": [ + 1.0000267, 0.9999997, 0.9999734 + ], + "name": "Spoiler_hydrolics_06_left", + "children": [156, 158] + }, { + "translation": [ + 0.30559063, 0.37230444, 0.0004930496 + ], + "rotation": [ + -0.00121602661, 0.0246534385, -0.364978939, 0.93068856 + ], + "scale": [ + 0.999999, 0.999998868, 1.00000012 + ], + "name": "Spoiler_hydrolics_05_left", + "children": [157] + }, { + "translation": [ + 0.00003385544, 0.0000143051147, -0.00104141235 + ], + "rotation": [ + 0.7149424, -0.00611240743, 0.0373961963, 0.6981559 + ], + "scale": [ + 1.00004458, 0.999939442, 1.000017 + ], + "mesh": 72, + "name": "flap_hydrolics_05_left" + }, { + "translation": [ + -0.0002965927, 0.00123417377, 0.0163030624 + ], + "rotation": [ + 0.6683922, -0.240382642, -0.2368426, 0.662852764 + ], + "scale": [ + 1.00000036, 0.9999991, 0.999998569 + ], + "mesh": 73, + "name": "flap_hydrolics_06_left" + }, { + "translation": [ + 2.3125658, -0.8711244, -4.775808 + ], + "rotation": [ + 0.6289141, 0.328698784, -0.377832532, 0.594698846 + ], + "scale": [ + 0.999999, 1.00000024, 0.9999997 + ], + "name": "Landing_Gear_15_left", + "children": [160, 161] + }, { + "rotation": [ + 1.29896094e-14, -2.38415851e-7, -7.458364e-8, 1 + ], + "scale": [ + 1.00002491, 1.00000286, 0.999975 + ], + "mesh": 74, + "name": "LANDING_GEAR_15_LEFT_1" + }, { + "translation": [ + -0.107633591, 0.367097139, 0.221658289 + ], + "rotation": [ + -0.579571843, 0.415744662, -0.575418234, -0.400183469 + ], + "scale": [ + 0.9999995, 1.000001, 0.9999995 + ], + "name": "Landing_Gear_16_left", + "children": [162] + }, { + "translation": [ + 0.6249051, -0.00471544266, -0.710219145 + ], + "rotation": [ + -0.296004921, 0.308045179, -0.6393902, 0.63927263 + ], + "scale": [ + 1.0000124, 1.00000668, 0.9999837 + ], + "mesh": 75, + "name": "LANDING_GEAR_16_LEFT_1" + }, { + "translation": [ + 1.24259949, -1.15350151, -2.95930552 + ], + "rotation": [ + 0.479384363, -0.257725239, 0.833346248, 0.09644882 + ], + "scale": [ + 0.9999996, 0.999999344, 0.9999994 + ], + "name": "Door02_left", + "children": [164, 166] + }, { + "translation": [ + 0.04002762, 0.02811575, 0.0335917473 + ], + "rotation": [ + -0.00565157, 0.0104162926, 0.00392326154, 0.9999221 + ], + "scale": [ + 0.9999996, 1.00000083, 1 + ], + "mesh": 76, + "name": "DOOR02_LEFT_1", + "children": [165] + }, { + "translation": [ + -0.129808426, 0.896438, 0.611904144 + ], + "rotation": [ + 0.244051486, -0.7373904, 0.404470563, -0.482802123 + ], + "mesh": 77, + "name": "R_Door02_Decals_left" + }, { + "translation": [ + -0.129807949, 0.8964384, 0.6119034 + ], + "rotation": [ + 0.244051546, -0.737390339, 0.4044707, -0.482802 + ], + "scale": [ + 1.0000006, 1.00000155, 1.00000012 + ], + "mesh": 78, + "name": "Door02_Decals_left" + }, { + "translation": [ + 3.96934652, -0.816748261, -2.69679284 + ], + "rotation": [ + 0.538764954, -0.0777338743, 0.838860333, -0.00181733642 + ], + "scale": [ + 0.9999999, 0.9999993, 0.9999994 + ], + "name": "Door03_left", + "children": [168] + }, { + "translation": [ + 0, -5.96046448e-8, 9.536743e-7 + ], + "rotation": [ + -4.284085e-8, 1.63970952e-7, -1.60187483e-7, 1 + ], + "scale": [ + 1.00000036, 0.9999996, 0.9999999 + ], + "mesh": 79, + "name": "DOOR03_LEFT_1" + }, { + "translation": [ + 3.8755126, -0.573711038, -3.31409645 + ], + "rotation": [ + -0.96442163, 0.05358719, -0.258697569, -0.009747672 + ], + "scale": [ + 1, 0.9999997, 1 + ], + "name": "WING_DOOR02_left", + "children": [170] + }, { + "translation": [ + 0.381617069, 0.5928426, -0.4443121 + ], + "rotation": [ + -0.0253395233, -0.0279845018, 0.00070950354, 0.99928695 + ], + "scale": [ + 0.999999642, 1.00000072, 1.00000048 + ], + "mesh": 80, + "name": "Door04_left", + "children": [171] + }, { + "translation": [ + -0.0157232285, 0.06714821, 0.447405815 + ], + "rotation": [ + -0.539901137, -0.4216892, 0.5606983, -0.465083271 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 81, + "name": "R_Door04_Decals_left" + }, { + "translation": [ + 5.868531, -0.6075288, 2.41399121 + ], + "rotation": [ + 0.007325325, -0.259887159, -0.06454417, 0.9634517 + ], + "scale": [ + 0.9999994, 0.999999344, 0.999999642 + ], + "name": "Engine_PIVOT_LEFT_1", + "children": [ + 173, + 177, + 180, + 181, + 182, + 183 + ] + }, { + "translation": [ + 0.187080383, -1.39431429, 7.75744867 + ], + "rotation": [ + -0.706999362, -0.004892461, 0.7069988, -0.0167527739 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Reactor_Prop_Still_left", + "children": [174, 175, 176] + }, { + "translation": [ + 2.09179878, 0, -9.536743e-7 + ], + "rotation": [ + 1.14087008e-7, -0.7071068, -7.108259e-8, 0.7071067 + ], + "scale": [ + 1, 0.999999642, 0.9999995 + ], + "mesh": 82, + "name": "1_blurred_left" + }, { + "translation": [ + 2.09179878, 0, -9.536743e-7 + ], + "rotation": [ + 1.14087008e-7, -0.7071068, -7.108259e-8, 0.7071067 + ], + "scale": [ + 1, 0.999999642, 0.9999995 + ], + "mesh": 83, + "name": "1_slow_left" + }, { + "translation": [ + 42.1728134, -10.8525257, 9.806073 + ], + "rotation": [ + -0.867652059, 0.4971719, 2.64782159e-7, 2.11082863e-7 + ], + "scale": [ + 0.9999998, 0.9999998, 1.00000012 + ], + "mesh": 84, + "name": "1_Still_left" + }, { + "translation": [ + 0.185770988, -1.42669415, 2.07120037 + ], + "rotation": [ + -0.00841917, -0.000007856129, 0.0153245768, 0.9998472 + ], + "scale": [ + 0.997038, 1.00016522, 1.00284588 + ], + "name": "Reactor_Back_left", + "children": [178, 179] + }, { + "translation": [ + 9.536743e-7, -1.1920929e-7, -2.4586916e-7 + ], + "rotation": [ + -1.49026221e-7, 4.04725073e-11, 2.910382e-11, 1 + ], + "scale": [ + 1.00000036, 0.9999999, 0.9999994 + ], + "mesh": 85, + "name": "Engine_Duct_left" + }, { + "translation": [ + -9.805225, 10.7894783, -36.4868279 + ], + "rotation": [ + 0.351553738, 0.613522351, 0.3515536, 0.6135229 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000012 + ], + "mesh": 86, + "name": "Engine_Details_04_left" + }, { + "translation": [ + -9.662221, -0.181626782, 1.911462 + ], + "rotation": [ + -0.008386432, -3.383472e-7, 0.0153054595, 0.9998477 + ], + "scale": [ + 0.99999994, 0.999999642, 0.9999995 + ], + "mesh": 87, + "skin": 5, + "name": "Engine_Body_left" + }, { + "translation": [ + 0.188099861, -1.456358, 4.35355 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 88, + "name": "FX_EXHAUST_LEFT" + }, { + "translation": [ + -9.66222, -0.1816263, 1.91145885 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 89, + "name": "FROST_ENGINEL" + }, { + "translation": [ + 0.1700716, -1.13339233, 4.487426 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 90, + "name": "Livery_KLM_EngA" + }, { + "translation": [ + 3.62843657, -0.5176573, -4.124836 + ], + "rotation": [ + -0.0436866172, 0.511059642, 0.00645813253, 0.8584101 + ], + "scale": [ + 0.999999642, 0.999999046, 0.9999993 + ], + "name": "Spoiler_1_1_left", + "children": [185] + }, { + "translation": [ + 0.0533633232, 0.5337998, 0.108540535 + ], + "rotation": [ + 6.790424e-7, -0.70710665, 4.73591967e-7, 0.7071069 + ], + "scale": [ + 1.00000131, 0.9999998, 1.00000024 + ], + "mesh": 91, + "name": "SPOILER_1_1_LEFT_1" + }, { + "translation": [ + 7.982996, -0.0362906456, -1.76054883 + ], + "rotation": [ + -0.0436880365, 0.511059463, 0.006455744, 0.8584102 + ], + "scale": [ + 1.00002742, 0.9999997, 0.999972761 + ], + "name": "Spoiler_1_3_left", + "children": [187] + }, { + "translation": [ + -0.059469223, -0.4149642, -0.0848121643 + ], + "rotation": [ + 5.057536e-7, -0.7071062, 1.68774974e-7, 0.707107365 + ], + "scale": [ + 0.999984443, 0.9999972, 1.00001538 + ], + "mesh": 92, + "name": "SPOILER_1_3_LEFT_1" + }, { + "translation": [ + 5.91475, -0.2239846, -2.897406 + ], + "rotation": [ + -0.0452547148, 0.504299164, 0.005931459, 0.862322 + ], + "scale": [ + 1.000028, 0.9999999, 0.9999706 + ], + "name": "Spoiler_1_2_left", + "children": [189] + }, { + "translation": [ + -9.536743e-7, -5.96046448e-7, 0.00000381469727 + ], + "rotation": [ + 4.307765e-7, -0.7071068, 3.83364522e-7, 0.7071068 + ], + "scale": [ + 0.9999648, 1.00000024, 1.00003541 + ], + "mesh": 93, + "name": "SPOILER_1_2_LEFT_1" + }, { + "translation": [ + 5.84781456, -0.608062744, -2.62398887 + ], + "rotation": [ + -0.043685995, 0.5110597, 0.006459456, 0.85841006 + ], + "scale": [ + 0.9999993, 0.999998748, 0.9999998 + ], + "name": "Spoiler_hydrolics_04_left", + "children": [191, 193] + }, { + "translation": [ + 0.266388416, 0.3188628, -0.007379055 + ], + "rotation": [ + -0.00605567638, 0.0124739613, 0.4357108, 0.899979949 + ], + "scale": [ + 1.00000525, 1.00001335, 0.9999815 + ], + "name": "Spoiler_hydrolics_03_left", + "children": [192] + }, { + "translation": [ + 0.00000143051147, -9.536743e-7, 4.76837158e-7 + ], + "rotation": [ + 0.636156, 8.207753e-8, -1.93154133e-8, 0.771560431 + ], + "scale": [ + 1.00005281, 0.999935, 1.00001311 + ], + "mesh": 94, + "name": "flap_hydrolics_03_left" + }, { + "translation": [ + 0.002178669, 0.00168955326, 0.0149130821 + ], + "rotation": [ + 0.633813143, 0.313399851, 0.303529829, 0.6386949 + ], + "scale": [ + 1.000032, 0.99996525, 1.00000334 + ], + "mesh": 95, + "name": "flap_hydrolics_04_left" + }, { + "translation": [ + 3.50820732, -0.7972355, -3.85419559 + ], + "rotation": [ + -0.04368655, 0.511059642, 0.006458112, 0.8584101 + ], + "scale": [ + 0.9999995, 0.999999, 0.9999994 + ], + "name": "Spoiler_hydrolics_01_left", + "children": [195, 196] + }, { + "translation": [ + 0.0008029938, -0.000273942947, 0.0155282021 + ], + "rotation": [ + 0.647700548, 0.281892359, 0.2838282, 0.6484306 + ], + "scale": [ + 0.99999994, 1.00000036, 1 + ], + "mesh": 96, + "name": "flap_hydrolics_01_left" + }, { + "translation": [ + 0.2856431, 0.290298223, 0.00000190734863 + ], + "rotation": [ + 0.6595856, 0.287899733, 0.275730371, 0.637207448 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000012 + ], + "name": "Spoiler_hydrolics_02_left", + "children": [197] + }, { + "translation": [ + -7.15255737e-7, 0, 0 + ], + "rotation": [ + 1.75088644e-7, 7.450581e-9, -3.1086244700000004e-15, 1 + ], + "scale": [ + 0.9999995, 1.00000012, 1 + ], + "mesh": 97, + "name": "flap_hydrolics_02_left" + }, { + "translation": [ + -2.09532547, 0.117561162, 3.74393415 + ], + "rotation": [ + -0.00473340228, -0.259418756, -0.05196787, 0.964354157 + ], + "scale": [ + 0.999999464, 0.9999992, 0.999999464 + ], + "mesh": 98, + "name": "wing_landinglight_left" + }, { + "translation": [ + 12.9740458, -1.4153657, 6.55199146 + ], + "rotation": [ + 0.00732529536, -0.2598874, -0.06454403, 0.963451564 + ], + "scale": [ + 1.00000036, 1.00000012, 1.00000107 + ], + "name": "Engine_PIVOT_LEFT_2" + }, { + "translation": [ + 0.317629337, -0.32808125, -5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 2.86940356e-8, -1.9079441e-7 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "name": "Door03_Hydraulic01_left", + "children": [201] + }, { + "translation": [ + -8.940697e-8, 2.98023224e-8, 0 + ], + "rotation": [ + -8.47032947e-22, 1.05879118e-22, 0, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "mesh": 99, + "name": "Landing_Gear_02_left" + }, { + "translation": [ + 0.6497253, -2.102611, -5.016356 + ], + "rotation": [ + 0.490909845, 0.490909845, -0.508927763, 0.508927941 + ], + "name": "WING_DOOR03_left", + "children": [203, 205] + }, { + "translation": [ + 0.07994127, 0.32234937, -0.158693552 + ], + "name": "Door03_Hydraulic02_left", + "children": [204] + }, { + "translation": [ + 0, -1.1920929e-7, -4.76837158e-7 + ], + "rotation": [ + 0.472545475, 0.5420779, 0.454039246, 0.526023567 + ], + "scale": [ + 1, 1.00000012, 1 + ], + "mesh": 100, + "name": "Landing_Gear_01_left" + }, { + "rotation": [ + 0.005163249, 0.7185643, 0.00595812267, 0.6954159 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "mesh": 101, + "name": "R_Door01_left", + "children": [206] + }, { + "translation": [ + -0.16545105, 0.00853216648, -1.32357073 + ], + "rotation": [ + 6.186719e-10, 0.7071068, 3.98728169e-11, 0.7071067 + ], + "scale": [ + 0.99999994, 0.99999994, 0.9999998 + ], + "mesh": 102, + "name": "R_Door01_Decals_left" + }, { + "mesh": 103, + "name": "Body_front_Decals_center" + }, { + "mesh": 104, + "name": "windowGlass_center" + }, { + "mesh": 105, + "name": "Body_front_center" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "rotation": [ + 0.0270323772, 0, 0, 0.999634564 + ], + "name": "Landing_Gear_NosePart16_center", + "children": [ + 211, + 212, + 216, + 220, + 236, + 239, + 241, + 245, + 246, + 247, + 250, + 251, + 252, + 253 + ] + }, { + "translation": [ + 0, -1.1920929e-7, 0 + ], + "mesh": 106, + "name": "LANDING_GEAR_NOSEPART16_CENTER_1" + }, { + "translation": [ + 0.226090789, -0.9272857, 0.305862427 + ], + "rotation": [ + -0.0270318538, 0.00418857532, -0.00003651558, 0.9996258 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Landing_Gear_NosePart10_center", + "children": [213, 214] + }, { + "translation": [ + -1.49011612e-8, 0, 0.00000190734863 + ], + "rotation": [ + 0.02703123, -0.00000413227, 0.0002264537, 0.999634564 + ], + "scale": [ + 0.9999995, 0.999999344, 1.00000024 + ], + "mesh": 107, + "name": "LANDING_GEAR_NOSEPART10_CENTER_1" + }, { + "translation": [ + -0.0236788, 0.00500941277, -0.220270157 + ], + "rotation": [ + 0.0352128372, 0.09999999, -0.00323027675, 0.994358957 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Landing_Gear_NosePart10_center001", + "children": [215] + }, { + "translation": [ + 0.00000143051147, 0.0185215473, -0.000314712524 + ], + "rotation": [ + -0.008103587, -0.269562572, 0.002268357, 0.9629461 + ], + "scale": [ + 1, 1.0000006, 1.00000119 + ], + "mesh": 108, + "name": "Landing_Gear_NosePart11_center" + }, { + "translation": [ + -0.229184151, -0.9398352, 0.313922882 + ], + "rotation": [ + -0.0270323772, -4.13823678e-8, -1.43921968e-8, 0.999634564 + ], + "scale": [ + 1.00000012, 1.00000024, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center", + "children": [217, 218] + }, { + "translation": [ + -3.27825546e-7, 0.114622593, 0 + ], + "rotation": [ + 0.0270324182, 1.85978823e-8, -5.029292e-10, 0.999634564 + ], + "scale": [ + 1.00000036, 1.00000012, 1.00000024 + ], + "mesh": 109, + "name": "LANDING_GEAR_NOSEPART09_CENTER_1" + }, { + "translation": [ + 0.0319646746, 0.0176465511, -0.229705811 + ], + "rotation": [ + 0.0384532958, -0.0858134, -0.00141277455, 0.995567858 + ], + "scale": [ + 1.00000012, 0.9999998, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center001", + "children": [219] + }, { + "translation": [ + 7.15255737e-7, 0.01900673, -0.000457763672 + ], + "rotation": [ + -0.0120302476, -0.08268229, 0.0009981642, 0.9965029 + ], + "scale": [ + 0.9999988, 0.9999998, 1.00000119 + ], + "mesh": 110, + "name": "Landing_Gear_NosePart12_center" + }, { + "translation": [ + -3.14321369e-9, -0.9186151, -0.05517769 + ], + "rotation": [ + -2.33349866e-7, -0.1679142, -4.27881552e-8, 0.985801637 + ], + "scale": [ + 1.00000012, 1.00000012, 0.9999998 + ], + "name": "Gear_Wheel_center", + "children": [221, 222, 231] + }, { + "translation": [ + 0, -9.536743e-7, 0 + ], + "rotation": [ + 6.661338e-16, -8.942149e-8, -4.65661176e-10, 1 + ], + "scale": [ + 0.9999995, 1.00000024, 1.000001 + ], + "mesh": 111, + "name": "GEAR_WHEEL_CENTER_1" + }, { + "translation": [ + 0.025592804, -0.410430431, 0.0496406555 + ], + "rotation": [ + 0.000342083629, 0.205400854, 0.009056285, 0.978636 + ], + "scale": [ + 1.00000012, 0.9999996, 0.9999997 + ], + "name": "Landing_Gear_NosePart13_center", + "children": [223, 224, 228] + }, { + "translation": [ + 0.0235171318, 1.46494186, 0.0324039459 + ], + "rotation": [ + 0.00152149319, -0.0004701075, -0.008934234, 0.9999589 + ], + "scale": [ + 0.999999464, 1.00000072, 1.00000083 + ], + "mesh": 112, + "name": "LANDING_GEAR_NOSEPART13_CENTER_1" + }, { + "translation": [ + -0.005656481, -0.0457814932, -0.172786713 + ], + "rotation": [ + 0.7665125, -1.98397316e-7, 1.3196258e-7, 0.6422294 + ], + "scale": [ + 0.9999999, 1.00000072, 1.00000024 + ], + "name": "Landing_Gear_NosePart14_center", + "children": [225, 226, 227] + }, { + "translation": [ + 0.0101561546, -0.00192260742, -0.000730752945 + ], + "rotation": [ + -0.0255102459, -0.008765429, 0.00179048337, 0.999634564 + ], + "scale": [ + 1.00000358, 0.999998569, 1.00000024 + ], + "mesh": 113, + "name": "LANDING_GEAR_NOSEPART14_CENTER_1" + }, { + "translation": [ + 0.008430719, -0.368497849, -0.329550982 + ], + "rotation": [ + -0.7748584, -0.00707002264, -0.005481687, 0.632071555 + ], + "scale": [ + 0.99999994, 0.999999464, 1.00000048 + ], + "name": "gear_pipe_point_3_center" + }, { + "translation": [ + 0.002431035, 0.0204620361, -0.0752792358 + ], + "rotation": [ + -0.7826159, -0.00700203935, -0.00556876557, 0.6224405 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "gear_pipe_point_4_center" + }, { + "translation": [ + -0.00845921, -0.307320476, -0.00150299072 + ], + "rotation": [ + 0.000004078425, -0.0004563113, -0.008934856, 0.99996 + ], + "scale": [ + 0.9999999, 1.00000012, 0.99999994 + ], + "name": "Wheel_center", + "children": [229, 230] + }, { + "translation": [ + 0, -2.38418579e-7, -0.00000381469727 + ], + "rotation": [ + 2.79396462e-9, -2.38556737e-7, -7.182823e-8, 1 + ], + "scale": [ + 0.9999996, 1.000001, 1.00000119 + ], + "mesh": 114, + "name": "Wheel_Nose_center" + }, { + "translation": [ + -1.1920929e-7, -0.00000143051147, -0.00000762939453 + ], + "rotation": [ + -2.51456868e-7, 2.706654e-9, 1.16415141e-10, 1 + ], + "scale": [ + 1.00000155, 1.00000215, 0.9999995 + ], + "mesh": 115, + "name": "Wheel_Nose_blurred" + }, { + "translation": [ + -0.0414872169, 0.002967, -0.12130928 + ], + "rotation": [ + -0.5139819, -0.64576596, 0.48561582, -0.2880733 + ], + "scale": [ + 1.00000072, 1.00000012, 0.999999762 + ], + "name": "Landing_Gear_NosePart15_center", + "children": [232, 234, 235] + }, { + "translation": [ + -0.00251960754, 0.0005226147, 0.00076007843 + ], + "rotation": [ + 2.84217162e-14, 8.940688e-8, 7.105434e-15, 1 + ], + "scale": [ + 1.00000143, 0.999999046, 1.00000048 + ], + "mesh": 116, + "name": "LANDING_GEAR_NOSEPART15_CENTER_1", + "children": [233] + }, { + "translation": [ + -0.00000190734863, 0, 0.00000190734863 + ], + "rotation": [ + 2.302577e-8, 3.7252903e-8, -3.19744231e-14, 1 + ], + "mesh": 117, + "skin": 6, + "name": "gear_pipe_1_center" + }, { + "translation": [ + 0.289751053, 0.00052285206, -0.0499343872 + ], + "rotation": [ + -0.5000002, -0.500000358, 0.499999583, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_1_center" + }, { + "translation": [ + 0.212629318, 0.0005228169, -0.05453205 + ], + "rotation": [ + -0.500000238, -0.5000002, 0.499999732, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_5_center" + }, { + "translation": [ + 0.2793044, -0.5019189, -0.021528244 + ], + "rotation": [ + 0.63214463, -0.3321479, -0.34455055, 0.609389842 + ], + "scale": [ + 1.00000024, 0.99999994, 0.9999997 + ], + "name": "Door_Left02_hydraulic02_center", + "children": [237, 238] + }, { + "translation": [ + 0.021283865, 0.03582573, -0.04520595 + ], + "rotation": [ + 0.0583817624, 0.4792682, -0.534093261, 0.6940015 + ], + "scale": [ + 1.00000012, 1.00000024, 0.99999994 + ], + "name": "Door_Left02_hydraulic01_center" + }, { + "translation": [ + 0.00000107288361, 0, 1.1920929e-7 + ], + "rotation": [ + -4.06987851e-7, 1.49011665e-8, 1.86264471e-9, 1 + ], + "scale": [ + 0.999999642, 1.00000024, 1.00000036 + ], + "mesh": 118, + "name": "DOOR_LEFT02_HYDRAULIC02_CENTER_1" + }, { + "translation": [ + -0.000778198242, -0.671867967, 0.21672821 + ], + "rotation": [ + -0.00007376257, -0.8692236, 0.494419247, 0.0000236660471 + ], + "name": "Landing_Gear_NosePart07_center", + "children": [240] + }, { + "translation": [ + 0.00110228057, -0.0000705719, 0.000005722046 + ], + "rotation": [ + 0.0012347633, -0.00362768653, -0.0310337041, 0.999511 + ], + "scale": [ + 1.000001, 0.9999989, 1.00000024 + ], + "mesh": 119, + "name": "LANDING_GEAR_NOSEPART07_CENTER_1" + }, { + "translation": [ + -0.5013134, -0.144065619, 0.170331955 + ], + "rotation": [ + 0.429701567, 0.4297139, -0.5615561, 0.56156677 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart04_center", + "children": [242, 243] + }, { + "translation": [ + 0.0115642548, 1.00975037, -1.05466843 + ], + "rotation": [ + 9.968223e-7, -0.019031927, -5.87198031e-7, 0.999818861 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000012 + ], + "mesh": 120, + "name": "LANDING_GEAR_NOSEPART04_CENTER_1" + }, { + "translation": [ + 0.00000190734863, 1.1920929e-7, -1.76764107 + ], + "rotation": [ + 0, 0, 2.27373675e-13, 1 + ], + "name": "Landing_Gear_NosePart05_center", + "children": [244] + }, { + "translation": [ + 0.0180549622, 1.03389931, -0.09199715 + ], + "rotation": [ + 2.22056119e-16, -0.0101703554, -2.23517247e-7, 0.9999483 + ], + "scale": [ + 1.00000012, 1.00000024, 1.00000036 + ], + "mesh": 121, + "name": "LANDING_GEAR_NOSEPART05_CENTER_1" + }, { + "translation": [ + -0.27957353, -0.49132514, 0.131214142 + ], + "rotation": [ + -0.5045615, 0.495399147, 0.5045589, -0.495396525 + ], + "scale": [ + 1.00000048, 0.999999046, 1.00000012 + ], + "mesh": 122, + "name": "Landing_Gear_NosePart16_Decals_center" + }, { + "translation": [ + 0.00149638951, -0.263638139, 0.12938118 + ], + "rotation": [ + -0.0270323772, -2.38331481e-7, -6.445021e-9, 0.999634564 + ], + "scale": [ + 1.00000036, 0.999998868, 1.00000155 + ], + "mesh": 123, + "name": "cgear_landinglight_center" + }, { + "translation": [ + -0.2793044, -0.501918554, -0.02152443 + ], + "rotation": [ + -0.593563855, -0.336227626, 0.3405706, 0.647027552 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "name": "Door_Right02_hydraulic02_center", + "children": [248, 249] + }, { + "translation": [ + -0.021283865, -0.0358276367, 0.0452079773 + ], + "rotation": [ + 0.04388803, 0.429552048, -0.5823844, 0.6887579 + ], + "scale": [ + 0.99999994, 1.00000048, 0.99999994 + ], + "name": "Door_Right02_hydraulic01_center" + }, { + "translation": [ + 0, -0.00000381469727, 2.38418579e-7 + ], + "rotation": [ + -3.72529074e-9, 0, 1.86264493e-9, 1 + ], + "scale": [ + 1.00000012, 1.00000024, 0.99999994 + ], + "mesh": 124, + "name": "DOOR_RIGHT02_HYDRAULIC02_CENTER_1" + }, { + "translation": [ + -0.169818163, -0.327804923, 0.138235092 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 125, + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "translation": [ + 0.174989372, -0.328628778, 0.1374855 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 126, + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "translation": [ + -0.306189775, -0.196983218, 0.138235092 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 127, + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "translation": [ + 0.312226921, -0.197624326, 0.1374836 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 128, + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "translation": [ + 0.007133007, -0.478288829, 23.7857571 + ], + "rotation": [ + 0.00000354928, -0.7505983, 0.6607588, -0.0000114836384 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart06_center", + "children": [255, 261] + }, { + "translation": [ + 0, -0.09894562, 1.36242163 + ], + "rotation": [ + 0.009296398, -4.547671e-13, 5.11612942e-13, 0.9999568 + ], + "name": "Landing_Gear_NosePart02_center", + "children": [256, 258, 259] + }, { + "translation": [ + 0, 0.27699852, 0.04716277 + ], + "rotation": [ + 0.1933725, 0, -1.158739e-13, 0.9811255 + ], + "name": "Landing_Gear_NosePart01_center", + "children": [257] + }, { + "translation": [ + 0.0160457473, 0.009220123, -0.0109605789 + ], + "rotation": [ + -0.180295259, 0.179623008, 0.6762152, 0.691348135 + ], + "scale": [ + 0.9999976, 1.00000012, 1.00000191 + ], + "mesh": 129, + "name": "LANDING_GEAR_NOSEPART01_CENTER_1" + }, { + "translation": [ + 0.000226016156, -0.003932953, -0.00197851658 + ], + "rotation": [ + 0.0266335532, -0.02665565, 0.7066209, 0.7065883 + ], + "scale": [ + 1.00000012, 0.9999999, 0.999999046 + ], + "mesh": 130, + "name": "LANDING_GEAR_NOSEPART02_CENTER_1" + }, { + "translation": [ + 1.49011612e-8, 0.07812691, -0.0590516329 + ], + "rotation": [ + 0.0038900394, -0.00000305861067, 0.0000105023964, 0.99999243 + ], + "scale": [ + 0.9999999, 0.9999996, 1.00000036 + ], + "name": "Landing_Gear_NosePart03_center", + "children": [260] + }, { + "translation": [ + 0.00878264848, -0.004337311, 0.00383651257 + ], + "rotation": [ + -0.7071191, 0.00022329505, -0.7070944, 0.00036029733 + ], + "scale": [ + 0.9999973, 1.00000024, 1.000002 + ], + "mesh": 131, + "name": "LANDING_GEAR_NOSEPART03_CENTER_1" + }, { + "translation": [ + 0.00474187545, -0.000123977661, -0.000683069229 + ], + "rotation": [ + 0.0266523082, -0.0266367681, 0.7066041, 0.706605136 + ], + "scale": [ + 1.00000024, 1, 0.9999997 + ], + "mesh": 132, + "name": "LANDING_GEAR_NOSEPART06_CENTER_1" + }, { + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "name": "Wing_right", + "children": [263, 265, 272, 436] + }, { + "translation": [ + -0.317629337, 0.32808125, 5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 1.94817673e-8, -1.84558758e-7 + ], + "scale": [ + 0.9999999, 1.00000024, 0.9999999 + ], + "name": "Door03_Hydraulic01_right", + "children": [264] + }, { + "translation": [ + 1.1920929e-7, -2.98023224e-8, 4.76837158e-7 + ], + "rotation": [ + 1.42108547e-14, 0, 0, 1 + ], + "mesh": 133, + "name": "Landing_Gear_02_right" + }, { + "translation": [ + -1.450443, -1.40532589, 32.1805077 + ], + "rotation": [ + -0.6996959, 0.02121799, 0.08916648, 0.7085371 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Trim_Elevator_right", + "children": [266, 268, 269, 270, 271] + }, { + "translation": [ + -4.46584368, -4.07698631, -0.00621521473 + ], + "rotation": [ + 0.7352896, 0.102219775, 0.1015787, 0.662255347 + ], + "scale": [ + 1.0000006, 1.00000024, 1.0000006 + ], + "name": "Elevator_right", + "children": [267] + }, { + "translation": [ + 0.00000190734863, -0.00000238418579, -0.00001335144 + ], + "rotation": [ + -4.24683122e-7, -2.42143887e-8, -1.4901163e-8, 1 + ], + "scale": [ + 0.9999999, 0.99999994, 0.99999994 + ], + "mesh": 134, + "name": "ELEVATOR_RIGHT_1" + }, { + "translation": [ + 0.000002861023, 0.00000762939453, 2.38418579e-7 + ], + "rotation": [ + 3.49245965e-10, -3.7252903e-9, 6.10452844e-9, 1 + ], + "mesh": 135, + "name": "TRIM_ELEVATOR_RIGHT_1" + }, { + "translation": [ + -2.0646615, -1.33726311, -0.2853936 + ], + "rotation": [ + -0.0212182011, -0.699696064, 0.7085369, 0.08916638 + ], + "scale": [ + 0.999999464, 1.00000024, 0.99999994 + ], + "mesh": 136, + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "translation": [ + 6.54495764, 31.5664921, 0.619330764 + ], + "rotation": [ + -0.708536863, 0.08916645, -0.0212180633, 0.6996961 + ], + "scale": [ + 0.9999995, 1.00000024, 0.999999762 + ], + "mesh": 137, + "name": "FROST_ELEVATORR" + }, { + "translation": [ + 0.0290989876, -0.0197563171, 0.08571237 + ], + "rotation": [ + -0.708537042, 0.08916648, -0.02121799, 0.699695945 + ], + "scale": [ + 0.999999642, 1.00000024, 0.9999998 + ], + "mesh": 138, + "name": "Livery_KLM_ElevatorTrimR" + }, { + "translation": [ + -3.348375, 0.123601377, 1.04428136 + ], + "rotation": [ + 0.004733401, 0.259418637, 0.0519678779, 0.964354157 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "WING_BONE_RIGHT_00", + "children": [ + 273, + 275, + 277, + 289, + 292, + 296, + 300, + 302, + 304, + 306, + 310, + 314, + 318, + 367, + 370, + 434, + 435 + ] + }, { + "translation": [ + -1.24259973, 1.15350306, 2.95930767 + ], + "rotation": [ + 0.479384154, -0.2577262, 0.833346, 0.09644934 + ], + "scale": [ + 1.0000006, 1.00000012, 0.99999994 + ], + "name": "Door02_right", + "children": [274] + }, { + "translation": [ + -0.0195016861, -0.0166429281, -0.0205507278 + ], + "rotation": [ + 0.00101290736, -0.003430268, -0.009597717, 0.999947548 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "mesh": 139, + "name": "DOOR02_RIGHT_1" + }, { + "translation": [ + -3.96934962, 0.816749454, 2.69679642 + ], + "rotation": [ + 0.538764834, -0.07773489, 0.8388602, -0.001816788 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000012 + ], + "name": "Door03_right", + "children": [276] + }, { + "translation": [ + -0.0136728287, 0.03819281, -9.536743e-7 + ], + "rotation": [ + -4.284084e-8, 5.234033e-7, -1.62050128e-7, 1 + ], + "mesh": 140, + "name": "DOOR03_RIGHT_1" + }, { + "translation": [ + -5.868534, 0.60752964, -2.41399217 + ], + "rotation": [ + 0.00732532656, -0.259887159, -0.064544186, 0.9634517 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "name": "Engine_PIVOT_RIGHT_1", + "children": [ + 278, + 281, + 285, + 286, + 287, + 288 + ] + }, { + "translation": [ + -0.1857748, 1.42669618, -2.070343 + ], + "rotation": [ + -0.00838642847, -3.57871585e-7, 0.0153054669, 0.9998477 + ], + "scale": [ + 0.999999762, 1.00000048, 1 + ], + "name": "Reactor_Back_right", + "children": [279, 280] + }, { + "translation": [ + -9.536743e-7, 2.38418579e-7, 0.00000190734863 + ], + "rotation": [ + -1.50408482e-7, 4.762846e-8, 1.86262017e-9, 1 + ], + "scale": [ + 1, 1.00000012, 1 + ], + "mesh": 141, + "name": "Engine_Duct_right" + }, { + "translation": [ + 0.6345806, -1.40773451, -1.13393927 + ], + "rotation": [ + -0.131768852, 0.6626202, 0.7231121, -0.143806681 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000024 + ], + "mesh": 142, + "name": "Engine_Details_04_right" + }, { + "translation": [ + -0.187087059, 1.39431691, -7.757461 + ], + "rotation": [ + -0.70699966, -0.004893535, 0.7069985, -0.0167538542 + ], + "scale": [ + 1.00000036, 0.9999999, 0.9999994 + ], + "name": "Reactor_Prop_Still_right", + "children": [282, 283, 284] + }, { + "translation": [ + -42.1728439, 10.8525171, 9.806048 + ], + "rotation": [ + -0.497171938, -0.867652059, -0.000001815636, 3.30346325e-7 + ], + "scale": [ + 1.00000024, 0.999999642, 1.00000083 + ], + "mesh": 143, + "name": "2_Still_right" + }, { + "translation": [ + -2.09181213, 0.00000262260437, 0.000008583069 + ], + "rotation": [ + 0.707106352, -0.00000134985839, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000083, 1, 0.9999991 + ], + "mesh": 144, + "name": "2_blurred_right" + }, { + "translation": [ + -2.09181213, 0.00000262260437, 0.000008583069 + ], + "rotation": [ + 0.707106352, -0.00000134985839, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000083, 1, 0.9999991 + ], + "mesh": 145, + "name": "2_slow_right" + }, { + "translation": [ + 9.662225, 0.181626648, -1.91146219 + ], + "rotation": [ + -0.008386434, -4.26115918e-7, 0.0153054595, 0.9998477 + ], + "scale": [ + 0.99999994, 0.99999994, 0.9999999 + ], + "mesh": 146, + "skin": 7, + "name": "Engine_Body_right" + }, { + "translation": [ + -0.188096046, 1.45635879, -4.35354853 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 147, + "name": "FX_EXHAUST_RIGHT" + }, { + "translation": [ + 9.662219, 0.181626022, -1.91145992 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 148, + "name": "FROST_ENGINER" + }, { + "translation": [ + -0.172908783, 1.13330376, -4.48742437 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 149, + "name": "Livery_KLM_EngB" + }, { + "translation": [ + -1.22019887, -0.462972879, -3.0046134 + ], + "rotation": [ + 0.682610035, 0.0262489542, -0.0316506177, 0.7296251 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "FlapsKrueger_1_right", + "children": [290, 291] + }, { + "translation": [ + 0.053996563, 0.43056488, -0.5395664 + ], + "rotation": [ + -0.6736794, 0.0101103308, 0.0123353628, 0.7388516 + ], + "scale": [ + 0.999999762, 0.9999999, 1.00000012 + ], + "mesh": 150, + "name": "FLAPSKRUEGER_1_RIGHT_1" + }, { + "translation": [ + 4.28600359, 4.1310997, 0.2542377 + ], + "rotation": [ + 0.695221364, 0.16956304, 0.250215232, 0.6521565 + ], + "scale": [ + 0.9999997, 0.9999996, 0.9999996 + ], + "mesh": 151, + "name": "FROST_KRUEGER_R_1" + }, { + "translation": [ + -5.42594433, 0.5245416, 3.44597554 + ], + "rotation": [ + -0.04774639, 0.5168637, 0.00933412, 0.854684234 + ], + "scale": [ + 1.00000024, 1.0000006, 1.0000006 + ], + "name": "Flaps_1_right", + "children": [293, 295] + }, { + "translation": [ + -0.005323887, 0.341879964, -2.47923374 + ], + "rotation": [ + 0.7235138, 0.006729279, 0.05795712, 0.687839746 + ], + "scale": [ + 0.9999998, 0.9999999, 1.00000012 + ], + "name": "flap_hydrolics_17_right", + "children": [294] + }, { + "translation": [ + -0.0017156601, -0.0599632263, -0.008612633 + ], + "rotation": [ + -0.0197386723, 0.0160000511, 0.008083912, 0.999644458 + ], + "scale": [ + 1.00000012, 1.00000012, 1 + ], + "mesh": 152, + "name": "FLAP_HYDROLICS_17_RIGHT_1" + }, { + "translation": [ + 0.00000190734863, 0.543911934, 0.0131993294 + ], + "rotation": [ + 0.008577839, -0.707055, -0.008577938, 0.707054555 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "mesh": 153, + "name": "FLAPS_1_RIGHT_1" + }, { + "translation": [ + -2.31256652, 0.8711257, 4.775813 + ], + "rotation": [ + 0.6289141, 0.328698874, -0.377832651, 0.5946988 + ], + "scale": [ + 1.00000024, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_15_right", + "children": [297, 299] + }, { + "translation": [ + 0.107634544, -0.3670988, -0.2216587 + ], + "rotation": [ + -0.579570949, 0.415745556, -0.575418353, -0.400183737 + ], + "scale": [ + 1.00000083, 1.000002, 0.99999845 + ], + "name": "Landing_Gear_16_right", + "children": [298] + }, { + "translation": [ + -0.6249056, 0.00471591949, 0.710219145 + ], + "rotation": [ + -0.296006739, 0.308047533, -0.6393896, 0.6392713 + ], + "scale": [ + 1, 0.9999999, 0.9999999 + ], + "mesh": 154, + "name": "LANDING_GEAR_16_RIGHT_1" + }, { + "translation": [ + 0.00000143051147, -4.76837158e-7, -2.38418579e-7 + ], + "rotation": [ + 6.938353e-8, -2.38418124e-7, -1.60339e-7, 1 + ], + "mesh": 155, + "name": "LANDING_GEAR_15_RIGHT_1" + }, { + "translation": [ + -3.62844014, 0.5168278, 4.12484026 + ], + "rotation": [ + -0.04368652, 0.5110595, 0.00645816652, 0.8584102 + ], + "scale": [ + 0.9999996, 1.0000006, 1.00000012 + ], + "name": "Spoiler_1_1_right", + "children": [301] + }, { + "translation": [ + -0.05336523, -0.5338002, -0.10853672 + ], + "rotation": [ + 6.99732652e-7, -0.70710665, 4.41496979e-7, 0.7071069 + ], + "mesh": 156, + "name": "SPOILER_1_1_RIGHT_1" + }, { + "translation": [ + -5.914755, 0.223984957, 2.89741 + ], + "rotation": [ + -0.04528014, 0.5080569, 0.00573390163, 0.860113442 + ], + "scale": [ + 0.9999406, 1.00000036, 1.00005925 + ], + "name": "Spoiler_1_2_right", + "children": [303] + }, { + "translation": [ + 0.00000238418579, 2.38418579e-7, -0.00000238418579 + ], + "rotation": [ + 4.14677316e-7, -0.7071068, 3.99077919e-7, 0.7071067 + ], + "scale": [ + 1, 1.00000024, 0.99999994 + ], + "mesh": 157, + "name": "SPOILER_1_2_RIGHT_1" + }, { + "translation": [ + -7.98300171, 0.0362910032, 1.76055336 + ], + "rotation": [ + -0.0436879, 0.5110594, 0.00645576557, 0.8584102 + ], + "scale": [ + 0.999996543, 0.999997437, 1.00000763 + ], + "name": "Spoiler_1_3_right", + "children": [305] + }, { + "translation": [ + 0.0594716072, 0.414966583, 0.08480549 + ], + "rotation": [ + 5.19810669e-7, -0.7071062, 1.56031973e-7, 0.707107365 + ], + "scale": [ + 0.9999999, 1, 0.9999999 + ], + "mesh": 158, + "name": "SPOILER_1_3_RIGHT_1" + }, { + "translation": [ + -3.50821, 0.7972367, 3.85419965 + ], + "rotation": [ + -0.0436865352, 0.5110595, 0.00645813067, 0.8584102 + ], + "scale": [ + 1.0000006, 1.00000012, 1.00000024 + ], + "name": "Spoiler_hydrolics_01_right", + "children": [307, 309] + }, { + "translation": [ + -0.2856431, -0.2902993, 0.00000143051147 + ], + "rotation": [ + 0.659585953, 0.287899345, 0.27573052, 0.6372072 + ], + "scale": [ + 1.00000048, 1.00000048, 1.00000083 + ], + "name": "Spoiler_hydrolics_02_right", + "children": [308] + }, { + "translation": [ + 9.536743e-7, 0, 9.536743e-7 + ], + "rotation": [ + 1.3038516e-8, 1.63912787e-7, -1.75088644e-7, 1 + ], + "scale": [ + 0.99999994, 1, 0.99999994 + ], + "mesh": 159, + "name": "flap_hydrolics_02_right" + }, { + "translation": [ + -0.0008029938, 0.000272989273, -0.0155243874 + ], + "rotation": [ + 0.6477006, 0.281892359, 0.283828229, 0.6484306 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "mesh": 160, + "name": "flap_hydrolics_01_right" + }, { + "translation": [ + -5.847822, 0.6080638, 2.62399244 + ], + "rotation": [ + -0.0436855778, 0.5110596, 0.006460557, 0.8584101 + ], + "scale": [ + 0.9999967, 0.9999998, 1.000003 + ], + "name": "Spoiler_hydrolics_04_right", + "children": [311, 313] + }, { + "translation": [ + -0.266388416, -0.318862677, 0.00736522675 + ], + "rotation": [ + -0.00608323934, 0.0124876853, 0.435711771, 0.8999791 + ], + "scale": [ + 0.9999625, 1.00002575, 1.00001311 + ], + "name": "Spoiler_hydrolics_03_right", + "children": [312] + }, { + "translation": [ + -0.00000238418579, 4.76837158e-7, 9.536743e-7 + ], + "rotation": [ + 0.6361562, -2.89695343e-8, -1.5933243e-7, 0.7715603 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 161, + "name": "flap_hydrolics_03_right" + }, { + "translation": [ + -0.00218057632, -0.00168955326, -0.0149111748 + ], + "rotation": [ + 0.6338134, 0.3133998, 0.303529859, 0.6386947 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000012 + ], + "mesh": 162, + "name": "flap_hydrolics_04_right" + }, { + "translation": [ + -7.873269, 0.471502423, 1.46360469 + ], + "rotation": [ + -0.043686796, 0.5110597, 0.00645971065, 0.85841006 + ], + "scale": [ + 1.00001478, 1, 0.9999853 + ], + "name": "Spoiler_hydrolics_06_right", + "children": [315, 317] + }, { + "translation": [ + -0.3056016, -0.3723048, -0.000500679 + ], + "rotation": [ + -0.00120041845, 0.0246579, -0.3649802, 0.9306879 + ], + "scale": [ + 0.999999464, 1.00000393, 0.999998748 + ], + "name": "Spoiler_hydrolics_05_right", + "children": [316] + }, { + "translation": [ + -0.00003385544, -0.0000157356262, 0.001045227 + ], + "rotation": [ + 0.7149428, -0.006112392, 0.0373962075, 0.698155344 + ], + "scale": [ + 0.99999994, 1, 0.99999994 + ], + "mesh": 163, + "name": "flap_hydrolics_05_right" + }, { + "translation": [ + 0.000293254852, -0.00123441219, -0.0163040161 + ], + "rotation": [ + 0.6683923, -0.24038282, -0.236842722, 0.662852466 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000012 + ], + "mesh": 164, + "name": "flap_hydrolics_06_right" + }, { + "translation": [ + -8.314303, 0.00000125169754, 0.00000160932541 + ], + "rotation": [ + -8.894129e-8, 1.06228981e-7, -5.58793456e-9, 1 + ], + "scale": [ + 1, 1.00000048, 1 + ], + "name": "WING_BONE_RIGHT_01", + "children": [ + 319, + 322, + 324, + 330, + 332, + 362, + 364, + 366 + ] + }, { + "translation": [ + -2.87029362, 0.254272521, 1.324141 + ], + "rotation": [ + -0.006843229, 0.6832025, 0.0139845656, 0.730062962 + ], + "scale": [ + 1.00000024, 0.99999994, 0.999999762 + ], + "name": "Flaps_2_right", + "children": [320] + }, { + "translation": [ + 0.08635962, 0.170149446, -2.57623672 + ], + "rotation": [ + 0.7297014, -0.149418682, -0.107723, 0.658487439 + ], + "scale": [ + 1.00000083, 0.999999, 1.00000119 + ], + "name": "flap_hydrolics_18_right", + "children": [321] + }, { + "translation": [ + 0.00000166893, 0.00000762939453, -7.15255737e-7 + ], + "rotation": [ + 6.891787e-8, 6.70552254e-8, -5.40167058e-8, 1 + ], + "scale": [ + 1, 1.00000012, 1 + ], + "mesh": 165, + "name": "FLAP_HYDROLICS_18_RIGHT_1" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic1_SPOILER_2_1_right", + "children": [323] + }, { + "translation": [ + 0.000379085541, -0.0000175237656, -0.008710861 + ], + "rotation": [ + 0.646872044, 0.2754566, 0.286379755, 0.650897 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 166, + "name": "flap_hydrolics_09_right" + }, { + "translation": [ + -1.26626873, 0.35705173, 0.8797917 + ], + "rotation": [ + 0.0357553177, -0.105803348, 0.0137958387, 0.9936483 + ], + "scale": [ + 1.0000006, 1.00000012, 0.999999642 + ], + "name": "Hydrolic2_Flaps_1_1_right", + "children": [325, 327, 329] + }, { + "translation": [ + 0.00258350372, -0.3061065, 0.6527736 + ], + "rotation": [ + -0.00456417026, -0.004072003, -0.000149014391, 0.9999813 + ], + "scale": [ + 1.00000036, 0.99999994, 1.00000036 + ], + "name": "Flaps_1_1_right", + "children": [326] + }, { + "translation": [ + -0.523481369, 0.5627978, 0.0773825645 + ], + "rotation": [ + -0.03284924, 0.0177828725, 0.0032212697, 0.999296963 + ], + "mesh": 167, + "name": "FLAPS_1_1_RIGHT_1" + }, { + "translation": [ + 0.0025806427, -0.3045506, 0.651814461 + ], + "rotation": [ + 0.00173285324, -0.000023034203, -0.000235056825, 0.9999985 + ], + "scale": [ + 1.00000036, 1.00000012, 0.99999994 + ], + "name": "Hydrolic1_Flaps_1_1_right", + "children": [328] + }, { + "translation": [ + -0.6360674, 0.0407956839, 0.0415833 + ], + "rotation": [ + -0.0328764655, 0.0178137533, 0.00273070461, 0.999296963 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 168, + "name": "flap_hydrolics_07_right" + }, { + "translation": [ + 0.0536346436, 0.00392746925, -0.002532959 + ], + "rotation": [ + -0.0328682065, 0.0178199466, 0.002791134, 0.999296963 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "mesh": 169, + "name": "flap_hydrolics_08_right" + }, { + "translation": [ + -4.084032, 0.293872416, 0.4992954 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic2_SPOILER_2_1_right", + "children": [331] + }, { + "translation": [ + 0.0008568466, -0.001884222, -0.0116529465 + ], + "rotation": [ + 0.6472176, 0.276327938, 0.2876946, 0.6496031 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 170, + "name": "flap_hydrolics_10_right" + }, { + "translation": [ + -6.337867, 0.0336145163, 0.000215947628 + ], + "rotation": [ + 7.916242e-8, 9.260839e-8, -3.539026e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999999, 1.00000012 + ], + "name": "WING_BONE_RIGHT_02", + "children": [ + 333, + 336, + 338, + 340, + 342, + 344, + 346, + 348, + 358, + 359, + 360, + 361 + ] + }, { + "translation": [ + -6.30582237, 0.00921285152, 0.6295024 + ], + "rotation": [ + -0.006843452, 0.683202565, 0.0139844473, 0.730062962 + ], + "scale": [ + 1.00000012, 1.00000048, 1.0000006 + ], + "name": "Flaps_3_right", + "children": [334] + }, { + "translation": [ + 0.111464262, 0.127858639, 2.31747055 + ], + "rotation": [ + 0.703286, -0.06726212, -0.06384566, 0.704832137 + ], + "scale": [ + 1.00000191, 0.999998868, 0.999999642 + ], + "name": "flap_hydrolics_19_right", + "children": [335] + }, { + "translation": [ + -0.0000011920929, 0.00000190734863, -5.96046448e-7 + ], + "rotation": [ + 0, 3.35276127e-8, -1.64378434e-7, 1 + ], + "mesh": 171, + "name": "FLAP_HYDROLICS_19_RIGHT_1" + }, { + "translation": [ + -0.2144928, -0.019741416, 0.668693066 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic1_SPOILER_2_2_right", + "children": [337] + }, { + "translation": [ + 0.000108718872, -0.00009202957, -0.009029388 + ], + "rotation": [ + 0.6692538, 0.217644081, 0.228405729, 0.6727267 + ], + "scale": [ + 1.00000012, 0.9999999, 0.99999994 + ], + "mesh": 172, + "name": "flap_hydrolics_11_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic1_SPOILER_2_3_right", + "children": [339] + }, { + "translation": [ + -0.000696182251, -0.00013589859, -0.009149551 + ], + "rotation": [ + 0.693391144, 0.128252059, 0.139201581, 0.695257545 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "mesh": 173, + "name": "flap_hydrolics_13_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic1_SPOILER_2_4_right", + "children": [341] + }, { + "translation": [ + 0.00036907196, -0.000462293625, -0.00738716125 + ], + "rotation": [ + 0.702864468, 0.0674482659, 0.07868167, 0.70373404 + ], + "scale": [ + 1.00000024, 0.99999994, 1 + ], + "mesh": 174, + "name": "flap_hydrolics_15_right" + }, { + "translation": [ + -0.2045784, 0.171005368, 0.421416372 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic2_SPOILER_2_2_right", + "children": [343] + }, { + "translation": [ + 0.00151157379, 0.00104188919, -0.0128536224 + ], + "rotation": [ + 0.670056164, 0.217436269, 0.228743762, 0.6718798 + ], + "scale": [ + 0.9999999, 1, 1 + ], + "mesh": 175, + "name": "flap_hydrolics_12_right" + }, { + "translation": [ + -2.60531425, 0.109168172, 0.328037649 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic2_SPOILER_2_3_right", + "children": [345] + }, { + "translation": [ + 0.0005912781, -0.000117778778, -0.0129318237 + ], + "rotation": [ + 0.693963766, 0.128384724, 0.140233964, 0.6944538 + ], + "scale": [ + 1.00000012, 0.99999994, 0.9999999 + ], + "mesh": 176, + "name": "flap_hydrolics_14_right" + }, { + "translation": [ + -4.924349, 0.07270646, 0.26546222 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic2_SPOILER_2_4_right", + "children": [347] + }, { + "translation": [ + 0.00140953064, -0.000198602676, -0.0114078522 + ], + "rotation": [ + 0.7035865, 0.06700544, 0.07907148, 0.7030107 + ], + "scale": [ + 1, 1.00000012, 1 + ], + "mesh": 177, + "name": "flap_hydrolics_16_right" + }, { + "translation": [ + -6.56654739, 0.00651466846, -0.00213181973 + ], + "rotation": [ + 7.636844e-8, -3.37604327e-8, -2.71946135e-7, 1 + ], + "scale": [ + 1.00000036, 1.00000024, 1.00000012 + ], + "name": "WING_BONE_RIGHT_03", + "children": [349, 350, 351, 356, 357] + }, { + "translation": [ + 0.00313949585, 0.007908225, 0.4665305 + ], + "rotation": [ + 0.00851354748, -0.0145073244, 0.00494639948, 0.999846339 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000072 + ], + "name": "Aileron_1_right" + }, { + "translation": [ + -3.99923325, -0.02995944, 0.348880529 + ], + "rotation": [ + 0.008513322, -0.0145071112, 0.004946362, 0.999846339 + ], + "scale": [ + 1.0000006, 0.9999998, 1.00000048 + ], + "name": "Aileron_2_right" + }, { + "translation": [ + -5.34786224, -0.0235247612, 0.00155442953 + ], + "rotation": [ + -5.206093e-7, -2.95578445e-7, 4.65661358e-8, 1 + ], + "scale": [ + 1.00000012, 0.999999762, 1.00000024 + ], + "name": "WING_BONE_RIGHT_04", + "children": [352, 353, 354, 355] + }, { + "translation": [ + -5.1413517, -0.203313112, 1.33965993 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 178, + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "translation": [ + -0.9967365, -0.0491733551, -1.130012 + ], + "rotation": [ + -0.2594183, 0.004733398, 0.9643543, 0.05196754 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999998 + ], + "mesh": 179, + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "translation": [ + -0.6659126, -0.038210392, -1.22074091 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 180, + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "translation": [ + 0.045425415, -0.2883048, -1.03098571 + ], + "rotation": [ + 0.682595, 0.0266460124, -0.0320746265, 0.7296063 + ], + "scale": [ + 0.9999999, 1.00000083, 1.0000006 + ], + "name": "FlapsKrueger_5_right" + }, { + "translation": [ + 0.2617283, -0.112903118, -0.0147076249 + ], + "rotation": [ + 0.009750019, -0.0007162161, 0.9998518, 0.0141735421 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000036 + ], + "name": "Wing_Spoiler_2_5_right" + }, { + "translation": [ + -0.0365695953, -0.3669269, -1.4662689 + ], + "rotation": [ + 0.682594657, 0.0266457219, -0.0320744, 0.7296066 + ], + "scale": [ + 0.99999994, 1.00000048, 1 + ], + "name": "FlapsKrueger_4_right" + }, { + "translation": [ + -0.214468, -0.018866539, 0.668332756 + ], + "rotation": [ + 0.00760329748, 0.6947902, 0.0026336154, 0.7191675 + ], + "scale": [ + 0.9999999, 1.00000107, 1.00000012 + ], + "name": "Wing_Spoiler_2_2_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.00760334125, 0.6947902, 0.00263350061, 0.7191675 + ], + "scale": [ + 0.9999999, 1.0000006, 0.9999999 + ], + "name": "Wing_Spoiler_2_3_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603228, 0.6947921, 0.00263381517, 0.7191656 + ], + "scale": [ + 0.9999999, 1.00000072, 0.9999999 + ], + "name": "Wing_Spoiler_2_4_right" + }, { + "translation": [ + 0.2762146, -0.432391644, -2.03908229 + ], + "rotation": [ + 0.6825947, 0.0266456585, -0.0320743, 0.729606569 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_3_right" + }, { + "translation": [ + -1.75636578, -0.111109138, 1.0774467 + ], + "rotation": [ + -0.00158696191, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 1.00002742, 0.999999762, 0.9999723 + ], + "name": "Wing_Spoiler_1_4_right", + "children": [363] + }, { + "translation": [ + -0.00000190734863, -1.1920929e-7, 0.00000309944153 + ], + "rotation": [ + -3.55210261e-7, -6.42688462e-8, 1.86264515e-9, 1 + ], + "mesh": 181, + "name": "Spoiler_2_right" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.007352814, 0.694946051, 0.00291815167, 0.71901834 + ], + "scale": [ + 1.00000024, 1, 1.0000006 + ], + "name": "Wing_Spoiler_2_1_right", + "children": [365] + }, { + "translation": [ + 0.0005925894, -0.134916067, 0.0294237137 + ], + "rotation": [ + 9.313227e-9, 2.77849239e-7, -5.623861e-9, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 0.99999994 + ], + "mesh": 182, + "skin": 8, + "name": "Spoiler_2_1_right" + }, { + "translation": [ + 1.923686, -0.482328415, -2.70131159 + ], + "rotation": [ + 0.6825947, 0.026645679, -0.03207439, 0.729606569 + ], + "scale": [ + 0.9999993, 1.00000012, 1.00000036 + ], + "name": "FlapsKrueger_2_right" + }, { + "translation": [ + -3.87551522, 0.573712, 3.3141005 + ], + "rotation": [ + -0.96442163, 0.0535871238, -0.258697569, -0.009747602 + ], + "scale": [ + 1.00000048, 0.9999999, 0.999999762 + ], + "name": "WING_DOOR02_right", + "children": [368] + }, { + "translation": [ + -0.4253192, -0.5885855, 0.4365449 + ], + "rotation": [ + -0.031083269, 0.00574934669, 0.004094627, 0.99949193 + ], + "scale": [ + 1.00000012, 1.00000012, 1 + ], + "mesh": 183, + "name": "Door04_right", + "children": [369] + }, { + "translation": [ + 0.0157251358, -0.06714833, -0.447406769 + ], + "rotation": [ + -0.5399012, -0.4216892, 0.5606983, -0.465083241 + ], + "mesh": 184, + "name": "R_Door04_Decals_right" + }, { + "translation": [ + -3.864641, 0.5912173, 3.303027 + ], + "rotation": [ + 0.4957456, -0.0643499047, 0.86604017, -0.008358427 + ], + "scale": [ + 1.00000072, 0.99999994, 0.9999998 + ], + "name": "Wheel_Base_right", + "children": [ + 371, + 375, + 398, + 400, + 402, + 409, + 416, + 431, + 432 + ] + }, { + "translation": [ + -0.205456257, -2.515431, -0.0104970932 + ], + "rotation": [ + 0.0577802733, 0.7012474, 0.7077393, 0.0633924752 + ], + "scale": [ + 1.00000012, 1.00000191, 0.99999845 + ], + "name": "Landing_Gear_07_right", + "children": [372, 373, 374] + }, { + "translation": [ + -0.302409172, 0.1270957, 0.16639185 + ], + "rotation": [ + -0.444534153, -0.450937033, 0.5486514, 0.545918345 + ], + "scale": [ + 1.0000006, 1.00000083, 0.999999166 + ], + "name": "landing_gear01_right" + }, { + "translation": [ + -0.7139559, 0.12507534, -0.177423239 + ], + "rotation": [ + -0.444530368, -0.45093137, 0.548656, 0.545921445 + ], + "scale": [ + 1.00000155, 1.00000143, 0.99999845 + ], + "name": "landing_gear08_right" + }, { + "translation": [ + -0.004242897, -0.00234365463, 0.00506615639 + ], + "rotation": [ + 0.00184094289, 0.09832064, 0.00456321053, 0.9951427 + ], + "scale": [ + 1, 1.00000012, 1 + ], + "mesh": 185, + "name": "LANDING_GEAR_07_RIGHT_1" + }, { + "translation": [ + -0.373281956, -3.21106887, 0.009433746 + ], + "rotation": [ + -0.00171652681, -0.707084954, -0.00556244049, 0.7071046 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000083 + ], + "name": "Landing_Gear_10_right", + "children": [ + 376, + 378, + 394, + 395, + 396, + 397 + ] + }, { + "translation": [ + -0.0251255035, 0.339024067, -0.118941784 + ], + "rotation": [ + -0.5374941, -0.539788663, -0.461154252, 0.4550439 + ], + "scale": [ + 0.999981344, 0.9999963, 1.00002265 + ], + "name": "Landing_Gear_08_right", + "children": [377] + }, { + "translation": [ + -9.536743e-7, -0.00000143051147, -0.011939764 + ], + "rotation": [ + 2.73925252e-7, -2.393499e-7, -2.349625e-7, 1 + ], + "mesh": 186, + "name": "LANDING_GEAR_08_RIGHT_1" + }, { + "translation": [ + 4.76837158e-7, -0.00338840485, 0.08094406 + ], + "rotation": [ + -0.99862957, -4.432793e-8, 3.406478e-7, -0.05233552 + ], + "scale": [ + 0.999999762, 1.00000036, 1.00000024 + ], + "name": "Landing_Gear_09_right", + "children": [ + 379, + 383, + 385, + 387, + 390, + 393 + ] + }, { + "translation": [ + -0.09416199, -0.312451124, -0.243170738 + ], + "rotation": [ + 0.501094043, -0.499797136, 0.495709479, 0.5033683 + ], + "scale": [ + 1.00000107, 1.0000006, 1.00000012 + ], + "name": "Landing_Gear_06_right", + "children": [380, 381, 382] + }, { + "translation": [ + -0.217030048, -0.08245611, 0.2587304 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear02_right" + }, { + "translation": [ + -0.414316177, -0.08274174, 0.0263545513 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear03_right" + }, { + "translation": [ + 0, -9.536743e-7, -7.15255737e-7 + ], + "rotation": [ + 4.4121407e-8, 1.05326762e-7, -3.69982467e-9, 1 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 187, + "name": "LANDING_GEAR_06_RIGHT_1" + }, { + "translation": [ + -0.04093027, 0.24169302, 0.0619034767 + ], + "rotation": [ + -0.5004197, -0.5004178, 0.4995824, -0.4995793 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000072 + ], + "name": "Landing_Gear_35_right", + "children": [384] + }, { + "translation": [ + -4.76837158e-7, -9.536743e-7, 2.38418579e-7 + ], + "rotation": [ + -2.38418352e-7, 2.04017869e-8, -3.53902863e-8, 1 + ], + "scale": [ + 0.99999994, 1, 0.99999994 + ], + "mesh": 188, + "name": "LANDING_GEAR_35_RIGHT_1" + }, { + "translation": [ + -0.04742527, 0.2416637, -0.06125927 + ], + "rotation": [ + -0.5004193, -0.500418067, 0.499582171, -0.499579877 + ], + "scale": [ + 1.00000048, 0.99999845, 1.00000107 + ], + "name": "Landing_Gear_36_right", + "children": [386] + }, { + "translation": [ + 0.00000143051147, -9.536743e-7, -4.76837158e-7 + ], + "rotation": [ + -2.82129577e-7, 7.555355e-8, -2.82129918e-7, 1 + ], + "scale": [ + 0.99999994, 1, 0.99999994 + ], + "mesh": 189, + "name": "LANDING_GEAR_36_RIGHT_1" + }, { + "translation": [ + -0.0517377853, -0.00623846054, -0.681098 + ], + "rotation": [ + -8.662516e-7, -1.002765e-14, 2.13181821e-13, 1 + ], + "scale": [ + 1.00007963, 0.999921441, 0.999999166 + ], + "name": "tire_01_key_right", + "children": [388, 389] + }, { + "translation": [ + 4.76837158e-7, 4.76837158e-7, 4.76837158e-7 + ], + "rotation": [ + -1, -0.00000130827493, 2.37954154e-7, 9.655994e-7 + ], + "mesh": 190, + "name": "RWheel_01_blurred" + }, { + "translation": [ + 0.00000143051147, 2.38418579e-7, 0.00000143051147 + ], + "rotation": [ + -1, -0.00000130827493, 2.379542e-7, 9.97386e-7 + ], + "mesh": 191, + "name": "RWheel_01_still" + }, { + "translation": [ + -0.0389318466, -0.006542444, 0.759859562 + ], + "rotation": [ + -1, -9.94863236e-14, 9.66441757e-14, 1.19248815e-8 + ], + "scale": [ + 1.000081, 0.9999192, 0.999999642 + ], + "name": "tire_02_key_right", + "children": [391, 392] + }, { + "translation": [ + -4.76837158e-7, 2.38418579e-7, 0 + ], + "rotation": [ + 8.742297e-8, -1.57393742e-7, -0.00000126240775, 1 + ], + "mesh": 192, + "name": "RWheel_02_blurred" + }, { + "translation": [ + -0.000018119812, 0.00237965584, -0.00112390518 + ], + "rotation": [ + -5.97446956e-7, -1.95577087e-7, -0.0000012603125, 1 + ], + "mesh": 193, + "name": "RWheel_02_still" + }, { + "translation": [ + -0.04571581, 0.000411272049, -0.00207662582 + ], + "rotation": [ + 0.000905896362, 0.004437078, -0.00318528223, 0.9999847 + ], + "mesh": 194, + "name": "LANDING_GEAR_09_RIGHT_1" + }, { + "translation": [ + 0.106811047, 0.491230726, 0.296488762 + ], + "rotation": [ + -0.9992415, 0.00000166204075, -0.00000249417667, -0.0389420055 + ], + "scale": [ + 1.00004983, 0.9999272, 1.000025 + ], + "name": "landing_gear04_right" + }, { + "translation": [ + 0.106812477, 0.186984062, -0.245285988 + ], + "rotation": [ + -0.99862957, -5.59745729e-7, 9.06202558e-7, -0.0523358621 + ], + "scale": [ + 1.00000143, 1, 0.99999994 + ], + "name": "landing_gear05_right" + }, { + "translation": [ + -0.0153021812, 0.474267721, 0.275247574 + ], + "rotation": [ + -0.998629451, -4.54888777e-7, 0.000002030508, -0.0523382 + ], + "scale": [ + 1.00000143, 1.0000006, 0.9999997 + ], + "name": "landing_gear06_right" + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, -0.00000190734863 + ], + "rotation": [ + 0, 4.862695e-7, 4.76837073e-7, 1 + ], + "mesh": 195, + "name": "LANDING_GEAR_10_RIGHT_1" + }, { + "translation": [ + -1.22381783, 0.348030329, 0.153943539 + ], + "rotation": [ + 0.00730130542, -0.7070985, 0.00345573318, 0.707069039 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_14_right", + "children": [399] + }, { + "translation": [ + 0, -1.1920929e-7, 0 + ], + "rotation": [ + 8.940696e-8, 8.838832e-8, 2.38418579e-7, 1 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 196, + "name": "LANDING_GEAR_14_RIGHT_1" + }, { + "translation": [ + -0.2384944, -0.622866631, 0.0609898567 + ], + "rotation": [ + -0.738115668, -0.6531392, 0.109994896, 0.128436044 + ], + "scale": [ + 1, 1.00000024, 1 + ], + "name": "Landing_Gear_18_right", + "children": [401] + }, { + "translation": [ + -0.00000131130219, -9.536743e-7, -4.76837158e-7 + ], + "rotation": [ + 0.0000034819227, 1.21654e-8, -1.49011612e-7, 1 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "mesh": 197, + "name": "LANDING_GEAR_18_RIGHT_1" + }, { + "translation": [ + -0.27695322, -1.28430152, 0.173485756 + ], + "rotation": [ + -0.708400846, -0.000836311956, -0.7036754, -0.05485084 + ], + "scale": [ + 1.00000143, 1, 0.9999993 + ], + "name": "Landing_Gear_20_right", + "children": [403, 408] + }, { + "translation": [ + 0.008528233, -0.06482935, 0.00420856476 + ], + "rotation": [ + 0.526773155, 0.4382799, -0.377282143, 0.622959852 + ], + "scale": [ + 1.0000037, 1.00000608, 0.9999915 + ], + "name": "Landing_Gear_21_right", + "children": [404, 406, 407] + }, { + "translation": [ + 0.00144290924, 0.1629262, 0.06679213 + ], + "rotation": [ + 0.5143709, -0.5180562, 0.4851327, 0.481338263 + ], + "scale": [ + 0.999991357, 1.00000036, 1.00000954 + ], + "name": "Landing_Gear_19_right", + "children": [405] + }, { + "translation": [ + 0.5397196, 0.00603199, 0.291379452 + ], + "rotation": [ + 0.00426689768, 0.490774125, -0.173198238, 0.8538881 + ], + "scale": [ + 1.00000024, 0.99999994, 1.00000012 + ], + "mesh": 198, + "name": "LANDING_GEAR_19_RIGHT_1" + }, { + "translation": [ + 0.00000238418579, 0.134036064, 0.00517952442 + ], + "rotation": [ + 1.680337e-8, -3.11589247e-7, 3.5556468e-8, 1 + ], + "scale": [ + 0.9999948, 1.00000739, 0.9999984 + ], + "name": "Landing_Gear_41_right" + }, { + "rotation": [ + 3.72529074e-9, 8.695145e-8, -3.751675e-7, 1 + ], + "scale": [ + 0.9999999, 0.9999999, 0.9999999 + ], + "mesh": 199, + "name": "LANDING_GEAR_21_RIGHT_1" + }, { + "translation": [ + -9.536743e-7, -1.1920929e-7, 4.76837158e-7 + ], + "rotation": [ + 3.1478703e-7, -4.76895366e-7, -3.7252903e-9, 1 + ], + "mesh": 200, + "name": "LANDING_GEAR_20_RIGHT_1" + }, { + "translation": [ + -0.334146976, -2.01456738, 0.263353348 + ], + "rotation": [ + -0.7060457, 0.0425617956, -0.7058248, -0.03872242 + ], + "scale": [ + 1.000001, 1.00000024, 1.00000072 + ], + "name": "Landing_Gear_33_right", + "children": [410, 415] + }, { + "translation": [ + 0.117917061, -0.148765087, 0.04537964 + ], + "rotation": [ + -0.984737754, 0.008130239, -0.17385301, 0.0007825128 + ], + "scale": [ + 0.999999762, 0.9999993, 1.00000167 + ], + "name": "Landing_Gear_37_right", + "children": [411, 413, 414] + }, { + "translation": [ + 0.667953134, 0.5748277, 0.00707626343 + ], + "rotation": [ + -0.5088381, -0.496233046, 0.494221658, 0.5005811 + ], + "scale": [ + 0.999994457, 1.00000381, 1.00000322 + ], + "name": "Landing_Gear_17_right", + "children": [412] + }, { + "translation": [ + 0.0272250175, -0.00246906281, 0.408615947 + ], + "rotation": [ + 0.514378846, -0.518044353, 0.485144258, -0.48133105 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "mesh": 201, + "name": "LANDING_GEAR_17_RIGHT_1" + }, { + "translation": [ + 0.167813063, 0.00268483162, 0.00000238418579 + ], + "rotation": [ + -6.41455244e-8, -4.106647e-8, 4.51690951e-8, 1 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000107 + ], + "name": "Landing_Gear_31_right" + }, { + "translation": [ + -0.0101311207, -0.00364542, -0.000002861023 + ], + "rotation": [ + 1.1451715e-7, -0.173647925, 7.4614934e-7, 0.984807849 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 202, + "name": "LANDING_GEAR_31_RIGHT_1" + }, { + "translation": [ + 0, 4.76837158e-7, -4.76837158e-7 + ], + "rotation": [ + -8.742268e-8, -2.38418636e-7, 2.38418636e-7, 1 + ], + "mesh": 203, + "name": "LANDING_GEAR_33_RIGHT_1" + }, { + "translation": [ + -0.667070866, -2.00849319, 0.2415781 + ], + "rotation": [ + -0.709682167, -0.09555723, -0.6969779, 0.0379721373 + ], + "scale": [ + 1.00000048, 0.999999762, 1.00000131 + ], + "name": "Landing_Gear_34_right", + "children": [417, 430] + }, { + "translation": [ + 0.09678888, -0.131126165, -0.0691990852 + ], + "rotation": [ + -0.839773059, -0.406130224, 0.352001667, 0.07703543 + ], + "scale": [ + 1.00000072, 1.00000048, 0.9999989 + ], + "name": "Landing_Gear_38_right", + "children": [418, 429] + }, { + "translation": [ + 0.006328821, 0.9432006, -0.00322312117 + ], + "rotation": [ + -0.756983638, -0.64889437, 0.07686701, 0.00183209206 + ], + "scale": [ + 0.999998748, 1.000002, 1.00000048 + ], + "name": "Landing_Gear_32_right", + "children": [419, 426, 428] + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, -0.00000166893 + ], + "rotation": [ + -2.79384949e-7, -5.963352e-8, 5.96058953e-8, 1 + ], + "scale": [ + 1.000005, 1.00000274, 0.9999952 + ], + "name": "Landing_Gear_27_right", + "children": [420, 422, 424, 425] + }, { + "translation": [ + -0.05392933, -0.152823448, 0.0107153654 + ], + "rotation": [ + -0.0451062471, 0.07957671, 0.0931274, 0.9914436 + ], + "scale": [ + 1.00000119, 1.00000083, 0.999998748 + ], + "name": "Landing_Gear_23_right", + "children": [421] + }, { + "translation": [ + -0.00000190734863, -3.57627869e-7, -2.38418579e-7 + ], + "rotation": [ + -9.313227e-8, -3.11993119e-7, -4.09781968e-8, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 0.9999998 + ], + "mesh": 204, + "name": "LANDING_GEAR_23_RIGHT_1" + }, { + "translation": [ + 0.161372185, -0.885045052, 0.0548145771 + ], + "rotation": [ + 0.0121787246, -0.607089758, 0.093779996, 0.788986 + ], + "scale": [ + 1.00000322, 1.00000012, 0.999995232 + ], + "name": "Landing_Gear_28_right", + "children": [423] + }, { + "translation": [ + 0.000002503395, -0.4443372, -0.007370472 + ], + "rotation": [ + 0.00000149237155, -0.4681244, 0.00000267067048, 0.883662641 + ], + "mesh": 205, + "name": "LANDING_GEAR_28_RIGHT_1" + }, { + "translation": [ + 0.09444952, -0.309716821, 0.00736737251 + ], + "rotation": [ + -0.183566228, 0.3813832, -0.104943171, 0.8999095 + ], + "scale": [ + 1.00000012, 0.9999999, 1 + ], + "mesh": 206, + "name": "Landing_Gear_26_right" + }, { + "translation": [ + 0.07389927, -0.454007268, 0.0187008381 + ], + "rotation": [ + -0.183565885, 0.381382674, -0.104943179, 0.899909854 + ], + "scale": [ + 1, 0.9999998, 0.9999998 + ], + "mesh": 207, + "name": "LANDING_GEAR_27_RIGHT_1" + }, { + "translation": [ + 1.28528214, -0.0296049118, -0.135630727 + ], + "rotation": [ + -0.0498265065, 0.05795823, -0.000260304631, 0.997074842 + ], + "scale": [ + 0.9999991, 1.00000632, 0.9999972 + ], + "name": "Landing_Gear_29_right", + "children": [427] + }, { + "translation": [ + 0.4477067, 0.06923914, -0.05178535 + ], + "rotation": [ + -0.609737635, -0.3383364, 0.6316661, -0.3387425 + ], + "scale": [ + 0.99999994, 1, 1.00000012 + ], + "mesh": 208, + "name": "LANDING_GEAR_29_RIGHT_1" + }, { + "translation": [ + -0.016084671, -0.0256967545, 0.0000022649765 + ], + "rotation": [ + 3.76313636e-7, 0.0177504439, -5.29074669e-7, 0.999842465 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "mesh": 209, + "name": "Landing_Gear_30_right" + }, { + "translation": [ + -0.00585615635, 0.00527668, 0.00000160932541 + ], + "rotation": [ + 0.00000129021544, -0.396177, 1.05489306e-7, 0.9181742 + ], + "mesh": 210, + "name": "LANDING_GEAR_32_RIGHT_1" + }, { + "translation": [ + 9.536743e-7, 0, 0 + ], + "rotation": [ + 1.49011612e-8, -2.37487271e-7, -1.67638063e-8, 1 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "mesh": 211, + "name": "LANDING_GEAR_34_RIGHT_1" + }, { + "translation": [ + -0.257612228, -2.26505971, 0.121347904 + ], + "rotation": [ + -0.706045747, 0.04255996, -0.7058249, -0.0387206227 + ], + "scale": [ + 1, 1.0000006, 1.000001 + ], + "name": "landing_gear07_right" + }, { + "translation": [ + 0.00000143051147, 4.76837158e-7, 0 + ], + "rotation": [ + 1.94646418e-7, 4.01370926e-7, -4.656613e-8, 1 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "mesh": 212, + "name": "Landing_gear_Root_right", + "children": [433] + }, { + "translation": [ + -5.78419256, 1.01794493, 5.08792448 + ], + "rotation": [ + -0.0387214161, -0.705824733, -0.0425600223, 0.706045866 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "mesh": 213, + "name": "Landing_Gear_RightPart32_Decal_right" + }, { + "translation": [ + 2.09532642, -0.117559969, -3.74393725 + ], + "rotation": [ + -0.00473349728, -0.259418547, -0.0519679077, 0.964354157 + ], + "scale": [ + 1.0000006, 1.00000107, 1.00000012 + ], + "mesh": 214, + "name": "wing_landinglight_right" + }, { + "translation": [ + -12.9740658, 1.4153682, -6.55199766 + ], + "rotation": [ + -0.9643542, 0.05196784, -0.259418547, -0.004733256 + ], + "scale": [ + 1.00000119, 1.00000036, 0.999999 + ], + "name": "Engine_PIVOT_RIGHT_2" + }, { + "translation": [ + -0.6497253, 2.102611, 5.016356 + ], + "rotation": [ + 0.4909097, 0.490909636, -0.508927763, 0.508928239 + ], + "scale": [ + 0.9999998, 1, 1.000001 + ], + "name": "WING_DOOR03_right", + "children": [437, 439] + }, { + "translation": [ + -0.07994223, -0.3223496, 0.15869379 + ], + "rotation": [ + 1.22518031e-7, 1.05239437e-7, -1.40098223e-7, 1 + ], + "scale": [ + 1.00000012, 0.9999995, 1.0000006 + ], + "name": "Door03_Hydraulic02_right", + "children": [438] + }, { + "translation": [ + 0, 5.96046448e-8, 3.57627869e-7 + ], + "rotation": [ + 0.4725454, 0.5420782, 0.4540394, 0.5260232 + ], + "scale": [ + 1.00000012, 0.9999999, 1 + ], + "mesh": 215, + "name": "Landing_Gear_01_right" + }, { + "translation": [ + -9.536743e-7, -5.96046448e-8, 3.57627869e-7 + ], + "rotation": [ + 0.00516161975, 0.7185642, 0.0059563797, 0.695416 + ], + "scale": [ + 0.99999994, 0.99999994, 1.00000024 + ], + "mesh": 216, + "name": "Door01_right" + }, { + "mesh": 217, + "name": "lightpods_center" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "rotation": [ + -0.009162774, 0, 0, 0.999958038 + ], + "mesh": 218, + "name": "Undercarriage_Front_center" + }, { + "mesh": 219, + "name": "Glass_center" + }, { + "translation": [ + -0.6216232, 1.38451254, -26.3910179 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "name": "BACK_DOOR", + "children": [444, 449, 451] + }, { + "translation": [ + 1.51670659, 0.0593546629, 0.09595871 + ], + "name": "Rear_door", + "children": [445, 446, 447, 448] + }, { + "translation": [ + -0.02428627, -0.0504981279, -0.0693092346 + ], + "rotation": [ + -0.00356744416, -0.03858485, -0.00107257918, 0.9992484 + ], + "scale": [ + 0.00164638506, 0.00150018034, 0.00193848414 + ], + "mesh": 220, + "name": "PASSENGER_DOOR_2" + }, { + "translation": [ + 0.23453021, -0.06347895, 0.005973816 + ], + "rotation": [ + 9.992007e-16, -1, 7.450582e-9, 7.56725242e-8 + ], + "scale": [ + 1.00000012, 0.9999999, 1.00000024 + ], + "mesh": 221, + "name": "PASSENGER_DOOR_2_OUTSIDE" + }, { + "translation": [ + 0.283971548, 0.07695341, 0.310956955 + ], + "rotation": [ + -1.74620651e-10, -1, 1.769513e-8, 7.54851754e-8 + ], + "scale": [ + 1, 0.99999994, 1.00000036 + ], + "mesh": 222, + "name": "PASSENGER_DOOR_2_PORTHOLE" + }, { + "translation": [ + 0.213147163, -0.0667581558, 0.00331878662 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 223, + "name": "Livery_KLM_DoorB" + }, { + "translation": [ + 1.66407359, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Rear_door_pivot", + "children": [450] + }, { + "translation": [ + -0.00184822083, -0.06628418, 0.00227165222 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 224, + "name": "PASSENGER_DOOR_2_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 225, + "name": "INTERIOR2" + }, { + "translation": [ + -2.802113, 0.120608084, 17.4044781 + ], + "rotation": [ + 0, 0, 0.9848078, 0.173648223 + ], + "scale": [ + 1.59984982, 1.59984982, 1.59984982 + ], + "name": "CARGO_DOOR", + "children": [453, 455, 457] + }, { + "translation": [ + 0, 0, -0.00000190734863 + ], + "scale": [ + 0.7883396, 0.7883396, 0.7883396 + ], + "mesh": 226, + "name": "CARGO_DOOR_1", + "children": [454] + }, { + "translation": [ + -2.12045836, -0.6700189, -13.7996635 + ], + "rotation": [ + 0, 0, 0.9848078, -0.173648119 + ], + "scale": [ + 0.7928798, 0.7928798, 0.792880058 + ], + "mesh": 227, + "name": "CARGO_DOOR_OUTSIDE" + }, { + "translation": [ + -0.07027137, -0.09023255, 0.115065575 + ], + "rotation": [ + 0.00000272992838, 0.00000128662873, 0.9999597, -0.008979633 + ], + "scale": [ + 0.625058949, 0.625058949, 0.6250587 + ], + "name": "CARGO_DOOR_HINGE", + "children": [456] + }, { + "translation": [ + 0.508832932, 0.00215762854, 0.12950325 + ], + "rotation": [ + 3.3881317900000004e-21, -1.172396e-13, 0, 1 + ], + "scale": [ + 0.999999642, 0.999999642, 0.9999999 + ], + "mesh": 228, + "name": "CARGO_PISTON_2" + }, { + "translation": [ + -0.0781095, 0.09858918, 0.017739296 + ], + "rotation": [ + 0, 0, 0.9848078, -0.173648223 + ], + "scale": [ + 0.625058651, 0.625058651, 0.625058651 + ], + "mesh": 229, + "name": "Livery_KLM_Cargo" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + -0.164798126, -0.98632735, -4.44642041e-7, -0.000002661212 + ], + "scale": [ + 1.00000024, 1.00000024, 1 + ], + "name": "CARGO_PISTON", + "children": [459] + }, { + "translation": [ + 0.0035007, 0.00215780735, -0.129507065 + ], + "rotation": [ + 1.49011612e-8, -1, 2.379035e-14, 0.00000198284624 + ], + "mesh": 230, + "name": "CARGO_PISTON_1" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + 0.7071068, 0, 0, 0.7071067 + ], + "scale": [ + 0.7524738, 0.752473652, 0.752473652 + ], + "name": "CARGO_PISTON001" + }, { + "translation": [ + 0.6120134, 1.38451254, 22.0964947 + ], + "name": "FRONT_DOOR", + "children": [462, 468, 470] + }, { + "translation": [ + 1.51670647, 0.0593546629, 0.09595871 + ], + "name": "Passenger_door", + "children": [463, 467] + }, { + "translation": [ + 0.0464611053, -0.0504982471, -0.0693092346 + ], + "mesh": 231, + "name": "PASSENGER_DOOR_1", + "children": [464, 465, 466] + }, { + "translation": [ + 0.3973899, -0.005719185, -0.225822449 + ], + "rotation": [ + 0, -2.91038652e-11, -4.440892e-16, 1 + ], + "scale": [ + 0.999999642, 0.99999994, 0.99999994 + ], + "mesh": 232, + "name": "PASSENGER_DOOR_1_PORTHOLE" + }, { + "translation": [ + 0.171353817, 0.0248112679, 0.08783722 + ], + "rotation": [ + -2.32830671e-10, 2.79396817e-9, -1.110223e-16, 1 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "mesh": 233, + "name": "PASSENGER_DOOR_1_OUTSIDE" + }, { + "translation": [ + 0.1309638, 0.0121479034, 0.08275986 + ], + "rotation": [ + -2.32830671e-10, 2.79396817e-9, -1.110223e-16, 1 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "mesh": 234, + "name": "PASSENGER_DOOR_1_GASKET" + }, { + "translation": [ + 0.198403835, -0.03140521, 0.0151977539 + ], + "mesh": 235, + "name": "Livery_KLM_DoorA" + }, { + "translation": [ + 1.66407371, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Passenger_door_pivot", + "children": [469] + }, { + "translation": [ + -0.00184440613, -0.06628418, 0.00227165222 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 236, + "name": "PASSENGER_DOOR_1_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 237, + "name": "INTERIOR1" + }, { + "translation": [ + 0.190857127, 0.9710189, 27.28954 + ], + "rotation": [ + -0.5561995, 0.243252084, 0.728066444, -0.318417639 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000036 + ], + "name": "LeftWiper", + "children": [472] + }, { + "translation": [ + 0.00000190734863, -0.3225479, 0.09060097 + ], + "rotation": [ + 0.061628297, -0.7044163, -0.0616281778, 0.7044159 + ], + "scale": [ + 0.9999997, 0.999999762, 1 + ], + "name": "LeftWiper_Aux1" + }, { + "translation": [ + -0.190857157, 0.97101897, 27.28954 + ], + "rotation": [ + -0.318417519, -0.728066444, 0.243252143, 0.5561996 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "RightWiper", + "children": [474] + }, { + "translation": [ + -0.00000381469727, 0.322551727, -0.09060049 + ], + "rotation": [ + 0.06162833, -0.704416156, -0.06162816, 0.7044159 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "name": "RightWiper_Aux1" + }, { + "translation": [ + 5.083345, -0.373965651, -5.84260273 + ], + "rotation": [ + -0.706045747, 0.0425598659, -0.7058249, 0.0387208164 + ], + "scale": [ + 0.9999994, 1.00000048, 1.00000191 + ], + "mesh": 238, + "skin": 9, + "name": "Landing_Gear_04_left" + }, { + "translation": [ + 17.0303783, 0.926416, -9.990751 + ], + "rotation": [ + 0.01514239, 0.227483779, 0.06466887, 0.971514165 + ], + "scale": [ + 0.9999997, 0.99999994, 1.00000072 + ], + "mesh": 239, + "skin": 10, + "name": "FLAPS_2_LEFT_1" + }, { + "translation": [ + 23.1576939, 2.0796392, -12.98575 + ], + "rotation": [ + 0.0149800908, 0.245807916, 0.0544527732, 0.967672 + ], + "scale": [ + 1.00000083, 0.9999994, 1.00000048 + ], + "mesh": 240, + "skin": 11, + "name": "Aileron_left" + }, { + "translation": [ + 4.767606, -1.72082734, -5.89186335 + ], + "rotation": [ + -0.0104310513, -0.05726971, 0.9821465, 0.178884581 + ], + "scale": [ + 0.999989569, 0.9999996, 1.00001109 + ], + "mesh": 241, + "skin": 12, + "name": "Landing_Gear_22_left" + }, { + "translation": [ + 0.665097535, -2.53030324, 23.1944962 + ], + "rotation": [ + 0.7254565, 0.04967562, 0.06742373, 0.6831539 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 242, + "skin": 13, + "name": "DOOR_LEFT02_HYDRAULIC01_CENTER_1" + }, { + "translation": [ + 0.665097535, -2.53030324, 23.1944962 + ], + "rotation": [ + 0.7254565, 0.04967562, 0.06742373, 0.6831539 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 243, + "skin": 14, + "name": "DOOR_RIGHT02_HYDRAULIC01_CENTER_1" + }, { + "translation": [ + -17.0303783, 0.926416, -9.990751 + ], + "rotation": [ + -0.971514165, 0.06466888, -0.2274838, 0.0151423886 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 244, + "skin": 15, + "name": "FLAPS_2_RIGHT_1" + }, { + "translation": [ + -18.75111, 1.65194607, -8.437931 + ], + "rotation": [ + -0.953088462, 0.0480715372, -0.298470944, 0.0150541589 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "mesh": 245, + "skin": 16, + "name": "FLAPSKRUEGER_2_RIGHT_1" + }, { + "translation": [ + -23.1576939, 2.0796392, -12.98575 + ], + "rotation": [ + -0.967671931, 0.0544527657, -0.245807916, 0.0149800908 + ], + "scale": [ + 0.9999998, 1, 0.999999762 + ], + "mesh": 246, + "skin": 17, + "name": "Aileron_right" + }, { + "translation": [ + 4.76837158e-7, 0, -9.536743e-7 + ], + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "mesh": 247, + "skin": 18, + "name": "Flaps_Details_Spoiler_right" + }, { + "translation": [ + -5.032778, -3.417544, -5.55187273 + ], + "rotation": [ + 0.501094043, -0.499797046, 0.49570927, 0.5033686 + ], + "scale": [ + 1, 0.9999999, 1 + ], + "mesh": 248, + "skin": 19, + "name": "LANDING_GEAR_37_RIGHT_1" + }, { + "translation": [ + -5.083345, -0.373965651, -5.84260273 + ], + "rotation": [ + 0.0387205742, 0.7058249, 0.0425596163, 0.7060458 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 249, + "skin": 20, + "name": "Landing_Gear_04_right" + }, { + "translation": [ + -4.767606, -1.72082734, -5.89186335 + ], + "rotation": [ + 0.178884566, -0.982146442, -0.05726971, 0.0104314219 + ], + "scale": [ + 0.9999999, 1, 1 + ], + "mesh": 250, + "skin": 21, + "name": "Landing_Gear_22_right" + }, { + "translation": [ + 0, 0, -3.57627869e-7 + ], + "rotation": [ + -1, 0, 0, -4.371139e-8 + ], + "mesh": 251, + "skin": 22, + "name": "Undercarriage_right" + }, { + "translation": [ + 0.0008451908, 3.87055969, -0.13583234 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 252, + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "translation": [ + 0.7143089, 1.52168274, -37.00236 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 253, + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "translation": [ + -0.7061607, 1.52168584, -37.0003777 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 254, + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "translation": [ + 3.16649675e-7, -2.545454, 1.60331059 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 255, + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "translation": [ + -3.42732048, -0.176593766, 3.17954969 + ], + "rotation": [ + -7.54979e-8, -1, -7.54979e-8, -5.6999333100000005e-15 + ], + "mesh": 256, + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "translation": [ + 3.424549, -0.176594272, 3.16573286 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 257, + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "translation": [ + 2.57077742, 1.38609684, 21.8967667 + ], + "scale": [ + 0.99999994, 1, 1.00000012 + ], + "mesh": 258, + "name": "Porthole_Blocker_center" + }, { + "translation": [ + 3.36336136, -0.176594272, 3.26802778 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 259, + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "translation": [ + -3.36571121, -0.176593781, 3.267181 + ], + "rotation": [ + 0, -1, 0, -4.371139e-8 + ], + "mesh": 260, + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "translation": [ + -2.73759484, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 261, + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "translation": [ + 2.73906183, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 262, + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "translation": [ + -0.71072036, 1.52026653, -36.9864731 + ], + "mesh": 263, + "name": "tail_strobe_right" + }, { + "translation": [ + 0.71072036, 1.52026653, -36.9864769 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 264, + "name": "tail_strobe_left" + }, { + "translation": [ + 3.16649675e-7, -2.50236368, 1.60255623 + ], + "mesh": 265, + "name": "body_beacon2_center" + }, { + "translation": [ + 3.017485e-7, 3.7708, 16.2127 + ], + "mesh": 266, + "name": "body_beacon1_center" + }, { + "translation": [ + -1.85954881, -0.838579834, 17.40458 + ], + "scale": [ + 1.261225, 1.261225, 1.261225 + ], + "mesh": 267, + "name": "CARGO_INTERIOR" + }, { + "mesh": 268, + "name": "FROST_FUSELAGE" + }, { + "mesh": 269, + "skin": 23, + "name": "FROST_WINGR" + }, { + "translation": [ + 18.75111, 1.65194607, -8.437931 + ], + "rotation": [ + 0.0150541924, 0.2984709, 0.0480716079, 0.953088462 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 270, + "skin": 24, + "name": "FROST_KRUEGER_L_2" + }, { + "mesh": 271, + "skin": 25, + "name": "FROST_KRUEGER_R_2" + }, { + "mesh": 272, + "skin": 26, + "name": "FROST_WINGL" + }, { + "mesh": 273, + "skin": 27, + "name": "wiper" + }, { + "translation": [ + -0.316766739, -2.02013946, 23.8162861 + ], + "rotation": [ + -0.49999997, 6.53831e-8, 0.866025448, 3.77489471e-8 + ], + "mesh": 274, + "name": "GROUND_GPUPipe" + }, { + "translation": [ + 2.78484678, -0.623671055, -4.947361 + ], + "mesh": 275, + "name": "GROUND_FuelPipe" + }, { + "mesh": 276, + "name": "WINDSHIELD" + }, { + "translation": [ + -1.84505272, 2.25915146, 6.5716815 + ], + "rotation": [ + 0, 0, -0.08715575, 0.9961947 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "mesh": 277, + "name": "HublotIn_001" + }, { + "translation": [ + 1.77136326, 2.25915146, -15.0845985 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 278, + "name": "HublotIn_002" + }, { + "translation": [ + 0, 1.18405318, 26.3588 + ], + "mesh": 279, + "name": "DRONE_COLLISION_IN" + }, { + "translation": [ + -0.00000190734863, 7.15255737e-7, 0 + ], + "mesh": 280, + "skin": 28, + "name": "RegNumber_Wing" + }, { + "translation": [ + 0, 3.52926064, -4.46892834 + ], + "mesh": 281, + "name": "Livery_KLM_FuselageA" + }, { + "translation": [ + 0.00197641877, 2.095257, -22.4388657 + ], + "mesh": 282, + "name": "Livery_KLM_RegNumber" + }, { + "translation": [ + 0, 3.23557115, -3.81251049 + ], + "mesh": 283, + "name": "Livery_KLM_FuselageB" + }, { + "translation": [ + 7.04239655, 0, -11.7752094 + ], + "mesh": 284, + "name": "Glass" + }, { + "translation": [ + 0.00000190734863, 7.15255737e-7, 0 + ], + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "mesh": 285, + "skin": 29, + "name": "Wing_body_right" + }, { + "translation": [ + 0.00000190734863, 7.15255737e-7, 0 + ], + "rotation": [ + -2.38418579e-7, 0, 0, 1 + ], + "mesh": 286, + "skin": 30, + "name": "Wing_body_left" + }, { + "translation": [ + -0.000002663216946530156, 9.241080284118652, -36.35052490234375 + ], + "rotation": [ + 0.28291264176368713, 0.5717583298683167, 0.4160439670085907, 0.6480435132980347 + ], + "mesh": 287, + "name": "Rudder_LIVERYDECAL" + }, { + "translation": [ + 0.7220770120620728, -1.9521019458770752, 23.631929397583008 + ], + "rotation": [ + 0.715813398361206, 0.03603672236204147, 0.6965124607086182, 0.034396108239889145 + ], + "mesh": 288, + "name": "C_Door_02_Left_LIVERYDECALS" + }, { + "translation": [ + -0.726417064666748, -1.9530106782913208, 23.631912231445312 + ], + "rotation": [ + -0.03489641100168228, 0.6998390555381775, -0.03553038462996483, 0.7125623822212219 + ], + "mesh": 289, + "name": "C_Door_02_right_LIVERYDECALS" + }, { + "translation": [ + -2.3514771461486816, 1.3771086931228638, -26.49029541015625 + ], + "mesh": 290, + "name": "DoorB_LIVERYDECAL" + }, { + "mesh": 291, + "name": "Livery_KLM_FuselageA.001" + }, { + "translation": [ + 0.6497254371643066, -2.1026113033294678, -5.016356945037842 + ], + "rotation": [ + 0.712636411190033, 0.7015312910079956, -0.0006685919361189008, 0.001663838280364871 + ], + "mesh": 292, + "name": "Door01_left_LIVERYDECAL" + }, { + "translation": [ + -0.6497254967689514, -2.102611780166626, -5.016357421875 + ], + "rotation": [ + -0.0016642240807414055, -0.0006689373985864222, -0.7015330791473389, 0.7126347422599792 + ], + "mesh": 293, + "name": "Door01_right_LIVERYDECAL" + }, { + "mesh": 294, + "name": "livery_vstab" + }, { + "translation": [ + -2.7386319637298584, -0.0703480988740921, 17.432857513427734 + ], + "mesh": 295, + "name": "Cargo_Door_LIVERYDECAL" + }, { + "mesh": 296, + "name": "Plane.001" + }, { + "mesh": 297, + "name": "Plane.002" + }, { + "mesh": 298, + "name": "Plane.005" + }, { + "mesh": 299, + "name": "Plane.006" + }, { + "scale": [ + 1.0019999742507935, 1, 1 + ], + "mesh": 300, + "name": "Plane.010" + } + ], + "scene": 0, + "scenes": [ + { + "nodes": [ + 0, + 1, + 2, + 3, + 4, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 0, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 37, + 38 + ], + "skeleton": 4, + "name": "skeleton #0" + }, { + "inverseBindMatrices": 1, + "joints": [ + 4, + 26, + 34, + 91, + 130, + 135, + 141, + 143, + 144, + 151 + ], + "skeleton": 4, + "name": "skeleton #1" + }, { + "inverseBindMatrices": 2, + "joints": [ + 26, 34 + ], + "skeleton": 26, + "name": "skeleton #2" + }, { + "inverseBindMatrices": 3, + "joints": [ + 34, + 35, + 36, + 37, + 38, + 42, + 46, + 65, + 83, + 84 + ], + "skeleton": 34, + "name": "skeleton #3" + }, { + "inverseBindMatrices": 4, + "joints": [ + 35, + 36, + 47, + 48, + 64, + 66 + ], + "skeleton": 35, + "name": "skeleton #4" + }, { + "inverseBindMatrices": 5, + "joints": [ + 34, 35, 172 + ], + "skeleton": 34, + "name": "skeleton #5" + }, { + "inverseBindMatrices": 6, + "joints": [ + 220, + 222, + 224, + 226, + 227, + 231, + 234 + ], + "skeleton": 220, + "name": "skeleton #6" + }, { + "inverseBindMatrices": 7, + "joints": [ + 272, 277, 318 + ], + "skeleton": 272, + "name": "skeleton #7" + }, { + "inverseBindMatrices": 8, + "joints": [ + 318, + 332, + 358, + 359, + 360, + 364 + ], + "skeleton": 318, + "name": "skeleton #8" + }, { + "inverseBindMatrices": 9, + "joints": [ + 4, + 26, + 34, + 91, + 125, + 127, + 128, + 129, + 130, + 134, + 152 + ], + "skeleton": 4, + "name": "skeleton #9" + }, { + "inverseBindMatrices": 10, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 49, + 68 + ], + "skeleton": 4, + "name": "skeleton #10" + }, { + "inverseBindMatrices": 11, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 37, + 44, + 45 + ], + "skeleton": 4, + "name": "skeleton #11" + }, { + "inverseBindMatrices": 12, + "joints": [ + 4, + 26, + 34, + 91, + 96, + 97, + 101, + 118, + 119, + 123 + ], + "skeleton": 4, + "name": "skeleton #12" + }, { + "inverseBindMatrices": 13, + "joints": [ + 4, + 17, + 18, + 210, + 236, + 237 + ], + "skeleton": 4, + "name": "skeleton #13" + }, { + "inverseBindMatrices": 14, + "joints": [ + 4, + 8, + 10, + 210, + 247, + 248 + ], + "skeleton": 4, + "name": "skeleton #14" + }, { + "inverseBindMatrices": 15, + "joints": [ + 4, + 262, + 272, + 318, + 319, + 332, + 333 + ], + "skeleton": 4, + "name": "skeleton #15" + }, { + "inverseBindMatrices": 16, + "joints": [ + 272, + 289, + 318, + 332, + 348, + 351, + 355, + 357, + 361, + 366 + ], + "skeleton": 272, + "name": "skeleton #16" + }, { + "inverseBindMatrices": 17, + "joints": [ + 4, + 262, + 272, + 318, + 332, + 348, + 349, + 350 + ], + "skeleton": 4, + "name": "skeleton #17" + }, { + "inverseBindMatrices": 18, + "joints": [ + 4, + 262, + 272, + 318, + 332, + 348, + 351 + ], + "skeleton": 4, + "name": "skeleton #18" + }, { + "inverseBindMatrices": 19, + "joints": [ + 4, + 262, + 272, + 370, + 375, + 378, + 379, + 380, + 381, + 396 + ], + "skeleton": 4, + "name": "skeleton #19" + }, { + "inverseBindMatrices": 20, + "joints": [ + 4, + 262, + 272, + 370, + 371, + 372, + 373, + 375, + 394, + 395, + 431 + ], + "skeleton": 4, + "name": "skeleton #20" + }, { + "inverseBindMatrices": 21, + "joints": [ + 4, + 262, + 272, + 370, + 402, + 403, + 406, + 409, + 410, + 413 + ], + "skeleton": 4, + "name": "skeleton #21" + }, { + "inverseBindMatrices": 22, + "joints": [ + 262, 272 + ], + "skeleton": 262, + "name": "skeleton #22" + }, { + "inverseBindMatrices": 23, + "joints": [ + 4, + 262, + 272, + 318, + 332, + 348, + 351 + ], + "skeleton": 4, + "name": "skeleton #18_1" + }, { + "inverseBindMatrices": 24, + "joints": [ + 34, + 35, + 36, + 37, + 38, + 42, + 46, + 65, + 83, + 84 + ], + "skeleton": 34, + "name": "skeleton #3_1" + }, { + "inverseBindMatrices": 25, + "joints": [ + 272, + 289, + 318, + 332, + 348, + 351, + 355, + 357, + 361, + 366 + ], + "skeleton": 272, + "name": "skeleton #16_1" + }, { + "inverseBindMatrices": 26, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 37, + 38 + ], + "skeleton": 4, + "name": "skeleton #0_1" + }, { + "inverseBindMatrices": 27, + "joints": [ + 4, 471, 472, 473, 474 + ], + "skeleton": 4, + "name": "skeleton #23" + }, { + "inverseBindMatrices": 28, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 37, + 38 + ], + "skeleton": 4, + "name": "skeleton #0_2" + }, { + "inverseBindMatrices": 29, + "joints": [ + 4, + 262, + 272, + 318, + 332, + 348, + 351 + ], + "skeleton": 4, + "name": "skeleton #18_2" + }, { + "inverseBindMatrices": 30, + "joints": [ + 4, + 26, + 34, + 35, + 36, + 37, + 38 + ], + "skeleton": 4, + "name": "skeleton #0_3" + } + ], + "textures": [ + { + "extensions": { + "MSFT_texture_dds": { + "source": 0 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 1 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 2 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 3 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 4 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 5 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 6 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 7 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 8 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 9 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 10 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 11 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 12 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 13 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 14 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 15 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 16 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 17 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 18 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 19 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 15 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 20 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 21 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 22 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 23 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 24 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 25 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 26 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 27 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 25 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 26 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 27 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 28 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 29 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 30 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 31 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 32 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 33 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 34 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 35 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 36 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 37 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 38 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 39 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 40 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 41 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 42 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 43 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 44 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 45 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 19 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 46 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 47 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 48 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 49 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 50 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 51 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 52 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 53 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 54 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 55 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 56 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 57 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 58 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 59 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 60 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 61 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 62 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 63 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 64 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 65 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 66 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 67 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 68 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 69 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 70 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 71 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 72 + } + } + } + ], + "extensionsUsed": [ + "ASOBO_normal_map_convention", + "ASOBO_material_draw_order", + "ASOBO_material_blend_gbuffer", + "ASOBO_material_detail_map", + "ASOBO_material_windshield_v2", + "ASOBO_tags", + "ASOBO_material_invisible", + "MSFT_texture_dds", + "ASOBO_asset_optimized" + ], + "buffers": [ + { + "byteLength": 44783324, + "uri": "B787_lod0.bin" + } + ], + "images": [ + { + "uri": "787_10_AIRFRAME_WINGS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "LIVERY_KLM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DEFAULTDIRT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP02_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP01_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_DETAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIGHTS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIREBLUR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGBLURRED_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSLOW_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_EMIS.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOTIN_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOTIN_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GRAINY_PLASTIC.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + } + ] +} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.bin new file mode 100644 index 00000000..caa4d35d Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.gltf new file mode 100644 index 00000000..d4ef3f13 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod1.gltf @@ -0,0 +1,47675 @@ +{ + "accessors": [ + { + "bufferView": 0, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 512, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 960, + "componentType": 5126, + "count": 4, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1216, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1856, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1984, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2432, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2816, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3008, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3200, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3584, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4224, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4608, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4992, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 5504, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6144, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6592, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7040, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7680, + "componentType": 5126, + "count": 4, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7936, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 8640, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9344, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9472, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9920, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 10560, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 11200, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 11648, + "componentType": 5126, + "count": 5, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 11968, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 12416, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 1, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 1608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 4020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 5628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 8040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 8844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 10452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 11256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 13668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 15276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 17688, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 18492, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 20100, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 20904, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 23316, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 24924, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 27336, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 28140, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 29748, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 30552, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 32964, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 60300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 34572, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 62712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 36984, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 65124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 37788, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 61104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 39396, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 69948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 40200, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 72360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 64320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 74772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 42612, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 44220, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 79596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 82008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 70752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 46632, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 84420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 47436, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 86832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 73968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 49044, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 89244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 49848, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 91656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 94068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 52260, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 96480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 80400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 53868, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 98892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 101304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 83616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 56280, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 103716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 57084, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 86832, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 57488, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 106128, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 57892, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 88448, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 58296, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 107340, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 58700, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 108552, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 59104, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 90064, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 59508, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 109764, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 59912, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 110976, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 60316, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 91680, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 60720, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 112188, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 61124, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 113400, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 61528, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 93296, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 61932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 114612, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 62336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 115824, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 62740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 94912, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 63144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 117036, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 63548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 118248, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 63952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 96528, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 64356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 119460, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 64760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 120672, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 65164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 98144, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 65568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 121884, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 65972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 123096, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 66376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 99760, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 66780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 124308, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 67184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 125520, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 67588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 101376, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 67992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 126732, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 68396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 127944, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 68800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 102992, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 69204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 129156, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 69608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 104608, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 106224, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 130368, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 70820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 107840, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 71224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 131580, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 71628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 132792, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 72032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 109456, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 72436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 134004, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 72840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 111072, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 73244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 135216, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 73648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 112688, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 74052, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 136428, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 74456, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 137640, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 74860, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 114304, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 75264, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 138852, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 75668, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 140064, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 76072, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 115920, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 76476, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 141276, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 76880, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 142488, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 77284, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 117536, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 77688, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 143700, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 78092, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 144912, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 78496, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 119152, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 78900, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 146124, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 79304, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 147336, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 79708, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 120768, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 80112, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 148548, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 80516, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 149760, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 80920, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 122384, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 81324, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 150972, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 81728, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 152184, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 82132, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 124000, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 82536, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 153396, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 82940, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 154608, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 83344, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 125616, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 83748, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 155820, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 84152, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 157032, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 84556, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 127232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 84960, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 158244, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 85364, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 159456, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 85768, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 128848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 86172, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 160668, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 86576, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 161880, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 86980, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 130464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 87384, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 163092, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 87788, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 164304, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 88192, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 132080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 88596, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 165516, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 89000, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 166728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 89404, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 133696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 89808, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 167940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 90212, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 169152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 90616, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 135312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 91020, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 170364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 91424, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 171576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 91828, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 136928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 92232, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 172788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 92636, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 174000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 93040, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 138544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 93444, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 175212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 93848, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 176424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 94252, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 140160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 94656, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 177636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 95060, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 178848, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 95464, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 141776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 95868, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 180060, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 96272, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 181272, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 96676, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 143392, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 97080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 182484, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 97484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 183696, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 97888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 145008, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 98292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 184908, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 98696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 186120, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 99100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 146624, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 99504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 187332, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 99908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 188544, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 100312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 148240, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 100716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 189756, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 101120, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 190968, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 101524, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 149856, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 101928, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 192180, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 102332, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 193392, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 102736, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 151472, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 103140, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 194604, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 103544, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 195816, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 103948, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 153088, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 104352, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 197028, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 104756, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 198240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 105560, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 154704, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 106364, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 200652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 107168, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 203064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 107972, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 157920, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 108776, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 205476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 109580, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 207888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 110384, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 161136, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 111188, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 210300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 111992, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 212712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 112796, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 164352, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 113600, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 215124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 114404, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 217536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 115208, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 167568, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 116012, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 219948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 116816, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 222360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 117620, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 170784, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 118424, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 224772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 119228, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 227184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 120032, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 174000, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 120836, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 229596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 121640, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 232008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 122444, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 177216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 123248, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 234420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 124052, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 236832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 124856, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 180432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 125660, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 239244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 126464, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 241656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 127268, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 183648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 128072, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 244068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 128876, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 246480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 129680, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 186864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 130484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 248892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 131288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 251304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 132092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 190080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 132896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 253716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 133700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 256128, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 134504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 193296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 135308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 258540, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 136112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 260952, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 136916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 196512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 137720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 263364, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 138524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 265776, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 139328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 199728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 140132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 268188, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 140936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 270600, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 141740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 202944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 142544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 273012, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 143348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 275424, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 144152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 206160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 144956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 277836, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 145760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 280248, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 146564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 209376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 147368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 282660, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 148172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 285072, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 148976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 212592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 149780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 287484, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 150584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 289896, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 151388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 215808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 152192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 292308, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 152996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 294720, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 153800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 219024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 154604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 297132, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 155408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 299544, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 156212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 222240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 157016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 301956, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 157820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 304368, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 158624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 225456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 159428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 306780, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 160232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 309192, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 161036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 228672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 161840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 311604, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 162644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 314016, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 163448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 231888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 164252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 316428, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 165056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 318840, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 165860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 235104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 166664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 321252, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 167468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 323664, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 168272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 238320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 169076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 326076, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 169880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 328488, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 170684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 241536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 171488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 330900, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 172292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 333312, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 173096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 244752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 173900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 335724, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 174704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 338136, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 175508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 247968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 176312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 340548, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 177116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 342960, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 177920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 251184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 178724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 345372, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 179528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 347784, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 180332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 254400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 181136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 350196, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 181940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 352608, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 182744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 257616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 183548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 355020, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 184352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 357432, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 185156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 260832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 185960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 359844, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 186764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 362256, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 187568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 264048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 188372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 364668, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 189176, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 367080, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 189580, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 267264, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 189984, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 368292, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 190388, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 369504, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 190792, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 268880, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 191196, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 370716, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 191600, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 371928, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 192004, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 270496, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 192408, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 373140, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 192812, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 374352, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 193216, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 272112, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 193620, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 375564, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 194024, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 376776, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 194428, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 273728, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 194832, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 377988, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 195236, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 275344, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 195640, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 276960, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 196044, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 379200, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 196448, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 278576, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 196852, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 380412, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 197256, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 280192, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 197660, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 381624, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 198464, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 281808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 199268, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 384036, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 200072, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 386448, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 200876, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 285024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 201680, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 388860, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 202484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 391272, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 203288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 288240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 204092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 393684, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 204896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 396096, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 205700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 291456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 206504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 398508, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 207308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 400920, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 208112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 294672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 208916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 403332, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 209720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 405744, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 210524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 297888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 211328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 408156, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 212132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 410568, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 212936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 301104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 213740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 412980, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 214544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 415392, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 215348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 304320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 216152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 417804, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 216956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 420216, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 217760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 307536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 218564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 422628, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 219368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 425040, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 220172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 310752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 220976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 427452, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 221780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 429864, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 222584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 313968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 223388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 432276, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 224192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 434688, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 224996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 317184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 225800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 437100, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 226604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 439512, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 227408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 320400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 228212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 441924, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 229016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 444336, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 229820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 323616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 230624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 446748, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 231428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 449160, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 232232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 326832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 233036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 451572, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 233840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 453984, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 234644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 330048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 235448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 456396, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 236252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 458808, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 237056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 333264, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 237860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 461220, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 238664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 463632, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 239468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 336480, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 240272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 466044, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 241076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 468456, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 241880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 339696, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 242684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 470868, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 243488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 473280, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 244292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 342912, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 245096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 475692, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 245900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 478104, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 246704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 346128, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 247508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 480516, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 248312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 482928, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 249116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 349344, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 249920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 485340, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 250724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 487752, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 251528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 352560, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 252332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 490164, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 253136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 492576, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 253940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 355776, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 254744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 494988, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 255548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 497400, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 256352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 358992, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 257156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 499812, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 257960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 502224, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 258764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 362208, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 259568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 504636, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 260372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 507048, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 261176, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 365424, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 261980, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 509460, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 262784, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 511872, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 263588, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 368640, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 264392, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 514284, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 265196, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 516696, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 266000, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 371856, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 266804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 519108, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 267608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 521520, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 268412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 375072, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 269216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 523932, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 270020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 526344, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 270824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 378288, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 271628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 528756, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 272432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 531168, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 273236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 381504, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 274040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 533580, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 274844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 535992, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 275648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 384720, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 276452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 538404, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 277256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 540816, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 278060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 387936, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 278864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 543228, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 279668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 545640, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 280472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 391152, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 281276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 548052, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 282080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 550464, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 282484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 394368, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 282888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 551676, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 283292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 552888, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 283696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 395984, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 284100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 554100, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 284504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 555312, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 284908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 397600, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 285312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 556524, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 285716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 557736, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 286120, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 399216, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 286524, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 558948, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 286928, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 560160, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 287332, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 400832, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 287736, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 561372, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 288140, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 562584, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 288544, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 402448, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 288948, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 563796, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 289352, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 565008, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 289756, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 404064, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 290160, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 566220, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 290564, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 567432, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 290968, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 405680, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 291372, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 568644, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 291776, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 569856, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 292180, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 407296, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 292584, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 571068, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 292988, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 572280, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 293392, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 408912, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 293796, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 573492, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 294200, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 574704, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 294604, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 410528, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 295008, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 575916, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 295412, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 577128, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 295816, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 412144, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 296220, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 578340, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 296624, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 579552, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 297028, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 413760, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 297432, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 580764, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 297836, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 581976, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 298240, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 415376, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 298644, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 583188, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 299048, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 416992, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 299452, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 584400, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 299856, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 418608, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 300260, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 420224, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 300664, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 585612, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 301068, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 421840, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 301472, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 423456, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 301876, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 586824, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 302280, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 425072, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 302684, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 426688, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 303088, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 588036, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 303492, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 428304, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 303896, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 589248, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 304300, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 429920, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 304704, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 590460, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 305108, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 591672, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 305512, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 431536, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 305916, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 592884, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 306320, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 594096, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 306724, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 433152, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 307128, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 595308, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 307532, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 596520, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 307936, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 434768, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 308340, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 597732, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 308744, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 598944, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 309148, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 436384, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 309552, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 600156, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 309956, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 601368, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 310360, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 438000, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 310764, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 602580, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 311168, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 603792, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 311572, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 439616, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 311976, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 605004, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 312380, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 606216, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 312784, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 441232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 313188, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 607428, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 313592, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 608640, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 313996, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 442848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 314400, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 609852, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 314804, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 611064, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 315208, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 444464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 315612, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 612276, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 316016, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 613488, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 316420, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 446080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 316824, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 614700, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 317228, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 615912, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 317632, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 447696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 318036, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 617124, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 318440, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 449312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 318844, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 618336, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 319248, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 450928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 319652, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 619548, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 320056, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 620760, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 320460, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 452544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 320864, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 621972, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 321268, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 623184, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 321672, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 454160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322076, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 455776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322480, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 624396, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 322884, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457392, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322896, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457440, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322908, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457488, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322920, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457536, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 625608, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 323336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457584, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 323740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 626820, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 324144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 628032, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 324548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 459200, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 324952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 629244, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 325356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 630456, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 325760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 460816, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 326164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 631668, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 326568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 632880, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 326972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 462432, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 327376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 634092, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 327780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 635304, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 328184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 464048, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 328588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 636516, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 328992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 637728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 329396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 465664, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 329800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 638940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 330204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 640152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 330608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467280, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 331012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 641364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 331416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 642576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 331820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 468896, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 332224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 643788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 332628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 645000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 333032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 470512, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 333436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 646212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 333840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 647424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 334244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 472128, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 334648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 648636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 4, + "componentType": 5126, + "count": 3760, + "min": [ + -6.895031929016113, -2.3814213275909424, -0.2689531445503235 + ], + "max": [ + 4.041304111480713, 0.5310661196708679, 0.2689531445503235 + ], + "type": "VEC3", + "name": "x1_Rudder_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 12, + "componentType": 5120, + "count": 3760, + "type": "VEC4", + "name": "x1_Rudder_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16, + "componentType": 5120, + "count": 3760, + "type": "VEC4", + "name": "x1_Rudder_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20, + "componentType": 5122, + "count": 3760, + "type": "VEC2", + "name": "x1_Rudder_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24, + "componentType": 5122, + "count": 3760, + "type": "VEC2", + "name": "x1_Rudder_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28, + "componentType": 5123, + "count": 3760, + "type": "VEC4", + "name": "x1_Rudder_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "componentType": 5123, + "count": 6192, + "type": "SCALAR", + "name": "x1_Rudder_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 135360, + "componentType": 5126, + "count": 167, + "min": [ + -0.2216436117887497, -0.5556044578552246, -1.0652666091918945 + ], + "max": [ + 0.22164563834667206, 0.5556052923202515, 1.065264344215393 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_Rudder_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 135372, + "componentType": 5120, + "count": 167, + "type": "VEC4", + "name": "x1_Livery_KLM_Rudder_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 135376, + "componentType": 5120, + "count": 167, + "type": "VEC4", + "name": "x1_Livery_KLM_Rudder_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 135380, + "componentType": 5122, + "count": 167, + "type": "VEC2", + "name": "x1_Livery_KLM_Rudder_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 135384, + "componentType": 5122, + "count": 167, + "type": "VEC2", + "name": "x1_Livery_KLM_Rudder_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 135388, + "componentType": 5123, + "count": 167, + "type": "VEC4", + "name": "x1_Livery_KLM_Rudder_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 12384, + "componentType": 5123, + "count": 471, + "type": "SCALAR", + "name": "x1_Livery_KLM_Rudder_indices#0" + }, { + "bufferView": 4, + "byteOffset": 141372, + "componentType": 5126, + "count": 8, + "min": [ + -0.7842414379119873, -2.7263455390930176, 23.220720291137695 + ], + "max": [ + -0.7253560423851013, -2.0478739738464355, 23.318138122558594 + ], + "type": "VEC3", + "name": "x1_Door_Right02_Livery_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 141384, + "componentType": 5120, + "count": 8, + "type": "VEC4", + "name": "x1_Door_Right02_Livery_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 141388, + "componentType": 5120, + "count": 8, + "type": "VEC4", + "name": "x1_Door_Right02_Livery_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 141392, + "componentType": 5122, + "count": 8, + "type": "VEC2", + "name": "x1_Door_Right02_Livery_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 141396, + "componentType": 5122, + "count": 8, + "type": "VEC2", + "name": "x1_Door_Right02_Livery_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 141400, + "componentType": 5123, + "count": 8, + "type": "VEC4", + "name": "x1_Door_Right02_Livery_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 13326, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x1_Door_Right02_Livery_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 141660, + "componentType": 5126, + "count": 1672, + "min": [ + -0.578009307384491, -0.158157616853714, -0.009548993781208992 + ], + "max": [ + 0.839894711971283, 0.1486646831035614, 0.739360511302948 + ], + "type": "VEC3", + "name": "x1_C_Door_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 141672, + "componentType": 5120, + "count": 1672, + "type": "VEC4", + "name": "x1_C_Door_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 141676, + "componentType": 5120, + "count": 1672, + "type": "VEC4", + "name": "x1_C_Door_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 141680, + "componentType": 5122, + "count": 1672, + "type": "VEC2", + "name": "x1_C_Door_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 141684, + "componentType": 5122, + "count": 1672, + "type": "VEC2", + "name": "x1_C_Door_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 141688, + "componentType": 5123, + "count": 1672, + "type": "VEC4", + "name": "x1_C_Door_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 13362, + "componentType": 5123, + "count": 3780, + "type": "SCALAR", + "name": "x1_C_Door_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 201852, + "componentType": 5126, + "count": 16, + "min": [ + -0.05284452438354492, -0.35190147161483765, -0.6955661177635193 + ], + "max": [ + 0.05284440517425537, 0.3519015908241272, 0.6955662369728088 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_RGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 201864, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_RGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 201868, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_RGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 201872, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x1_Livery_KLM_RGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 201876, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x1_Livery_KLM_RGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 201880, + "componentType": 5123, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_RGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 20922, + "componentType": 5123, + "count": 30, + "type": "SCALAR", + "name": "x1_Livery_KLM_RGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 202428, + "componentType": 5126, + "count": 228, + "min": [ + -0.5312080383300781, 0.003405064344406128, -1.8897522687911987 + ], + "max": [ + 0.009289532899856567, 0.06960737705230713, 0.008853061124682426 + ], + "type": "VEC3", + "name": "x1_Door_Right01_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 202440, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Right01_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 202444, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Right01_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 202448, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x1_Door_Right01_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 202452, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x1_Door_Right01_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 202456, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Right01_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 20982, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x1_Door_Right01_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 210636, + "componentType": 5126, + "count": 328, + "min": [ + -0.22193561494350433, -0.011762249283492565, -0.01235200185328722 + ], + "max": [ + 0.025243692100048065, 0.9015082716941833, 0.023754142224788666 + ], + "type": "VEC3", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 210648, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 210652, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 210656, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 210660, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 210664, + "componentType": 5123, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_3_hydraulic01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 21666, + "componentType": 5123, + "count": 762, + "type": "SCALAR", + "name": "x1_C_Door_3_hydraulic01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 222444, + "componentType": 5126, + "count": 2350, + "min": [ + -0.9541283249855042, -0.15058226883411407, -0.010486902669072151 + ], + "max": [ + 0.9590904116630554, 0.15049633383750916, 0.7437295913696289 + ], + "type": "VEC3", + "name": "x1_C_Door_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 222456, + "componentType": 5120, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 222460, + "componentType": 5120, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 222464, + "componentType": 5122, + "count": 2350, + "type": "VEC2", + "name": "x1_C_Door_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 222468, + "componentType": 5122, + "count": 2350, + "type": "VEC2", + "name": "x1_C_Door_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 222472, + "componentType": 5123, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 23190, + "componentType": 5123, + "count": 5058, + "type": "SCALAR", + "name": "x1_C_Door_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 307044, + "componentType": 5126, + "count": 1680, + "min": [ + -0.8398947715759277, -0.14866481721401215, -0.7393609881401062 + ], + "max": [ + 0.578009307384491, 0.15815773606300354, 0.0095489751547575 + ], + "type": "VEC3", + "name": "x1_C_Door_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 307056, + "componentType": 5120, + "count": 1680, + "type": "VEC4", + "name": "x1_C_Door_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 307060, + "componentType": 5120, + "count": 1680, + "type": "VEC4", + "name": "x1_C_Door_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 307064, + "componentType": 5122, + "count": 1680, + "type": "VEC2", + "name": "x1_C_Door_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 307068, + "componentType": 5122, + "count": 1680, + "type": "VEC2", + "name": "x1_C_Door_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 307072, + "componentType": 5123, + "count": 1680, + "type": "VEC4", + "name": "x1_C_Door_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 33306, + "componentType": 5123, + "count": 3798, + "type": "SCALAR", + "name": "x1_C_Door_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 367524, + "componentType": 5126, + "count": 16, + "min": [ + -0.052844561636447906, -0.3519015312194824, -0.6955661773681641 + ], + "max": [ + 0.05284450575709343, 0.3519015312194824, 0.6955661773681641 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_LGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 367536, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_LGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 367540, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_LGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 367544, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x1_Livery_KLM_LGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 367548, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x1_Livery_KLM_LGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 367552, + "componentType": 5123, + "count": 16, + "type": "VEC4", + "name": "x1_Livery_KLM_LGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 40902, + "componentType": 5123, + "count": 30, + "type": "SCALAR", + "name": "x1_Livery_KLM_LGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 368100, + "componentType": 5126, + "count": 228, + "min": [ + -0.009289711713790894, 0.0036136507987976074, -1.8903305530548096 + ], + "max": [ + 0.5315930843353271, 0.06988897919654846, 0.008910002186894417 + ], + "type": "VEC3", + "name": "x1_Door_Left01_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 368112, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Left01_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 368116, + "componentType": 5120, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Left01_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 368120, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x1_Door_Left01_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 368124, + "componentType": 5122, + "count": 228, + "type": "VEC2", + "name": "x1_Door_Left01_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 368128, + "componentType": 5123, + "count": 228, + "type": "VEC4", + "name": "x1_Door_Left01_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 40962, + "componentType": 5123, + "count": 342, + "type": "SCALAR", + "name": "x1_Door_Left01_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 376308, + "componentType": 5126, + "count": 328, + "min": [ + -0.034725088626146317, -0.008831058628857136, -0.01842423528432846 + ], + "max": [ + 0.018234550952911377, 0.923230767250061, 0.013966732658445835 + ], + "type": "VEC3", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 376320, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 376324, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 376328, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 376332, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 376336, + "componentType": 5123, + "count": 328, + "type": "VEC4", + "name": "x1_C_Door_03_hydraulic01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 41646, + "componentType": 5123, + "count": 762, + "type": "SCALAR", + "name": "x1_C_Door_03_hydraulic01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 388116, + "componentType": 5126, + "count": 2350, + "min": [ + -0.9566909074783325, -0.15058104693889618, -0.7437305450439453 + ], + "max": [ + 0.9565268754959106, 0.1504976749420166, 0.010486876592040062 + ], + "type": "VEC3", + "name": "x1_C_Door_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 388128, + "componentType": 5120, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 388132, + "componentType": 5120, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 388136, + "componentType": 5122, + "count": 2350, + "type": "VEC2", + "name": "x1_C_Door_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 388140, + "componentType": 5122, + "count": 2350, + "type": "VEC2", + "name": "x1_C_Door_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 388144, + "componentType": 5123, + "count": 2350, + "type": "VEC4", + "name": "x1_C_Door_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 43170, + "componentType": 5123, + "count": 5058, + "type": "SCALAR", + "name": "x1_C_Door_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 472716, + "componentType": 5126, + "count": 1757, + "min": [ + -5.950500011444092, -0.19030523300170898, -1.7754924297332764 + ], + "max": [ + 3.5584402084350586, 0.18898552656173706, -0.005892515182495117 + ], + "type": "VEC3", + "name": "x1_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 472728, + "componentType": 5120, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 472732, + "componentType": 5120, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 472736, + "componentType": 5122, + "count": 1757, + "type": "VEC2", + "name": "x1_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 472740, + "componentType": 5122, + "count": 1757, + "type": "VEC2", + "name": "x1_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 472744, + "componentType": 5123, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 53286, + "componentType": 5123, + "count": 5046, + "type": "SCALAR", + "name": "x1_Elevator_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 535968, + "componentType": 5126, + "count": 3324, + "min": [ + -0.3470169007778168, -0.9291349053382874, -7.686824798583984 + ], + "max": [ + 8.383637428283691, 1.1159906387329102, 1.9090266227722168 + ], + "type": "VEC3", + "name": "x1_Trim_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 535980, + "componentType": 5120, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 535984, + "componentType": 5120, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 535988, + "componentType": 5122, + "count": 3324, + "type": "VEC2", + "name": "x1_Trim_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 535992, + "componentType": 5122, + "count": 3324, + "type": "VEC2", + "name": "x1_Trim_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 535996, + "componentType": 5123, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 63378, + "componentType": 5123, + "count": 7752, + "type": "SCALAR", + "name": "x1_Trim_Elevator_left_indices#2" + }, { + "bufferView": 4, + "byteOffset": 655632, + "componentType": 5126, + "count": 49, + "min": [ + -0.0586848258972168, -0.02840903401374817, -0.058672428131103516 + ], + "max": [ + 0.058685302734375, -0.010132819414138794, 0.0586705207824707 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 655644, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 655648, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 655652, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 655656, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 655660, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 78882, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 657396, + "componentType": 5126, + "count": 979, + "min": [ + 1.1026737689971924, 0.43623489141464233, -39.12284851074219 + ], + "max": [ + 9.873924255371094, 2.5371522903442383, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 657408, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 657412, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 657416, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 657420, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 657424, + "componentType": 5123, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 79170, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 692640, + "componentType": 5126, + "count": 543, + "min": [ + -0.2053818702697754, -0.8455970883369446, -1.010695457458496 + ], + "max": [ + 0.20538176596164703, 0.8455972075462341, 1.010695457458496 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 692652, + "componentType": 5120, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 692656, + "componentType": 5120, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 692660, + "componentType": 5122, + "count": 543, + "type": "VEC2", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 692664, + "componentType": 5122, + "count": 543, + "type": "VEC2", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 692668, + "componentType": 5123, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 83616, + "componentType": 5123, + "count": 1230, + "type": "SCALAR", + "name": "x1_Livery_KLM_ElevatorTrimL_indices#0" + }, { + "bufferView": 4, + "byteOffset": 712188, + "componentType": 5126, + "count": 120, + "min": [ + -0.027080535888671875, -0.05844545364379883, -0.03809928894042969 + ], + "max": [ + 0.03014373779296875, 0.058444976806640625, -0.0065708160400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 712200, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 712204, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 712208, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 712212, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 712216, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 86076, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 716508, + "componentType": 5126, + "count": 784, + "min": [ + -0.0548553466796875, -0.024386882781982422, -0.04414558410644531 + ], + "max": [ + 0.0811614990234375, 0.02438640594482422, 0.06327056884765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 716520, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 716524, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 716528, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 716532, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 716536, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 86988, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 744732, + "componentType": 5126, + "count": 588, + "min": [ + -0.03925895690917969, -0.018535852432250977, -0.010842323303222656 + ], + "max": [ + 0.05913734436035156, 0.018535375595092773, 0.06278228759765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 744744, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 744748, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 744752, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 744756, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 744760, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 92748, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationRed_indices#0" + }, { + "bufferView": 4, + "byteOffset": 765900, + "componentType": 5126, + "count": 148, + "min": [ + -0.9412506818771362, -0.050254255533218384, -0.06704986840486526 + ], + "max": [ + 0.06539314985275269, 0.0006855250685475767, 0.06579330563545227 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_19_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 765912, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 765916, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 765920, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_19_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 765924, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_19_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 765928, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 97068, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_19_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 771228, + "componentType": 5126, + "count": 50, + "min": [ + -0.29366055130958557, 2.4422848224639893, -0.04375568777322769 + ], + "max": [ + 0.035393450409173965, 2.459554433822632, 0.03593073785305023 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_11_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 771240, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 771244, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 771248, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_11_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 771252, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_11_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 771256, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 97428, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_11_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 773028, + "componentType": 5126, + "count": 121, + "min": [ + -0.03527211770415306, -0.038141485303640366, -0.035305291414260864 + ], + "max": [ + 0.26191020011901855, 0.00424808356910944, 0.03526424989104271 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_12_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 773040, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 773044, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 773048, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_12_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 773052, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_12_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 773056, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 97668, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_12_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 777384, + "componentType": 5126, + "count": 48, + "min": [ + -0.23433732986450195, -0.017235800623893738, -0.018017970025539398 + ], + "max": [ + 0.0180146973580122, 0.00003799613841692917, 0.018043439835309982 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_13_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 777396, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 777400, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 777404, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_13_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 777408, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_13_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 777412, + "componentType": 5123, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 98292, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_13_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 779112, + "componentType": 5126, + "count": 119, + "min": [ + -0.035292331129312515, -0.03815187141299248, -0.0353245809674263 + ], + "max": [ + 0.2280092090368271, 0.0042427596636116505, 0.03527474030852318 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_14_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 779124, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 779128, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 779132, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_14_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 779136, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_14_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 779140, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 98532, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_14_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 783396, + "componentType": 5126, + "count": 48, + "min": [ + -0.2488282173871994, -0.01722354255616665, -0.018021991476416588 + ], + "max": [ + 0.018008166924118996, 0.00004534908657660708, 0.018025647848844528 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_15_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 783408, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 783412, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 783416, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_15_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 783420, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_15_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 783424, + "componentType": 5123, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 99156, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_15_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 785124, + "componentType": 5126, + "count": 119, + "min": [ + -0.03526657447218895, -0.03808007389307022, -0.0353010818362236 + ], + "max": [ + 0.1962238848209381, 0.004309758078306913, 0.03524673730134964 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_16_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 785136, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 785140, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 785144, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_16_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 785148, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_16_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 785152, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 99396, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_16_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 789408, + "componentType": 5126, + "count": 148, + "min": [ + -0.941411018371582, -0.04680779576301575, -0.0655297189950943 + ], + "max": [ + 0.06537894159555435, 0.000011900672689080238, 0.065898597240448 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_18_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 789420, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 789424, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 789428, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_18_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 789432, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_18_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 789436, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 100020, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_18_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 794736, + "componentType": 5126, + "count": 138, + "min": [ + -1.1099915504455566, -0.1503312587738037, -0.7317351698875427 + ], + "max": [ + 1.1136802434921265, 0.007669479586184025, -1.1920595710535054e-7 + ], + "type": "VEC3", + "name": "x1_Spoiler_2_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 794748, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 794752, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 794756, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x1_Spoiler_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 794760, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x1_Spoiler_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 794764, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 100380, + "componentType": 5123, + "count": 462, + "type": "SCALAR", + "name": "x1_Spoiler_2_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 799704, + "componentType": 5126, + "count": 1665, + "min": [ + -0.9475930333137512, 0.011319596320390701, -1.5219933986663818 + ], + "max": [ + 0.9306134581565857, 0.5781537294387817, 0.1316414475440979 + ], + "type": "VEC3", + "name": "x1_Flaps_1_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 799716, + "componentType": 5120, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 799720, + "componentType": 5120, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 799724, + "componentType": 5122, + "count": 1665, + "type": "VEC2", + "name": "x1_Flaps_1_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 799728, + "componentType": 5122, + "count": 1665, + "type": "VEC2", + "name": "x1_Flaps_1_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 799732, + "componentType": 5123, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 101304, + "componentType": 5123, + "count": 3516, + "type": "SCALAR", + "name": "x1_Flaps_1_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 859644, + "componentType": 5126, + "count": 144, + "min": [ + -0.7052471041679382, -0.3054850697517395, -0.044626034796237946 + ], + "max": [ + 0.6628170013427734, 0.046382270753383636, 0.5727837085723877 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_07_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 859656, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 859660, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 859664, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_07_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 859668, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_07_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 859672, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 108336, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x1_flap_hydrolics_07_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 864828, + "componentType": 5126, + "count": 144, + "min": [ + -0.004622459411621094, -0.06194627285003662, -0.43372678756713867 + ], + "max": [ + 1.3936233520507812, 0.2509462237358093, 0.059650421142578125 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_08_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 864840, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 864844, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 864848, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_08_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 864852, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_08_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 864856, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 109152, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x1_flap_hydrolics_08_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 870012, + "componentType": 5126, + "count": 50, + "min": [ + -0.3123794496059418, -0.008635753765702248, -0.03482570871710777 + ], + "max": [ + 0.019536184147000313, 0.008634084835648537, 0.016830982640385628 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_09_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 870024, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 870028, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 870032, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_09_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 870036, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_09_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 870040, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 109968, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_09_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 871812, + "componentType": 5126, + "count": 121, + "min": [ + -0.03529747202992439, -0.03814065456390381, -0.035329677164554596 + ], + "max": [ + 0.34865880012512207, 0.004251239821314812, 0.03529687225818634 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_10_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 871824, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 871828, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 871832, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_10_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 871836, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_10_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 871840, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 110208, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_10_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 876168, + "componentType": 5126, + "count": 1193, + "min": [ + -3.0591864585876465, -0.05917469412088394, -0.0004396516305860132 + ], + "max": [ + 3.24491810798645, 0.6459478139877319, 0.8577572107315063 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 876180, + "componentType": 5120, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 876184, + "componentType": 5120, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 876188, + "componentType": 5122, + "count": 1193, + "type": "VEC2", + "name": "x1_FlapsKrueger_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 876192, + "componentType": 5122, + "count": 1193, + "type": "VEC2", + "name": "x1_FlapsKrueger_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 876196, + "componentType": 5123, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 110832, + "componentType": 5123, + "count": 2382, + "type": "SCALAR", + "name": "x1_FlapsKrueger_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 919116, + "componentType": 5126, + "count": 92, + "min": [ + 3.323636531829834, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + 8.716888427734375, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 919128, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 919132, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 919136, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 919140, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 919144, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 115596, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 922428, + "componentType": 5126, + "count": 122, + "min": [ + -0.9412904381752014, -0.0855402946472168, -0.06711722910404205 + ], + "max": [ + 0.06540646404027939, -0.039178308099508286, 0.06535222381353378 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 922440, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 922444, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 922448, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x1_flap_hydrolics_17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 922452, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x1_flap_hydrolics_17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 922456, + "componentType": 5123, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 115920, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 926820, + "componentType": 5126, + "count": 5551, + "min": [ + -3.4634859561920166, -0.10926223546266556, -2.421717643737793 + ], + "max": [ + 4.2190327644348145, 0.8868646621704102, 0.5424177646636963 + ], + "type": "VEC3", + "name": "x1_Flaps_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 926832, + "componentType": 5120, + "count": 5551, + "type": "VEC4", + "name": "x1_Flaps_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 926836, + "componentType": 5120, + "count": 5551, + "type": "VEC4", + "name": "x1_Flaps_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 926840, + "componentType": 5122, + "count": 5551, + "type": "VEC2", + "name": "x1_Flaps_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 926844, + "componentType": 5122, + "count": 5551, + "type": "VEC2", + "name": "x1_Flaps_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 926848, + "componentType": 5123, + "count": 5551, + "type": "VEC4", + "name": "x1_Flaps_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 116280, + "componentType": 5123, + "count": 10398, + "type": "SCALAR", + "name": "x1_Flaps_1_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 1126656, + "componentType": 5126, + "count": 240, + "min": [ + -0.018456943333148956, -0.02890082634985447, -0.018483120948076248 + ], + "max": [ + 0.32188230752944946, 0.026015495881438255, 0.19058309495449066 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part19_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1126668, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1126672, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1126676, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x1_Landing_Gear_Part19_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1126680, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x1_Landing_Gear_Part19_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1126684, + "componentType": 5123, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 137076, + "componentType": 5123, + "count": 744, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part19_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1135296, + "componentType": 5126, + "count": 282, + "min": [ + -0.028109297156333923, -0.46665698289871216, -0.06051894649863243 + ], + "max": [ + 0.03629053384065628, 0.06144231557846069, 0.05307118222117424 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1135308, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1135312, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1135316, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x1_Landing_Gear_17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1135320, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x1_Landing_Gear_17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1135324, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 138564, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x1_Landing_Gear_17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1145448, + "componentType": 5126, + "count": 730, + "min": [ + -0.7242787480354309, -0.6438173651695251, -0.09001244604587555 + ], + "max": [ + 0.07568864524364471, 0.05690094083547592, 0.3174644410610199 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_31_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1145460, + "componentType": 5120, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1145464, + "componentType": 5120, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1145468, + "componentType": 5122, + "count": 730, + "type": "VEC2", + "name": "x1_Landing_Gear_31_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1145472, + "componentType": 5122, + "count": 730, + "type": "VEC2", + "name": "x1_Landing_Gear_31_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1145476, + "componentType": 5123, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 140220, + "componentType": 5123, + "count": 2124, + "type": "SCALAR", + "name": "x1_Landing_Gear_31_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1171728, + "componentType": 5126, + "count": 405, + "min": [ + -0.19304975867271423, -0.00007702765287831426, -0.15680663287639618 + ], + "max": [ + 0.06946469098329544, 0.2049291729927063, 0.07221724092960358 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_33_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1171740, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1171744, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1171748, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x1_Landing_Gear_33_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1171752, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x1_Landing_Gear_33_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1171756, + "componentType": 5123, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 144468, + "componentType": 5123, + "count": 1170, + "type": "SCALAR", + "name": "x1_Landing_Gear_33_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1186308, + "componentType": 5126, + "count": 150, + "min": [ + -0.07557737082242966, -0.4879385530948639, -0.06083650514483452 + ], + "max": [ + 0.08383759111166, 0.04136443883180618, 0.08959515392780304 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_28_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1186320, + "componentType": 5120, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1186324, + "componentType": 5120, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1186328, + "componentType": 5122, + "count": 150, + "type": "VEC2", + "name": "x1_Landing_Gear_28_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1186332, + "componentType": 5122, + "count": 150, + "type": "VEC2", + "name": "x1_Landing_Gear_28_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1186336, + "componentType": 5123, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 146808, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x1_Landing_Gear_28_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1191708, + "componentType": 5126, + "count": 462, + "min": [ + -0.24665763974189758, -0.4703945219516754, -0.12019189447164536 + ], + "max": [ + 0.2496030330657959, 0.47039344906806946, 0.12019239366054535 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_27_right001_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1191720, + "componentType": 5120, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right001_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1191724, + "componentType": 5120, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right001_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1191728, + "componentType": 5122, + "count": 462, + "type": "VEC2", + "name": "x1_Landing_Gear_27_right001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1191732, + "componentType": 5122, + "count": 462, + "type": "VEC2", + "name": "x1_Landing_Gear_27_right001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1191736, + "componentType": 5123, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right001_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 147672, + "componentType": 5123, + "count": 1332, + "type": "SCALAR", + "name": "x1_Landing_Gear_27_right001_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1208340, + "componentType": 5126, + "count": 422, + "min": [ + -0.10368525981903076, -0.11533328145742416, -0.3652142584323883 + ], + "max": [ + 0.12876319885253906, 0.3993373513221741, 0.11204559355974197 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_29_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1208352, + "componentType": 5120, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1208356, + "componentType": 5120, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1208360, + "componentType": 5122, + "count": 422, + "type": "VEC2", + "name": "x1_Landing_Gear_29_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1208364, + "componentType": 5122, + "count": 422, + "type": "VEC2", + "name": "x1_Landing_Gear_29_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1208368, + "componentType": 5123, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 150336, + "componentType": 5123, + "count": 1086, + "type": "SCALAR", + "name": "x1_Landing_Gear_29_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1223532, + "componentType": 5126, + "count": 868, + "min": [ + -1.3771992921829224, -0.11781566590070724, -0.15449625253677368 + ], + "max": [ + 0.057973481714725494, 0.07316012680530548, 0.23623700439929962 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_30_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1223544, + "componentType": 5120, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1223548, + "componentType": 5120, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1223552, + "componentType": 5122, + "count": 868, + "type": "VEC2", + "name": "x1_Landing_Gear_30_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1223556, + "componentType": 5122, + "count": 868, + "type": "VEC2", + "name": "x1_Landing_Gear_30_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1223560, + "componentType": 5123, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 152508, + "componentType": 5123, + "count": 2454, + "type": "SCALAR", + "name": "x1_Landing_Gear_30_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1254780, + "componentType": 5126, + "count": 533, + "min": [ + -0.1264909952878952, -1.0021138191223145, -0.11373372375965118 + ], + "max": [ + 0.12399113923311234, 0.06738825142383575, 0.1327238827943802 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_32_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1254792, + "componentType": 5120, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1254796, + "componentType": 5120, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1254800, + "componentType": 5122, + "count": 533, + "type": "VEC2", + "name": "x1_Landing_Gear_32_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1254804, + "componentType": 5122, + "count": 533, + "type": "VEC2", + "name": "x1_Landing_Gear_32_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1254808, + "componentType": 5123, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 157416, + "componentType": 5123, + "count": 1524, + "type": "SCALAR", + "name": "x1_Landing_Gear_32_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1273968, + "componentType": 5126, + "count": 402, + "min": [ + -0.19439244270324707, -0.017697632312774658, -0.07370799779891968 + ], + "max": [ + 0.07473477721214294, 0.18777725100517273, 0.18046240508556366 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_34_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1273980, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1273984, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1273988, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x1_Landing_Gear_34_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1273992, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x1_Landing_Gear_34_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1273996, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 160464, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x1_Landing_Gear_34_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1288440, + "componentType": 5126, + "count": 96, + "min": [ + -0.03236321732401848, 0.010992688126862049, 0.1050001010298729 + ], + "max": [ + 0.03310651332139969, 0.18166260421276093, 0.6278887987136841 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part18_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1288452, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1288456, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1288460, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x1_Landing_Gear_Part18_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1288464, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x1_Landing_Gear_Part18_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1288468, + "componentType": 5123, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 162792, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part18_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1291896, + "componentType": 5126, + "count": 416, + "min": [ + -0.12917330861091614, -0.5469822883605957, -0.09009931236505508 + ], + "max": [ + 0.12803567945957184, 0.030349211767315865, 0.05151474475860596 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_21_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1291908, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1291912, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1291916, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x1_Landing_Gear_21_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1291920, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x1_Landing_Gear_21_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1291924, + "componentType": 5123, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 163368, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x1_Landing_Gear_21_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1306872, + "componentType": 5126, + "count": 207, + "min": [ + -0.046797335147857666, -0.000009648483683122322, -0.07077981531620026 + ], + "max": [ + 0.039779696613550186, 0.09793326258659363, 0.06343857944011688 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1306884, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1306888, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1306892, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x1_Landing_Gear_Part17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1306896, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x1_Landing_Gear_Part17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1306900, + "componentType": 5123, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 165432, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1314324, + "componentType": 5126, + "count": 682, + "min": [ + -0.09448178857564926, -0.26032406091690063, -0.1412361115217209 + ], + "max": [ + 0.5587953925132751, 0.2621110677719116, 0.2851232886314392 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_07_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1314336, + "componentType": 5120, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1314340, + "componentType": 5120, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1314344, + "componentType": 5122, + "count": 682, + "type": "VEC2", + "name": "x1_Landing_Gear_07_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1314348, + "componentType": 5122, + "count": 682, + "type": "VEC2", + "name": "x1_Landing_Gear_07_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1314352, + "componentType": 5123, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 166584, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x1_Landing_Gear_07_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1338876, + "componentType": 5126, + "count": 665, + "min": [ + -0.593521237373352, -0.19263771176338196, -0.05939662083983421 + ], + "max": [ + 0.0600287951529026, 0.32979854941368103, 0.31918343901634216 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_08_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1338888, + "componentType": 5120, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1338892, + "componentType": 5120, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1338896, + "componentType": 5122, + "count": 665, + "type": "VEC2", + "name": "x1_Landing_Gear_08_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1338900, + "componentType": 5122, + "count": 665, + "type": "VEC2", + "name": "x1_Landing_Gear_08_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1338904, + "componentType": 5123, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 170448, + "componentType": 5123, + "count": 1884, + "type": "SCALAR", + "name": "x1_Landing_Gear_08_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1362816, + "componentType": 5126, + "count": 378, + "min": [ + -0.05306337773799896, -0.2292603999376297, -0.052345871925354004 + ], + "max": [ + 0.7682495713233948, 0.2279302477836609, 0.10178372263908386 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_35_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1362828, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1362832, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1362836, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_35_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1362840, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_35_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1362844, + "componentType": 5123, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 174216, + "componentType": 5123, + "count": 972, + "type": "SCALAR", + "name": "x1_Landing_Gear_35_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1376424, + "componentType": 5126, + "count": 362, + "min": [ + -0.7106439471244812, -0.23557652533054352, -0.052519291639328 + ], + "max": [ + 0.052006907761096954, 0.2216407060623169, 0.10002058744430542 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_36_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1376436, + "componentType": 5120, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1376440, + "componentType": 5120, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1376444, + "componentType": 5122, + "count": 362, + "type": "VEC2", + "name": "x1_Landing_Gear_36_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1376448, + "componentType": 5122, + "count": 362, + "type": "VEC2", + "name": "x1_Landing_Gear_36_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1376452, + "componentType": 5123, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 176160, + "componentType": 5123, + "count": 924, + "type": "SCALAR", + "name": "x1_Landing_Gear_36_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1389456, + "componentType": 5126, + "count": 1039, + "min": [ + -0.12176398932933807, -0.13467195630073547, -0.041367411613464355 + ], + "max": [ + 0.033166807144880295, 0.2825756072998047, 0.6186306476593018 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_37_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1389468, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1389472, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1389476, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x1_Landing_Gear_37_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1389480, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x1_Landing_Gear_37_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1389484, + "componentType": 5123, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 178008, + "componentType": 5123, + "count": 2586, + "type": "SCALAR", + "name": "x1_Landing_Gear_37_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1426860, + "componentType": 5126, + "count": 10942, + "min": [ + -1.0001362562179565, -0.6619865894317627, -0.6619828939437866 + ], + "max": [ + 1.0001357793807983, 0.6619865298271179, 0.6619827747344971 + ], + "type": "VEC3", + "name": "x1_LWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1426872, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1426876, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1426880, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_LWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1426884, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_LWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1426888, + "componentType": 5123, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 183180, + "componentType": 5123, + "count": 22920, + "type": "SCALAR", + "name": "x1_LWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1820772, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917589426040649, -0.6608234643936157, -0.6620064377784729 + ], + "max": [ + 0.9917637705802917, 0.6631320118904114, 0.6619722843170166 + ], + "type": "VEC3", + "name": "x1_LWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1820784, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1820788, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1820792, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_LWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1820796, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_LWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1820800, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 229020, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x1_LWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1986084, + "componentType": 5126, + "count": 10942, + "min": [ + -1.0001364946365356, -0.6606940627098083, -0.6619630455970764 + ], + "max": [ + 1.00013267993927, 0.6633177399635315, 0.6619974374771118 + ], + "type": "VEC3", + "name": "x1_LWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1986096, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1986100, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1986104, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_LWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1986108, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_LWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1986112, + "componentType": 5123, + "count": 10942, + "type": "VEC4", + "name": "x1_LWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 246972, + "componentType": 5123, + "count": 22920, + "type": "SCALAR", + "name": "x1_LWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2379996, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917914867401123, -0.663116991519928, -0.6619616746902466 + ], + "max": [ + 0.9918091297149658, 0.6608161330223083, 0.6619909405708313 + ], + "type": "VEC3", + "name": "x1_LWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2380008, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2380012, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2380016, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_LWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2380020, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_LWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2380024, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x1_LWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 292812, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x1_LWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2545308, + "componentType": 5126, + "count": 25212, + "min": [ + -0.42272141575813293, -0.3439861238002777, -1.123216986656189 + ], + "max": [ + 0.4227156341075897, 0.4014114439487457, 1.0605244636535645 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_09_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2545320, + "componentType": 5120, + "count": 25212, + "type": "VEC4", + "name": "x1_Landing_Gear_09_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2545324, + "componentType": 5120, + "count": 25212, + "type": "VEC4", + "name": "x1_Landing_Gear_09_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2545328, + "componentType": 5122, + "count": 25212, + "type": "VEC2", + "name": "x1_Landing_Gear_09_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2545332, + "componentType": 5122, + "count": 25212, + "type": "VEC2", + "name": "x1_Landing_Gear_09_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2545336, + "componentType": 5123, + "count": 25212, + "type": "VEC4", + "name": "x1_Landing_Gear_09_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 310764, + "componentType": 5123, + "count": 65394, + "type": "SCALAR", + "name": "x1_Landing_Gear_09_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3452940, + "componentType": 5126, + "count": 1531, + "min": [ + -0.33795082569122314, -0.9588314294815063, -0.3232452869415283 + ], + "max": [ + 0.33795100450515747, 0.9588314890861511, 0.3232453167438507 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_10_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3452952, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3452956, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3452960, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x1_Landing_Gear_10_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3452964, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x1_Landing_Gear_10_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3452968, + "componentType": 5123, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 441552, + "componentType": 5123, + "count": 4482, + "type": "SCALAR", + "name": "x1_Landing_Gear_10_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3508056, + "componentType": 5126, + "count": 5066, + "min": [ + -0.008954108692705631, -0.24926096200942993, -0.3822946846485138 + ], + "max": [ + 1.4797126054763794, 2.7486085891723633, 0.35194963216781616 + ], + "type": "VEC3", + "name": "x1_Landing_gear_Root_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3508068, + "componentType": 5120, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3508072, + "componentType": 5120, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3508076, + "componentType": 5122, + "count": 5066, + "type": "VEC2", + "name": "x1_Landing_gear_Root_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3508080, + "componentType": 5122, + "count": 5066, + "type": "VEC2", + "name": "x1_Landing_gear_Root_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3508084, + "componentType": 5123, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 450516, + "componentType": 5123, + "count": 13473, + "type": "SCALAR", + "name": "x1_Landing_gear_Root_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3690432, + "componentType": 5126, + "count": 50, + "min": [ + -0.019518230110406876, -0.008635060861706734, -0.019081639125943184 + ], + "max": [ + 0.016407664865255356, 0.008635299280285835, 0.3130986988544464 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_05_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3690444, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3690448, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3690452, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_05_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3690456, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_05_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3690460, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 477462, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_05_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3692232, + "componentType": 5126, + "count": 121, + "min": [ + -0.03530992567539215, -0.03835168853402138, -0.4291442334651947 + ], + "max": [ + 0.03524995595216751, 0.004053264856338501, 0.03526020422577858 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_06_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3692244, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3692248, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3692252, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_06_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3692256, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_06_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3692260, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 477702, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_06_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3696588, + "componentType": 5126, + "count": 736, + "min": [ + -0.1502079963684082, -1.0136302709579468, -0.09332713484764099 + ], + "max": [ + 0.14326690137386322, 0.05540899559855461, 0.0719228982925415 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_16_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3696600, + "componentType": 5120, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3696604, + "componentType": 5120, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3696608, + "componentType": 5122, + "count": 736, + "type": "VEC2", + "name": "x1_Landing_Gear_16_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3696612, + "componentType": 5122, + "count": 736, + "type": "VEC2", + "name": "x1_Landing_Gear_16_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3696616, + "componentType": 5123, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 478326, + "componentType": 5123, + "count": 2112, + "type": "SCALAR", + "name": "x1_Landing_Gear_16_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3723084, + "componentType": 5126, + "count": 436, + "min": [ + -0.23346638679504395, -0.0019789845682680607, -0.09423724561929703 + ], + "max": [ + 0.09423636645078659, 0.4405471086502075, 0.28720805048942566 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_15_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3723096, + "componentType": 5120, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3723100, + "componentType": 5120, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3723104, + "componentType": 5122, + "count": 436, + "type": "VEC2", + "name": "x1_Landing_Gear_15_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3723108, + "componentType": 5122, + "count": 436, + "type": "VEC2", + "name": "x1_Landing_Gear_15_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3723112, + "componentType": 5123, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 482550, + "componentType": 5123, + "count": 1140, + "type": "SCALAR", + "name": "x1_Landing_Gear_15_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3738780, + "componentType": 5126, + "count": 419, + "min": [ + -0.5850163102149963, -0.15001218020915985, -0.029622560366988182 + ], + "max": [ + 0.5552632212638855, 0.917120635509491, 0.6377002596855164 + ], + "type": "VEC3", + "name": "x1_Door02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3738792, + "componentType": 5120, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3738796, + "componentType": 5120, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3738800, + "componentType": 5122, + "count": 419, + "type": "VEC2", + "name": "x1_Door02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3738804, + "componentType": 5122, + "count": 419, + "type": "VEC2", + "name": "x1_Door02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3738808, + "componentType": 5123, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 484830, + "componentType": 5123, + "count": 1035, + "type": "SCALAR", + "name": "x1_Door02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3753864, + "componentType": 5126, + "count": 444, + "min": [ + -0.6317753195762634, -0.022251667454838753, -0.22873549163341522 + ], + "max": [ + 0.3594152331352234, 1.0117958784103394, 0.1624695211648941 + ], + "type": "VEC3", + "name": "x1_Door03_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3753876, + "componentType": 5120, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3753880, + "componentType": 5120, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3753884, + "componentType": 5122, + "count": 444, + "type": "VEC2", + "name": "x1_Door03_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3753888, + "componentType": 5122, + "count": 444, + "type": "VEC2", + "name": "x1_Door03_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3753892, + "componentType": 5123, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 486900, + "componentType": 5123, + "count": 1212, + "type": "SCALAR", + "name": "x1_Door03_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3769848, + "componentType": 5126, + "count": 1427, + "min": [ + 0.15820357203483582, 0.4158881604671478, -1.7047119140625 + ], + "max": [ + 0.6099663376808167, 2.6216607093811035, 0.8714889287948608 + ], + "type": "VEC3", + "name": "x1_Door04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3769860, + "componentType": 5120, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3769864, + "componentType": 5120, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3769868, + "componentType": 5122, + "count": 1427, + "type": "VEC2", + "name": "x1_Door04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3769872, + "componentType": 5122, + "count": 1427, + "type": "VEC2", + "name": "x1_Door04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3769876, + "componentType": 5123, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 489324, + "componentType": 5123, + "count": 2820, + "type": "SCALAR", + "name": "x1_Door04_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3821220, + "componentType": 5126, + "count": 2962, + "min": [ + -1.4488416910171509, -1.4488410949707031, -1.3035328388214111 + ], + "max": [ + 1.4488401412963867, 1.4488409757614136, 0.0010821819305419922 + ], + "type": "VEC3", + "name": "x1_1_still_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3821232, + "componentType": 5120, + "count": 2962, + "type": "VEC4", + "name": "x1_1_still_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3821236, + "componentType": 5120, + "count": 2962, + "type": "VEC4", + "name": "x1_1_still_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3821240, + "componentType": 5122, + "count": 2962, + "type": "VEC2", + "name": "x1_1_still_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3821244, + "componentType": 5122, + "count": 2962, + "type": "VEC2", + "name": "x1_1_still_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3821248, + "componentType": 5123, + "count": 2962, + "type": "VEC4", + "name": "x1_1_still_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 494964, + "componentType": 5123, + "count": 10434, + "type": "SCALAR", + "name": "x1_1_still_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3927852, + "componentType": 5126, + "count": 231, + "min": [ + -1.4504354000091553, -1.4424867630004883, -1.282716155052185 + ], + "max": [ + 1.4504311084747314, 1.4424872398376465, 0.0000023841835172788706 + ], + "type": "VEC3", + "name": "x1_1_slow_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3927864, + "componentType": 5120, + "count": 231, + "type": "VEC4", + "name": "x1_1_slow_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3927868, + "componentType": 5120, + "count": 231, + "type": "VEC4", + "name": "x1_1_slow_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3927872, + "componentType": 5122, + "count": 231, + "type": "VEC2", + "name": "x1_1_slow_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3927876, + "componentType": 5122, + "count": 231, + "type": "VEC2", + "name": "x1_1_slow_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3927880, + "componentType": 5123, + "count": 231, + "type": "VEC4", + "name": "x1_1_slow_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 515832, + "componentType": 5123, + "count": 1080, + "type": "SCALAR", + "name": "x1_1_slow_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3936168, + "componentType": 5126, + "count": 231, + "min": [ + -1.4504354000091553, -1.4424867630004883, -1.2827162742614746 + ], + "max": [ + 1.4504311084747314, 1.4424872398376465, 0.000002384183744652546 + ], + "type": "VEC3", + "name": "x1_1_blurred_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3936180, + "componentType": 5120, + "count": 231, + "type": "VEC4", + "name": "x1_1_blurred_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3936184, + "componentType": 5120, + "count": 231, + "type": "VEC4", + "name": "x1_1_blurred_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3936188, + "componentType": 5122, + "count": 231, + "type": "VEC2", + "name": "x1_1_blurred_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3936192, + "componentType": 5122, + "count": 231, + "type": "VEC2", + "name": "x1_1_blurred_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3936196, + "componentType": 5123, + "count": 231, + "type": "VEC4", + "name": "x1_1_blurred_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 517992, + "componentType": 5123, + "count": 1080, + "type": "SCALAR", + "name": "x1_1_blurred_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3944484, + "componentType": 5126, + "count": 6681, + "min": [ + 7.849228382110596, -3.4741556644439697, -1.9291410446166992 + ], + "max": [ + 11.76123332977295, 0.37735897302627563, 0.5264034271240234 + ], + "type": "VEC3", + "name": "x1_Engine_Duct_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3944496, + "componentType": 5120, + "count": 6681, + "type": "VEC4", + "name": "x1_Engine_Duct_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3944500, + "componentType": 5120, + "count": 6681, + "type": "VEC4", + "name": "x1_Engine_Duct_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3944504, + "componentType": 5122, + "count": 6681, + "type": "VEC2", + "name": "x1_Engine_Duct_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3944508, + "componentType": 5122, + "count": 6681, + "type": "VEC2", + "name": "x1_Engine_Duct_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3944512, + "componentType": 5123, + "count": 6681, + "type": "VEC4", + "name": "x1_Engine_Duct_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 520152, + "componentType": 5123, + "count": 17331, + "type": "SCALAR", + "name": "x1_Engine_Duct_left_indices#2" + }, { + "bufferView": 4, + "byteOffset": 4185000, + "componentType": 5126, + "count": 2968, + "min": [ + -1.6327760219573975, -1.5934643745422363, -0.2789556384086609 + ], + "max": [ + 1.6327769756317139, 1.5934640169143677, 0.27895587682724 + ], + "type": "VEC3", + "name": "x1_Engine_Details04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4185012, + "componentType": 5120, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4185016, + "componentType": 5120, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4185020, + "componentType": 5122, + "count": 2968, + "type": "VEC2", + "name": "x1_Engine_Details04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4185024, + "componentType": 5122, + "count": 2968, + "type": "VEC2", + "name": "x1_Engine_Details04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4185028, + "componentType": 5123, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 554814, + "componentType": 5123, + "count": 5820, + "type": "SCALAR", + "name": "x1_Engine_Details04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4291848, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_LEFT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4291860, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4291864, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4291868, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4291872, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4291876, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 566454, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_LEFT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4291992, + "componentType": 5126, + "count": 5637, + "min": [ + 7.761521339416504, -3.588141918182373, -6.928446292877197 + ], + "max": [ + 11.850577354431152, 0.6290028691291809, 4.622333526611328 + ], + "type": "VEC3", + "name": "FROST_ENGINEL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4292004, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4292008, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4292012, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4292016, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4292020, + "componentType": 5123, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 566466, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINEL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 4494924, + "componentType": 5126, + "count": 30, + "min": [ + -2.0173912048339844, -0.27122175693511963, -0.4341895580291748 + ], + "max": [ + 2.017392158508301, 0.2712216377258301, 0.434190034866333 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_EngA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4494936, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4494940, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4494944, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x1_Livery_KLM_EngA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4494948, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x1_Livery_KLM_EngA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4494952, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 590322, + "componentType": 5123, + "count": 96, + "type": "SCALAR", + "name": "x1_Livery_KLM_EngA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4496004, + "componentType": 5126, + "count": 50, + "min": [ + -0.401538610458374, -0.017184298485517502, -0.023762376978993416 + ], + "max": [ + 0.01746518164873123, 0.000016780531950644217, 0.016109267249703407 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_03_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4496016, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4496020, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4496024, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_03_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4496028, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_03_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4496032, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 590514, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_03_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4497804, + "componentType": 5126, + "count": 121, + "min": [ + -0.03596008941531181, -0.038111552596092224, -0.03648361936211586 + ], + "max": [ + 0.34837883710861206, 0.004280500113964081, 0.03448377549648285 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4497816, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4497820, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4497824, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4497828, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4497832, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 590754, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4502160, + "componentType": 5126, + "count": 56, + "min": [ + -0.40154433250427246, -0.01738070137798786, -0.008855592459440231 + ], + "max": [ + 0.017330188304185867, 0.000029506698410841636, 0.028257984668016434 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4502172, + "componentType": 5120, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4502176, + "componentType": 5120, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4502180, + "componentType": 5122, + "count": 56, + "type": "VEC2", + "name": "x1_flap_hydrolics_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4502184, + "componentType": 5122, + "count": 56, + "type": "VEC2", + "name": "x1_flap_hydrolics_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4502188, + "componentType": 5123, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 591378, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x1_flap_hydrolics_02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4504176, + "componentType": 5126, + "count": 119, + "min": [ + -0.03554224222898483, -0.03811116889119148, -0.03606497123837471 + ], + "max": [ + 0.34836769104003906, 0.0042805480770766735, 0.03406417369842529 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4504188, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4504192, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4504196, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4504200, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4504204, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 591666, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4508460, + "componentType": 5126, + "count": 91, + "min": [ + -0.040706586092710495, -0.033503077924251556, -0.07558140903711319 + ], + "max": [ + 0.30609622597694397, 1.0481846332550049, 0.03409158065915108 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4508472, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4508476, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4508480, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x1_Landing_Gear_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4508484, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x1_Landing_Gear_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4508488, + "componentType": 5123, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 592290, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "x1_Landing_Gear_02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4511736, + "componentType": 5126, + "count": 199, + "min": [ + -0.29485875368118286, -1.135009765625, -0.04442417621612549 + ], + "max": [ + 0.03963816165924072, 0.03963650390505791, 0.004242300987243652 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4511748, + "componentType": 5120, + "count": 199, + "type": "VEC4", + "name": "x1_Landing_Gear_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4511752, + "componentType": 5120, + "count": 199, + "type": "VEC4", + "name": "x1_Landing_Gear_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4511756, + "componentType": 5122, + "count": 199, + "type": "VEC2", + "name": "x1_Landing_Gear_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4511760, + "componentType": 5122, + "count": 199, + "type": "VEC2", + "name": "x1_Landing_Gear_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4511764, + "componentType": 5123, + "count": 199, + "type": "VEC4", + "name": "x1_Landing_Gear_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 592962, + "componentType": 5123, + "count": 744, + "type": "SCALAR", + "name": "x1_Landing_Gear_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4518900, + "componentType": 5126, + "count": 1028, + "min": [ + -0.26637908816337585, -0.2706132233142853, -1.629464864730835 + ], + "max": [ + 0.8295279145240784, 2.1078507900238037, 1.894356608390808 + ], + "type": "VEC3", + "name": "x1_Door01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4518912, + "componentType": 5120, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4518916, + "componentType": 5120, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4518920, + "componentType": 5122, + "count": 1028, + "type": "VEC2", + "name": "x1_Door01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4518924, + "componentType": 5122, + "count": 1028, + "type": "VEC2", + "name": "x1_Door01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4518928, + "componentType": 5123, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 594450, + "componentType": 5123, + "count": 2232, + "type": "SCALAR", + "name": "x1_Door01_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 4555908, + "componentType": 5126, + "count": 903, + "min": [ + -0.06035256385803223, -0.11294597387313843, -0.09622618556022644 + ], + "max": [ + 0.09581376612186432, 0.09739702939987183, 0.3150135576725006 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4555920, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4555924, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4555928, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4555932, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4555936, + "componentType": 5123, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart10_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 598914, + "componentType": 5123, + "count": 2316, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart10_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4588416, + "componentType": 5126, + "count": 184, + "min": [ + -0.04366125166416168, -0.045600950717926025, -0.05423367768526077 + ], + "max": [ + 0.15206336975097656, 0.0006025433540344238, 0.2598930895328522 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4588428, + "componentType": 5120, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4588432, + "componentType": 5120, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4588436, + "componentType": 5122, + "count": 184, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4588440, + "componentType": 5122, + "count": 184, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4588444, + "componentType": 5123, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart11_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 603546, + "componentType": 5123, + "count": 636, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart11_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4595040, + "componentType": 5126, + "count": 903, + "min": [ + -0.095248281955719, -0.2148498296737671, -0.09844669699668884 + ], + "max": [ + 0.06396561861038208, -0.0045092105865478516, 0.31307291984558105 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4595052, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4595056, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4595060, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4595064, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4595068, + "componentType": 5123, + "count": 903, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart09_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 604818, + "componentType": 5123, + "count": 2316, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart09_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4627548, + "componentType": 5126, + "count": 184, + "min": [ + -0.04010419175028801, -0.04563178867101669, -0.05983680486679077 + ], + "max": [ + 0.06779199093580246, 0.0006069535738788545, 0.2844340205192566 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4627560, + "componentType": 5120, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4627564, + "componentType": 5120, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4627568, + "componentType": 5122, + "count": 184, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4627572, + "componentType": 5122, + "count": 184, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4627576, + "componentType": 5123, + "count": 184, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart12_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 609450, + "componentType": 5123, + "count": 636, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart12_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4634172, + "componentType": 5126, + "count": 1066, + "min": [ + -0.17296601831912994, -0.0884089469909668, -0.22619393467903137 + ], + "max": [ + 0.267547070980072, 0.09122806787490845, 0.22906678915023804 + ], + "type": "VEC3", + "name": "x1_Gear_Wheel_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4634184, + "componentType": 5120, + "count": 1066, + "type": "VEC4", + "name": "x1_Gear_Wheel_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4634188, + "componentType": 5120, + "count": 1066, + "type": "VEC4", + "name": "x1_Gear_Wheel_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4634192, + "componentType": 5122, + "count": 1066, + "type": "VEC2", + "name": "x1_Gear_Wheel_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4634196, + "componentType": 5122, + "count": 1066, + "type": "VEC2", + "name": "x1_Gear_Wheel_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4634200, + "componentType": 5123, + "count": 1066, + "type": "VEC4", + "name": "x1_Gear_Wheel_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 610722, + "componentType": 5123, + "count": 3156, + "type": "SCALAR", + "name": "x1_Gear_Wheel_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4672548, + "componentType": 5126, + "count": 1046, + "min": [ + -0.0719643160700798, -0.2295897752046585, -0.023477545008063316 + ], + "max": [ + 0.16488564014434814, 0.1117168441414833, 0.7675072550773621 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4672560, + "componentType": 5120, + "count": 1046, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4672564, + "componentType": 5120, + "count": 1046, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4672568, + "componentType": 5122, + "count": 1046, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4672572, + "componentType": 5122, + "count": 1046, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4672576, + "componentType": 5123, + "count": 1046, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart14_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 617034, + "componentType": 5123, + "count": 2856, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart14_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4710204, + "componentType": 5126, + "count": 6280, + "min": [ + -0.564075767993927, -0.5043461322784424, -0.5339012145996094 + ], + "max": [ + 0.5640766024589539, 0.5015571117401123, 0.4720020294189453 + ], + "type": "VEC3", + "name": "x1_Wheel_Nose_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4710216, + "componentType": 5120, + "count": 6280, + "type": "VEC4", + "name": "x1_Wheel_Nose_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4710220, + "componentType": 5120, + "count": 6280, + "type": "VEC4", + "name": "x1_Wheel_Nose_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4710224, + "componentType": 5122, + "count": 6280, + "type": "VEC2", + "name": "x1_Wheel_Nose_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4710228, + "componentType": 5122, + "count": 6280, + "type": "VEC2", + "name": "x1_Wheel_Nose_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4710232, + "componentType": 5123, + "count": 6280, + "type": "VEC4", + "name": "x1_Wheel_Nose_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 622746, + "componentType": 5123, + "count": 12240, + "type": "SCALAR", + "name": "x1_Wheel_Nose_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4936284, + "componentType": 5126, + "count": 3160, + "min": [ + -0.5598625540733337, -0.5029525756835938, -0.5029479265213013 + ], + "max": [ + 0.5598625540733337, 0.50295090675354, 0.5029536485671997 + ], + "type": "VEC3", + "name": "x1_Wheel_Nose_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4936296, + "componentType": 5120, + "count": 3160, + "type": "VEC4", + "name": "x1_Wheel_Nose_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4936300, + "componentType": 5120, + "count": 3160, + "type": "VEC4", + "name": "x1_Wheel_Nose_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4936304, + "componentType": 5122, + "count": 3160, + "type": "VEC2", + "name": "x1_Wheel_Nose_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4936308, + "componentType": 5122, + "count": 3160, + "type": "VEC2", + "name": "x1_Wheel_Nose_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4936312, + "componentType": 5123, + "count": 3160, + "type": "VEC4", + "name": "x1_Wheel_Nose_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 647226, + "componentType": 5123, + "count": 6480, + "type": "SCALAR", + "name": "x1_Wheel_Nose_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5050044, + "componentType": 5126, + "count": 872, + "min": [ + -0.32607021927833557, -1.9048418998718262, -0.25345391035079956 + ], + "max": [ + 0.325406938791275, -0.8368071913719177, 0.29944902658462524 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5050056, + "componentType": 5120, + "count": 872, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5050060, + "componentType": 5120, + "count": 872, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5050064, + "componentType": 5122, + "count": 872, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5050068, + "componentType": 5122, + "count": 872, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5050072, + "componentType": 5123, + "count": 872, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart13_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 660186, + "componentType": 5123, + "count": 2274, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart13_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5081436, + "componentType": 5126, + "count": 880, + "min": [ + -0.09572035074234009, -0.22931814193725586, -0.0551883727312088 + ], + "max": [ + 0.4547708332538605, 0.08235087990760803, 0.5951755046844482 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5081448, + "componentType": 5120, + "count": 880, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5081452, + "componentType": 5120, + "count": 880, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5081456, + "componentType": 5122, + "count": 880, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5081460, + "componentType": 5122, + "count": 880, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5081464, + "componentType": 5123, + "count": 880, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart15_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 664734, + "componentType": 5123, + "count": 2802, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart15_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5113116, + "componentType": 5126, + "count": 189, + "min": [ + 0.2687198519706726, 23.100963592529297, 2.3238377571105957 + ], + "max": [ + 0.3472961485385895, 23.16554832458496, 2.375727891921997 + ], + "type": "VEC3", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5113128, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5113132, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5113136, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5113140, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5113144, + "componentType": 5123, + "count": 189, + "type": "VEC4", + "name": "x1_Door_Left02_hydraulic02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 670338, + "componentType": 5123, + "count": 444, + "type": "SCALAR", + "name": "x1_Door_Left02_hydraulic02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5119920, + "componentType": 5126, + "count": 203, + "min": [ + -0.4715576171875, -0.0449226051568985, -0.7302242517471313 + ], + "max": [ + 0.08164596557617188, 0.050767313688993454, 0.0557522177696228 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5119932, + "componentType": 5120, + "count": 203, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5119936, + "componentType": 5120, + "count": 203, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5119940, + "componentType": 5122, + "count": 203, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5119944, + "componentType": 5122, + "count": 203, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5119948, + "componentType": 5123, + "count": 203, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart07_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 671226, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart07_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5127228, + "componentType": 5126, + "count": 172, + "min": [ + -0.08781242370605469, -1.1108953952789307, 0.039211273193359375 + ], + "max": [ + 0.058147430419921875, -0.9635745882987976, 0.9703941345214844 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5127240, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5127244, + "componentType": 5120, + "count": 172, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5127248, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5127252, + "componentType": 5122, + "count": 172, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5127256, + "componentType": 5123, + "count": 172, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart05_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 672450, + "componentType": 5123, + "count": 480, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart05_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5133420, + "componentType": 5126, + "count": 159, + "min": [ + -0.036708831787109375, -1.0427391529083252, 0.07490301132202148 + ], + "max": [ + 0.07288551330566406, -0.9773632884025574, 1.1132025718688965 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5133432, + "componentType": 5120, + "count": 159, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5133436, + "componentType": 5120, + "count": 159, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5133440, + "componentType": 5122, + "count": 159, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5133444, + "componentType": 5122, + "count": 159, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5133448, + "componentType": 5123, + "count": 159, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart04_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 673410, + "componentType": 5123, + "count": 588, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart04_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5139144, + "componentType": 5126, + "count": 197, + "min": [ + -0.3427569568157196, -23.166017532348633, -2.3757452964782715 + ], + "max": [ + -0.26418083906173706, -23.10099983215332, -2.323854684829712 + ], + "type": "VEC3", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5139156, + "componentType": 5120, + "count": 197, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5139160, + "componentType": 5120, + "count": 197, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5139164, + "componentType": 5122, + "count": 197, + "type": "VEC2", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5139168, + "componentType": 5122, + "count": 197, + "type": "VEC2", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5139172, + "componentType": 5123, + "count": 197, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 674586, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "x1_Door_Right02_hydraulic02_center_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5146236, + "componentType": 5126, + "count": 32, + "min": [ + -0.0767706036567688, -0.040036141872406006, -0.1452082097530365 + ], + "max": [ + 0.00520661473274231, 0.00013843178749084473, 0.004933050833642483 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5146248, + "componentType": 5120, + "count": 32, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5146252, + "componentType": 5120, + "count": 32, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5146256, + "componentType": 5122, + "count": 32, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5146260, + "componentType": 5122, + "count": 32, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5146264, + "componentType": 5123, + "count": 32, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_Decals_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 675498, + "componentType": 5123, + "count": 48, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart16_Decals_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5147388, + "componentType": 5126, + "count": 148, + "min": [ + -0.3641817271709442, 1.036027193069458, 0.035434722900390625 + ], + "max": [ + 0.3641034960746765, 1.2864251136779785, 0.0484466552734375 + ], + "type": "VEC3", + "name": "x1_cgear_landinglight_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5147400, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_cgear_landinglight_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5147404, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_cgear_landinglight_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5147408, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_cgear_landinglight_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5147412, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_cgear_landinglight_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5147416, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x1_cgear_landinglight_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 675594, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x1_cgear_landinglight_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5152716, + "componentType": 5126, + "count": 336, + "min": [ + -0.05591854453086853, -0.06089082360267639, 0.015495792031288147 + ], + "max": [ + 0.061689287424087524, 0.05669650435447693, 0.07396075129508972 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5152728, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5152732, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5152736, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5152740, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5152744, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 676746, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5164812, + "componentType": 5126, + "count": 16158, + "min": [ + -0.6842957139015198, -1.2334191799163818, -0.38600975275039673 + ], + "max": [ + 0.6873666644096375, 0.2294510155916214, 0.4601714015007019 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5164824, + "componentType": 5120, + "count": 16158, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5164828, + "componentType": 5120, + "count": 16158, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5164832, + "componentType": 5122, + "count": 16158, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5164836, + "componentType": 5122, + "count": 16158, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5164840, + "componentType": 5123, + "count": 16158, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart16_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 677802, + "componentType": 5123, + "count": 42306, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart16_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5746500, + "componentType": 5126, + "count": 336, + "min": [ + -0.05926698446273804, -0.06006696820259094, 0.014746665954589844 + ], + "max": [ + 0.05834090709686279, 0.05752035975456238, 0.07321162521839142 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5746512, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5746516, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5746520, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5746524, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5746528, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 762414, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5758596, + "componentType": 5126, + "count": 336, + "min": [ + -0.06035532057285309, -0.05839133262634277, 0.01306241750717163 + ], + "max": [ + 0.05670058727264404, 0.05864408612251282, 0.07599139213562012 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5758608, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5758612, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5758616, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5758620, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5758624, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 763470, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5770692, + "componentType": 5126, + "count": 336, + "min": [ + -0.053412288427352905, -0.057750552892684937, 0.012313216924667358 + ], + "max": [ + 0.06364355981349945, 0.059284865856170654, 0.07211384922266006 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5770704, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5770708, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5770712, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5770716, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5770720, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 764526, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5782788, + "componentType": 5126, + "count": 206, + "min": [ + -0.061318039894104004, -0.1634036749601364, -0.10155540704727173 + ], + "max": [ + 0.7181889414787292, 0.2122105211019516, 0.05516347289085388 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5782800, + "componentType": 5120, + "count": 206, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5782804, + "componentType": 5120, + "count": 206, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5782808, + "componentType": 5122, + "count": 206, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5782812, + "componentType": 5122, + "count": 206, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5782816, + "componentType": 5123, + "count": 206, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 765582, + "componentType": 5123, + "count": 420, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart01_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5790204, + "componentType": 5126, + "count": 104, + "min": [ + -0.03185497596859932, -0.768096923828125, -0.1983291208744049 + ], + "max": [ + 0.019964251667261124, -0.001962006092071533, 0.19248038530349731 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5790216, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5790220, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5790224, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5790228, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5790232, + "componentType": 5123, + "count": 104, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart03_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 766422, + "componentType": 5123, + "count": 264, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart03_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5793948, + "componentType": 5126, + "count": 496, + "min": [ + -0.08662223815917969, -0.1922166794538498, -0.09896642714738846 + ], + "max": [ + 0.33180874586105347, 0.1846460998058319, 0.07483066618442535 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5793960, + "componentType": 5120, + "count": 496, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5793964, + "componentType": 5120, + "count": 496, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5793968, + "componentType": 5122, + "count": 496, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5793972, + "componentType": 5122, + "count": 496, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5793976, + "componentType": 5123, + "count": 496, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 766950, + "componentType": 5123, + "count": 966, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5811804, + "componentType": 5126, + "count": 378, + "min": [ + -0.059207916259765625, -0.6851544380187988, -0.059002041816711426 + ], + "max": [ + 0.05928802490234375, 0.6858001947402954, 1.434278130531311 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5811816, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5811820, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5811824, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5811828, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5811832, + "componentType": 5123, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_NosePart06_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 768882, + "componentType": 5123, + "count": 960, + "type": "SCALAR", + "name": "x1_Landing_Gear_NosePart06_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5825412, + "componentType": 5126, + "count": 91, + "min": [ + -0.3052455484867096, -1.0267791748046875, -0.034659385681152344 + ], + "max": [ + 0.04059344530105591, 0.03281879425048828, 0.07683992385864258 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5825424, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5825428, + "componentType": 5120, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5825432, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x1_Landing_Gear_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5825436, + "componentType": 5122, + "count": 91, + "type": "VEC2", + "name": "x1_Landing_Gear_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5825440, + "componentType": 5123, + "count": 91, + "type": "VEC4", + "name": "x1_Landing_Gear_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 770802, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "x1_Landing_Gear_02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5828688, + "componentType": 5126, + "count": 1757, + "min": [ + -3.5584349632263184, -0.18898406624794006, 0.005889415740966797 + ], + "max": [ + 5.950490951538086, 0.19030725955963135, 1.7754877805709839 + ], + "type": "VEC3", + "name": "x1_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5828700, + "componentType": 5120, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5828704, + "componentType": 5120, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5828708, + "componentType": 5122, + "count": 1757, + "type": "VEC2", + "name": "x1_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5828712, + "componentType": 5122, + "count": 1757, + "type": "VEC2", + "name": "x1_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5828716, + "componentType": 5123, + "count": 1757, + "type": "VEC4", + "name": "x1_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 771474, + "componentType": 5123, + "count": 5046, + "type": "SCALAR", + "name": "x1_Elevator_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5891940, + "componentType": 5126, + "count": 49, + "min": [ + -0.058685302734375, -0.02209782600402832, -0.058669209480285645 + ], + "max": [ + 0.058684349060058594, -0.0038215811364352703, 0.058673858642578125 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5891952, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5891956, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5891960, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5891964, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5891968, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 781566, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5893704, + "componentType": 5126, + "count": 993, + "min": [ + -9.87392520904541, 0.4362349510192871, -39.12284469604492 + ], + "max": [ + -1.1026742458343506, 2.5371527671813965, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5893716, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5893720, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5893724, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5893728, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5893732, + "componentType": 5123, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 781854, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5929452, + "componentType": 5126, + "count": 3324, + "min": [ + -8.383636474609375, -0.9291348457336426, -7.686825275421143 + ], + "max": [ + 0.3470169007778168, 1.1159900426864624, 1.9090267419815063 + ], + "type": "VEC3", + "name": "x1_Trim_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5929464, + "componentType": 5120, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5929468, + "componentType": 5120, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5929472, + "componentType": 5122, + "count": 3324, + "type": "VEC2", + "name": "x1_Trim_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5929476, + "componentType": 5122, + "count": 3324, + "type": "VEC2", + "name": "x1_Trim_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5929480, + "componentType": 5123, + "count": 3324, + "type": "VEC4", + "name": "x1_Trim_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 786300, + "componentType": 5123, + "count": 7752, + "type": "SCALAR", + "name": "x1_Trim_Elevator_right_indices#2" + }, { + "bufferView": 4, + "byteOffset": 6049116, + "componentType": 5126, + "count": 543, + "min": [ + -0.20538179576396942, -0.8455973267555237, -1.0106956958770752 + ], + "max": [ + 0.2053818553686142, 0.8455974459648132, 1.0106956958770752 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6049128, + "componentType": 5120, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6049132, + "componentType": 5120, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6049136, + "componentType": 5122, + "count": 543, + "type": "VEC2", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6049140, + "componentType": 5122, + "count": 543, + "type": "VEC2", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6049144, + "componentType": 5123, + "count": 543, + "type": "VEC4", + "name": "x1_Livery_KLM_ElevatorTrimR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 801804, + "componentType": 5123, + "count": 1230, + "type": "SCALAR", + "name": "x1_Livery_KLM_ElevatorTrimR_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6068664, + "componentType": 5126, + "count": 419, + "min": [ + -0.5552628040313721, -0.9171208739280701, -0.6377007365226746 + ], + "max": [ + 0.5850158929824829, 0.15001221001148224, 0.029622580856084824 + ], + "type": "VEC3", + "name": "x1_Door02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6068676, + "componentType": 5120, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6068680, + "componentType": 5120, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6068684, + "componentType": 5122, + "count": 419, + "type": "VEC2", + "name": "x1_Door02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6068688, + "componentType": 5122, + "count": 419, + "type": "VEC2", + "name": "x1_Door02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6068692, + "componentType": 5123, + "count": 419, + "type": "VEC4", + "name": "x1_Door02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 804264, + "componentType": 5123, + "count": 1035, + "type": "SCALAR", + "name": "x1_Door02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6083748, + "componentType": 5126, + "count": 444, + "min": [ + -0.3594149947166443, -1.0117957592010498, -0.1624697893857956 + ], + "max": [ + 0.6317750215530396, 0.02225165255367756, 0.22873567044734955 + ], + "type": "VEC3", + "name": "x1_Door03_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6083760, + "componentType": 5120, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6083764, + "componentType": 5120, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6083768, + "componentType": 5122, + "count": 444, + "type": "VEC2", + "name": "x1_Door03_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6083772, + "componentType": 5122, + "count": 444, + "type": "VEC2", + "name": "x1_Door03_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6083776, + "componentType": 5123, + "count": 444, + "type": "VEC4", + "name": "x1_Door03_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 806334, + "componentType": 5123, + "count": 1212, + "type": "SCALAR", + "name": "x1_Door03_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6099732, + "componentType": 5126, + "count": 2968, + "min": [ + -1.6327768564224243, -1.5934644937515259, -0.2789553999900818 + ], + "max": [ + 1.632775902748108, 1.5934648513793945, 0.27895593643188477 + ], + "type": "VEC3", + "name": "x1_Engine_Details04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6099744, + "componentType": 5120, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6099748, + "componentType": 5120, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6099752, + "componentType": 5122, + "count": 2968, + "type": "VEC2", + "name": "x1_Engine_Details04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6099756, + "componentType": 5122, + "count": 2968, + "type": "VEC2", + "name": "x1_Engine_Details04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6099760, + "componentType": 5123, + "count": 2968, + "type": "VEC4", + "name": "x1_Engine_Details04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 808758, + "componentType": 5123, + "count": 5820, + "type": "SCALAR", + "name": "x1_Engine_Details04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6206580, + "componentType": 5126, + "count": 6665, + "min": [ + -1.9559953212738037, -1.9257529973983765, -1.2277790307998657 + ], + "max": [ + 1.9559955596923828, 1.925756573677063, 1.2277790307998657 + ], + "type": "VEC3", + "name": "x1_Engine_Duct_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6206592, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "x1_Engine_Duct_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6206596, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "x1_Engine_Duct_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6206600, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "x1_Engine_Duct_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6206604, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "x1_Engine_Duct_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6206608, + "componentType": 5123, + "count": 6665, + "type": "VEC4", + "name": "x1_Engine_Duct_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 820398, + "componentType": 5123, + "count": 17259, + "type": "SCALAR", + "name": "x1_Engine_Duct_right_indices#2" + }, { + "bufferView": 4, + "byteOffset": 6446520, + "componentType": 5126, + "count": 209, + "min": [ + -1.4504361152648926, -1.4424867630004883, -1.2827131748199463 + ], + "max": [ + 1.4504318237304688, 1.4424872398376465, 0.000005483617769641569 + ], + "type": "VEC3", + "name": "x1_2_blurred_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6446532, + "componentType": 5120, + "count": 209, + "type": "VEC4", + "name": "x1_2_blurred_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6446536, + "componentType": 5120, + "count": 209, + "type": "VEC4", + "name": "x1_2_blurred_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6446540, + "componentType": 5122, + "count": 209, + "type": "VEC2", + "name": "x1_2_blurred_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6446544, + "componentType": 5122, + "count": 209, + "type": "VEC2", + "name": "x1_2_blurred_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6446548, + "componentType": 5123, + "count": 209, + "type": "VEC4", + "name": "x1_2_blurred_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 854916, + "componentType": 5123, + "count": 960, + "type": "SCALAR", + "name": "x1_2_blurred_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6454044, + "componentType": 5126, + "count": 209, + "min": [ + -1.4504361152648926, -1.4424867630004883, -1.2827131748199463 + ], + "max": [ + 1.4504318237304688, 1.4424872398376465, 0.00000548361822438892 + ], + "type": "VEC3", + "name": "x1_2_slow_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6454056, + "componentType": 5120, + "count": 209, + "type": "VEC4", + "name": "x1_2_slow_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6454060, + "componentType": 5120, + "count": 209, + "type": "VEC4", + "name": "x1_2_slow_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6454064, + "componentType": 5122, + "count": 209, + "type": "VEC2", + "name": "x1_2_slow_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6454068, + "componentType": 5122, + "count": 209, + "type": "VEC2", + "name": "x1_2_slow_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6454072, + "componentType": 5123, + "count": 209, + "type": "VEC4", + "name": "x1_2_slow_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 856836, + "componentType": 5123, + "count": 960, + "type": "SCALAR", + "name": "x1_2_slow_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6461568, + "componentType": 5126, + "count": 2962, + "min": [ + -1.448843240737915, -1.4488415718078613, -1.3035306930541992 + ], + "max": [ + 1.4488416910171509, 1.4488414525985718, 0.001082180067896843 + ], + "type": "VEC3", + "name": "x1_2_still_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6461580, + "componentType": 5120, + "count": 2962, + "type": "VEC4", + "name": "x1_2_still_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6461584, + "componentType": 5120, + "count": 2962, + "type": "VEC4", + "name": "x1_2_still_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6461588, + "componentType": 5122, + "count": 2962, + "type": "VEC2", + "name": "x1_2_still_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6461592, + "componentType": 5122, + "count": 2962, + "type": "VEC2", + "name": "x1_2_still_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6461596, + "componentType": 5123, + "count": 2962, + "type": "VEC4", + "name": "x1_2_still_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 858756, + "componentType": 5123, + "count": 10434, + "type": "SCALAR", + "name": "x1_2_still_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6568200, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_RIGHT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6568212, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6568216, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6568220, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6568224, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6568228, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 879624, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_RIGHT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6568344, + "componentType": 5126, + "count": 6446, + "min": [ + -11.850570678710938, -3.588144302368164, -6.928446292877197 + ], + "max": [ + -7.761514663696289, 0.6290009021759033, 4.6223344802856445 + ], + "type": "VEC3", + "name": "FROST_ENGINER_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6568356, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6568360, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6568364, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6568368, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6568372, + "componentType": 5123, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 879636, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINER_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6800400, + "componentType": 5126, + "count": 30, + "min": [ + -2.017392635345459, -0.27122175693511963, -0.4341893196105957 + ], + "max": [ + 2.017390251159668, 0.2712215185165405, 0.434190034866333 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_EngB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6800412, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6800416, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6800420, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x1_Livery_KLM_EngB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6800424, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "x1_Livery_KLM_EngB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6800428, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "x1_Livery_KLM_EngB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 903492, + "componentType": 5123, + "count": 96, + "type": "SCALAR", + "name": "x1_Livery_KLM_EngB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6801480, + "componentType": 5126, + "count": 1193, + "min": [ + -3.244917392730713, -0.6459482908248901, -0.8577571511268616 + ], + "max": [ + 3.0591859817504883, 0.05917472392320633, 0.00043965515214949846 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6801492, + "componentType": 5120, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6801496, + "componentType": 5120, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6801500, + "componentType": 5122, + "count": 1193, + "type": "VEC2", + "name": "x1_FlapsKrueger_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6801504, + "componentType": 5122, + "count": 1193, + "type": "VEC2", + "name": "x1_FlapsKrueger_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6801508, + "componentType": 5123, + "count": 1193, + "type": "VEC4", + "name": "x1_FlapsKrueger_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 903684, + "componentType": 5123, + "count": 2382, + "type": "SCALAR", + "name": "x1_FlapsKrueger_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 6844428, + "componentType": 5126, + "count": 92, + "min": [ + -8.716888427734375, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + -3.323636531829834, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6844440, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6844444, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6844448, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6844452, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6844456, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 908448, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6847740, + "componentType": 5126, + "count": 122, + "min": [ + -0.9412904381752014, -0.0855402946472168, -0.06711722910404205 + ], + "max": [ + 0.06540646404027939, -0.039178308099508286, 0.06535222381353378 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6847752, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6847756, + "componentType": 5120, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6847760, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x1_flap_hydrolics_17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6847764, + "componentType": 5122, + "count": 122, + "type": "VEC2", + "name": "x1_flap_hydrolics_17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6847768, + "componentType": 5123, + "count": 122, + "type": "VEC4", + "name": "x1_flap_hydrolics_17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 908772, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6852132, + "componentType": 5126, + "count": 5570, + "min": [ + -4.2190351486206055, -0.8868647217750549, -0.5424173474311829 + ], + "max": [ + 3.4634878635406494, 0.10926224291324615, 2.4217164516448975 + ], + "type": "VEC3", + "name": "x1_Flaps_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6852144, + "componentType": 5120, + "count": 5570, + "type": "VEC4", + "name": "x1_Flaps_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6852148, + "componentType": 5120, + "count": 5570, + "type": "VEC4", + "name": "x1_Flaps_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6852152, + "componentType": 5122, + "count": 5570, + "type": "VEC2", + "name": "x1_Flaps_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6852156, + "componentType": 5122, + "count": 5570, + "type": "VEC2", + "name": "x1_Flaps_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6852160, + "componentType": 5123, + "count": 5570, + "type": "VEC4", + "name": "x1_Flaps_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 909132, + "componentType": 5123, + "count": 10488, + "type": "SCALAR", + "name": "x1_Flaps_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 7052652, + "componentType": 5126, + "count": 736, + "min": [ + -0.1432664543390274, -0.055409133434295654, -0.07192297279834747 + ], + "max": [ + 0.15020854771137238, 1.0136308670043945, 0.0933273434638977 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_16_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7052664, + "componentType": 5120, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7052668, + "componentType": 5120, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7052672, + "componentType": 5122, + "count": 736, + "type": "VEC2", + "name": "x1_Landing_Gear_16_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7052676, + "componentType": 5122, + "count": 736, + "type": "VEC2", + "name": "x1_Landing_Gear_16_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7052680, + "componentType": 5123, + "count": 736, + "type": "VEC4", + "name": "x1_Landing_Gear_16_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 930108, + "componentType": 5123, + "count": 2112, + "type": "SCALAR", + "name": "x1_Landing_Gear_16_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7079148, + "componentType": 5126, + "count": 436, + "min": [ + -0.09423620253801346, -0.4405474066734314, -0.28720802068710327 + ], + "max": [ + 0.23346596956253052, 0.0019789859652519226, 0.09423724561929703 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_15_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7079160, + "componentType": 5120, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7079164, + "componentType": 5120, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7079168, + "componentType": 5122, + "count": 436, + "type": "VEC2", + "name": "x1_Landing_Gear_15_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7079172, + "componentType": 5122, + "count": 436, + "type": "VEC2", + "name": "x1_Landing_Gear_15_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7079176, + "componentType": 5123, + "count": 436, + "type": "VEC4", + "name": "x1_Landing_Gear_15_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 934332, + "componentType": 5123, + "count": 1140, + "type": "SCALAR", + "name": "x1_Landing_Gear_15_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7094844, + "componentType": 5126, + "count": 56, + "min": [ + -0.40154433250427246, -0.01738070137798786, -0.008855592459440231 + ], + "max": [ + 0.017330188304185867, 0.000029506698410841636, 0.028257984668016434 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7094856, + "componentType": 5120, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7094860, + "componentType": 5120, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7094864, + "componentType": 5122, + "count": 56, + "type": "VEC2", + "name": "x1_flap_hydrolics_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7094868, + "componentType": 5122, + "count": 56, + "type": "VEC2", + "name": "x1_flap_hydrolics_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7094872, + "componentType": 5123, + "count": 56, + "type": "VEC4", + "name": "x1_flap_hydrolics_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 936612, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x1_flap_hydrolics_02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7096860, + "componentType": 5126, + "count": 119, + "min": [ + -0.03554224222898483, -0.03811116889119148, -0.03606497123837471 + ], + "max": [ + 0.34836769104003906, 0.0042805480770766735, 0.03406417369842529 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7096872, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7096876, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7096880, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7096884, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7096888, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 936900, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7101144, + "componentType": 5126, + "count": 50, + "min": [ + -0.40155717730522156, -0.017184622585773468, -0.023760827258229256 + ], + "max": [ + 0.017465990036725998, 0.000016780848454800434, 0.01610821858048439 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_03_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7101156, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7101160, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7101164, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_03_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7101168, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_03_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7101172, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_03_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 937524, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_03_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7102944, + "componentType": 5126, + "count": 121, + "min": [ + -0.03596016392111778, -0.038111403584480286, -0.036483682692050934 + ], + "max": [ + 0.34837958216667175, 0.004280483815819025, 0.03448383882641792 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7102956, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7102960, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7102964, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7102968, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7102972, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 937764, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7107300, + "componentType": 5126, + "count": 50, + "min": [ + -0.01951824128627777, -0.008635091595351696, -0.019081557169556618 + ], + "max": [ + 0.016407674178481102, 0.008635330013930798, 0.31309735774993896 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_05_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7107312, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7107316, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7107320, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_05_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7107324, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_05_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7107328, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_05_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 938388, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_05_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7109100, + "componentType": 5126, + "count": 121, + "min": [ + -0.03531027212738991, -0.03835122287273407, -0.42914509773254395 + ], + "max": [ + 0.035250306129455566, 0.004053215961903334, 0.03526027873158455 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_06_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7109112, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7109116, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7109120, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_06_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7109124, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_06_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7109128, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_06_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 938628, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_06_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7113456, + "componentType": 5126, + "count": 148, + "min": [ + -0.9414107799530029, -0.04680785536766052, -0.06552965193986893 + ], + "max": [ + 0.06537892669439316, 0.000011900688150490168, 0.06589853018522263 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_18_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7113468, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7113472, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7113476, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_18_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7113480, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_18_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7113484, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_18_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 939252, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_18_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7118784, + "componentType": 5126, + "count": 50, + "min": [ + -0.3123795688152313, -0.008635759353637695, -0.034825678914785385 + ], + "max": [ + 0.01953619159758091, 0.008634090423583984, 0.016830967739224434 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_09_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7118796, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7118800, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7118804, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_09_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7118808, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_09_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7118812, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_09_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 939612, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_09_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7120584, + "componentType": 5126, + "count": 1665, + "min": [ + -0.9306133985519409, -0.578153669834137, -0.1316414177417755 + ], + "max": [ + 0.9475930333137512, -0.011319602839648724, 1.5219933986663818 + ], + "type": "VEC3", + "name": "x1_Flaps_1_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7120596, + "componentType": 5120, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7120600, + "componentType": 5120, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7120604, + "componentType": 5122, + "count": 1665, + "type": "VEC2", + "name": "x1_Flaps_1_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7120608, + "componentType": 5122, + "count": 1665, + "type": "VEC2", + "name": "x1_Flaps_1_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7120612, + "componentType": 5123, + "count": 1665, + "type": "VEC4", + "name": "x1_Flaps_1_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 939852, + "componentType": 5123, + "count": 3516, + "type": "SCALAR", + "name": "x1_Flaps_1_1_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 7180524, + "componentType": 5126, + "count": 144, + "min": [ + -0.6628164052963257, -0.04638216644525528, -0.5727837681770325 + ], + "max": [ + 0.7052468657493591, 0.30548495054244995, 0.04462588578462601 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_07_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7180536, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7180540, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7180544, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_07_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7180548, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_07_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7180552, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_07_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 946884, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x1_flap_hydrolics_07_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7185708, + "componentType": 5126, + "count": 144, + "min": [ + -0.004622459411621094, -0.06194627285003662, -0.43372678756713867 + ], + "max": [ + 1.3936233520507812, 0.2509462237358093, 0.059650421142578125 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_08_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7185720, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7185724, + "componentType": 5120, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7185728, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_08_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7185732, + "componentType": 5122, + "count": 144, + "type": "VEC2", + "name": "x1_flap_hydrolics_08_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7185736, + "componentType": 5123, + "count": 144, + "type": "VEC4", + "name": "x1_flap_hydrolics_08_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 947700, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x1_flap_hydrolics_08_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7190892, + "componentType": 5126, + "count": 121, + "min": [ + -0.0352974608540535, -0.0381406806409359, -0.035329658538103104 + ], + "max": [ + 0.3486586809158325, 0.004251243080943823, 0.03529685363173485 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_10_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7190904, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7190908, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7190912, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_10_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7190916, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_10_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7190920, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_10_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 948516, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_10_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7195248, + "componentType": 5126, + "count": 148, + "min": [ + -0.9412512183189392, -0.050254225730895996, -0.06704986840486526 + ], + "max": [ + 0.06539318710565567, 0.0006855246610939503, 0.06579330563545227 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_19_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7195260, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7195264, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7195268, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_19_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7195272, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x1_flap_hydrolics_19_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7195276, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x1_flap_hydrolics_19_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 949140, + "componentType": 5123, + "count": 180, + "type": "SCALAR", + "name": "x1_flap_hydrolics_19_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7200576, + "componentType": 5126, + "count": 50, + "min": [ + -0.29366031289100647, 2.4422898292541504, -0.04375563934445381 + ], + "max": [ + 0.03539342060685158, 2.459559679031372, 0.03593070060014725 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_11_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7200588, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7200592, + "componentType": 5120, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7200596, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_11_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7200600, + "componentType": 5122, + "count": 50, + "type": "VEC2", + "name": "x1_flap_hydrolics_11_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7200604, + "componentType": 5123, + "count": 50, + "type": "VEC4", + "name": "x1_flap_hydrolics_11_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 949500, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_11_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7202376, + "componentType": 5126, + "count": 48, + "min": [ + -0.2343371957540512, -0.017235828563570976, -0.018017955124378204 + ], + "max": [ + 0.018014686182141304, 0.00003799620026256889, 0.01804342493414879 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_13_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7202388, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7202392, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7202396, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_13_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7202400, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_13_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7202404, + "componentType": 5123, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_13_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 949740, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_13_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7204104, + "componentType": 5126, + "count": 48, + "min": [ + -0.2488279491662979, -0.01722356677055359, -0.01802198775112629 + ], + "max": [ + 0.018008148297667503, 0.0000453491484222468, 0.01802564412355423 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_15_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7204116, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7204120, + "componentType": 5120, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7204124, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_15_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7204128, + "componentType": 5122, + "count": 48, + "type": "VEC2", + "name": "x1_flap_hydrolics_15_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7204132, + "componentType": 5123, + "count": 48, + "type": "VEC4", + "name": "x1_flap_hydrolics_15_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 949980, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "x1_flap_hydrolics_15_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7205832, + "componentType": 5126, + "count": 121, + "min": [ + -0.03527208790183067, -0.03814154118299484, -0.035305265337228775 + ], + "max": [ + 0.26190999150276184, 0.004248090088367462, 0.03526422381401062 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_12_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7205844, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7205848, + "componentType": 5120, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7205852, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_12_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7205856, + "componentType": 5122, + "count": 121, + "type": "VEC2", + "name": "x1_flap_hydrolics_12_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7205860, + "componentType": 5123, + "count": 121, + "type": "VEC4", + "name": "x1_flap_hydrolics_12_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 950220, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_12_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7210188, + "componentType": 5126, + "count": 119, + "min": [ + -0.03529229760169983, -0.03815193101763725, -0.03532455861568451 + ], + "max": [ + 0.22800898551940918, 0.004242766182869673, 0.03527471795678139 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_14_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7210200, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7210204, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7210208, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_14_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7210212, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_14_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7210216, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_14_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 950844, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_14_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7214472, + "componentType": 5126, + "count": 119, + "min": [ + -0.035266537219285965, -0.038080133497714996, -0.03530107066035271 + ], + "max": [ + 0.1962236762046814, 0.004309765063226223, 0.035246726125478745 + ], + "type": "VEC3", + "name": "x1_flap_hydrolics_16_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7214484, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7214488, + "componentType": 5120, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7214492, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_16_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7214496, + "componentType": 5122, + "count": 119, + "type": "VEC2", + "name": "x1_flap_hydrolics_16_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7214500, + "componentType": 5123, + "count": 119, + "type": "VEC4", + "name": "x1_flap_hydrolics_16_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 951468, + "componentType": 5123, + "count": 312, + "type": "SCALAR", + "name": "x1_flap_hydrolics_16_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7218756, + "componentType": 5126, + "count": 120, + "min": [ + -0.028615951538085938, -0.05844759941101074, -0.03970527648925781 + ], + "max": [ + 0.028608322143554688, 0.05844283103942871, -0.008176803588867188 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7218768, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7218772, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7218776, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7218780, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7218784, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 952092, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7223076, + "componentType": 5126, + "count": 784, + "min": [ + -0.068023681640625, -0.024389028549194336, -0.04748344421386719 + ], + "max": [ + 0.06799697875976562, 0.024384260177612305, 0.0599365234375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7223088, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7223092, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7223096, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7223100, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7223104, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 953004, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7251300, + "componentType": 5126, + "count": 588, + "min": [ + -0.058094024658203125, -0.018535852432250977, -0.022484779357910156 + ], + "max": [ + 0.040302276611328125, 0.018535375595092773, 0.05113983154296875 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7251312, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7251316, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7251320, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7251324, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7251328, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 958764, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationGreen_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7272468, + "componentType": 5126, + "count": 138, + "min": [ + -1.1136491298675537, -0.007669475860893726, 1.1920937481590954e-7 + ], + "max": [ + 1.1099605560302734, 0.15033118426799774, 0.7317561507225037 + ], + "type": "VEC3", + "name": "x1_Spoiler_2_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7272480, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7272484, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7272488, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x1_Spoiler_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7272492, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x1_Spoiler_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7272496, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x1_Spoiler_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 963084, + "componentType": 5123, + "count": 462, + "type": "SCALAR", + "name": "x1_Spoiler_2_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7277436, + "componentType": 5126, + "count": 1427, + "min": [ + -0.6099664568901062, -2.6216588020324707, -0.8714885115623474 + ], + "max": [ + -0.1581989824771881, -0.41588786244392395, 1.7047109603881836 + ], + "type": "VEC3", + "name": "x1_Door04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7277448, + "componentType": 5120, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7277452, + "componentType": 5120, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7277456, + "componentType": 5122, + "count": 1427, + "type": "VEC2", + "name": "x1_Door04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7277460, + "componentType": 5122, + "count": 1427, + "type": "VEC2", + "name": "x1_Door04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7277464, + "componentType": 5123, + "count": 1427, + "type": "VEC4", + "name": "x1_Door04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 964008, + "componentType": 5123, + "count": 2820, + "type": "SCALAR", + "name": "x1_Door04_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 7328808, + "componentType": 5126, + "count": 682, + "min": [ + -0.5587952136993408, -0.26211100816726685, -0.2851230800151825 + ], + "max": [ + 0.09448178112506866, 0.26032397150993347, 0.14123627543449402 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_07_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7328820, + "componentType": 5120, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7328824, + "componentType": 5120, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7328828, + "componentType": 5122, + "count": 682, + "type": "VEC2", + "name": "x1_Landing_Gear_07_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7328832, + "componentType": 5122, + "count": 682, + "type": "VEC2", + "name": "x1_Landing_Gear_07_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7328836, + "componentType": 5123, + "count": 682, + "type": "VEC4", + "name": "x1_Landing_Gear_07_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 969648, + "componentType": 5123, + "count": 1932, + "type": "SCALAR", + "name": "x1_Landing_Gear_07_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7353360, + "componentType": 5126, + "count": 665, + "min": [ + -0.0600312165915966, -0.32979944348335266, -0.31917646527290344 + ], + "max": [ + 0.5935291647911072, 0.19263823330402374, 0.059396758675575256 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_08_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7353372, + "componentType": 5120, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7353376, + "componentType": 5120, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7353380, + "componentType": 5122, + "count": 665, + "type": "VEC2", + "name": "x1_Landing_Gear_08_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7353384, + "componentType": 5122, + "count": 665, + "type": "VEC2", + "name": "x1_Landing_Gear_08_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7353388, + "componentType": 5123, + "count": 665, + "type": "VEC4", + "name": "x1_Landing_Gear_08_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 973512, + "componentType": 5123, + "count": 1884, + "type": "SCALAR", + "name": "x1_Landing_Gear_08_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7377300, + "componentType": 5126, + "count": 1039, + "min": [ + -0.618408739566803, -0.12273037433624268, -0.13391102850437164 + ], + "max": [ + 0.04217103123664856, 0.03283371776342392, 0.28237074613571167 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_37_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7377312, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7377316, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7377320, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x1_Landing_Gear_37_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7377324, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x1_Landing_Gear_37_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7377328, + "componentType": 5123, + "count": 1039, + "type": "VEC4", + "name": "x1_Landing_Gear_37_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 977280, + "componentType": 5123, + "count": 2586, + "type": "SCALAR", + "name": "x1_Landing_Gear_37_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7414704, + "componentType": 5126, + "count": 378, + "min": [ + -0.7682482004165649, -0.2279307097196579, -0.10178372263908386 + ], + "max": [ + 0.05306300148367882, 0.22926104068756104, 0.05234583094716072 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_35_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7414716, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7414720, + "componentType": 5120, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7414724, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_35_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7414728, + "componentType": 5122, + "count": 378, + "type": "VEC2", + "name": "x1_Landing_Gear_35_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7414732, + "componentType": 5123, + "count": 378, + "type": "VEC4", + "name": "x1_Landing_Gear_35_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 982452, + "componentType": 5123, + "count": 972, + "type": "SCALAR", + "name": "x1_Landing_Gear_35_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7428312, + "componentType": 5126, + "count": 362, + "min": [ + -0.05200672149658203, -0.22164151072502136, -0.10002053529024124 + ], + "max": [ + 0.7106421589851379, 0.23557741940021515, 0.05251932889223099 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_36_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7428324, + "componentType": 5120, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7428328, + "componentType": 5120, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7428332, + "componentType": 5122, + "count": 362, + "type": "VEC2", + "name": "x1_Landing_Gear_36_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7428336, + "componentType": 5122, + "count": 362, + "type": "VEC2", + "name": "x1_Landing_Gear_36_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7428340, + "componentType": 5123, + "count": 362, + "type": "VEC4", + "name": "x1_Landing_Gear_36_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 984396, + "componentType": 5123, + "count": 924, + "type": "SCALAR", + "name": "x1_Landing_Gear_36_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7441344, + "componentType": 5126, + "count": 10942, + "min": [ + -1.0001282691955566, -0.6619880199432373, -0.6619862914085388 + ], + "max": [ + 1.0001287460327148, 0.6619881987571716, 0.6619864106178284 + ], + "type": "VEC3", + "name": "x1_RWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7441356, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7441360, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7441364, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_RWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7441368, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_RWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7441372, + "componentType": 5123, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 986244, + "componentType": 5123, + "count": 22920, + "type": "SCALAR", + "name": "x1_RWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7835256, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9917252063751221, -0.6631564497947693, -0.6619774103164673 + ], + "max": [ + 0.99172043800354, 0.6608477830886841, 0.6620115637779236 + ], + "type": "VEC3", + "name": "x1_RWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7835268, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7835272, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7835276, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_RWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7835280, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_RWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7835284, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1032084, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x1_RWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8000568, + "componentType": 5126, + "count": 10942, + "min": [ + -1.0001237392425537, -0.6633257269859314, -0.661994218826294 + ], + "max": [ + 1.0001275539398193, 0.6607019901275635, 0.6619598269462585 + ], + "type": "VEC3", + "name": "x1_RWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8000580, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8000584, + "componentType": 5120, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8000588, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_RWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8000592, + "componentType": 5122, + "count": 10942, + "type": "VEC2", + "name": "x1_RWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8000596, + "componentType": 5123, + "count": 10942, + "type": "VEC4", + "name": "x1_RWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1050036, + "componentType": 5123, + "count": 22920, + "type": "SCALAR", + "name": "x1_RWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8394480, + "componentType": 5126, + "count": 4592, + "min": [ + -0.9918404221534729, -0.6607991456985474, -0.6619898080825806 + ], + "max": [ + 0.9918227791786194, 0.6630999445915222, 0.6619605422019958 + ], + "type": "VEC3", + "name": "x1_RWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8394492, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8394496, + "componentType": 5120, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8394500, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_RWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8394504, + "componentType": 5122, + "count": 4592, + "type": "VEC2", + "name": "x1_RWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8394508, + "componentType": 5123, + "count": 4592, + "type": "VEC4", + "name": "x1_RWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1095876, + "componentType": 5123, + "count": 8976, + "type": "SCALAR", + "name": "x1_RWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8559792, + "componentType": 5126, + "count": 25322, + "min": [ + -0.4227162003517151, -0.4014112651348114, -1.0605236291885376 + ], + "max": [ + 0.4227219820022583, 0.34398597478866577, 1.1232160329818726 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_09_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8559804, + "componentType": 5120, + "count": 25322, + "type": "VEC4", + "name": "x1_Landing_Gear_09_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8559808, + "componentType": 5120, + "count": 25322, + "type": "VEC4", + "name": "x1_Landing_Gear_09_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8559812, + "componentType": 5122, + "count": 25322, + "type": "VEC2", + "name": "x1_Landing_Gear_09_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8559816, + "componentType": 5122, + "count": 25322, + "type": "VEC2", + "name": "x1_Landing_Gear_09_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8559820, + "componentType": 5123, + "count": 25322, + "type": "VEC4", + "name": "x1_Landing_Gear_09_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1113828, + "componentType": 5123, + "count": 65811, + "type": "SCALAR", + "name": "x1_Landing_Gear_09_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9471384, + "componentType": 5126, + "count": 1531, + "min": [ + -0.3379530608654022, -0.9588298201560974, -0.3232441842556 + ], + "max": [ + 0.3379528820514679, 0.9588296413421631, 0.3232441544532776 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_10_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9471396, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9471400, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9471404, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x1_Landing_Gear_10_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9471408, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x1_Landing_Gear_10_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9471412, + "componentType": 5123, + "count": 1531, + "type": "VEC4", + "name": "x1_Landing_Gear_10_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1245450, + "componentType": 5123, + "count": 4482, + "type": "SCALAR", + "name": "x1_Landing_Gear_10_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9526500, + "componentType": 5126, + "count": 240, + "min": [ + -0.32188233733177185, -0.02601546049118042, -0.19058343768119812 + ], + "max": [ + 0.01845693215727806, 0.028900766745209694, 0.018483145162463188 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part19_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9526512, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9526516, + "componentType": 5120, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9526520, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x1_Landing_Gear_Part19_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9526524, + "componentType": 5122, + "count": 240, + "type": "VEC2", + "name": "x1_Landing_Gear_Part19_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9526528, + "componentType": 5123, + "count": 240, + "type": "VEC4", + "name": "x1_Landing_Gear_Part19_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1254414, + "componentType": 5123, + "count": 744, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part19_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9535140, + "componentType": 5126, + "count": 96, + "min": [ + -0.03310653939843178, -0.18166163563728333, -0.6278928518295288 + ], + "max": [ + 0.03236322104930878, -0.010992643423378468, -0.10500073432922363 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part18_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9535152, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9535156, + "componentType": 5120, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9535160, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x1_Landing_Gear_Part18_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9535164, + "componentType": 5122, + "count": 96, + "type": "VEC2", + "name": "x1_Landing_Gear_Part18_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9535168, + "componentType": 5123, + "count": 96, + "type": "VEC4", + "name": "x1_Landing_Gear_Part18_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1255902, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part18_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9538596, + "componentType": 5126, + "count": 416, + "min": [ + -0.12803524732589722, -0.03034909814596176, -0.05151544511318207 + ], + "max": [ + 0.12917320430278778, 0.5469793081283569, 0.09009987115859985 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_21_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9538608, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9538612, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9538616, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x1_Landing_Gear_21_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9538620, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x1_Landing_Gear_21_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9538624, + "componentType": 5123, + "count": 416, + "type": "VEC4", + "name": "x1_Landing_Gear_21_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1256478, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x1_Landing_Gear_21_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9553572, + "componentType": 5126, + "count": 207, + "min": [ + -0.03977961838245392, -0.09793349355459213, -0.06343860179185867 + ], + "max": [ + 0.046797242015600204, 0.00000965595700108679, 0.07077983766794205 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_Part17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9553584, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9553588, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9553592, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x1_Landing_Gear_Part17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9553596, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x1_Landing_Gear_Part17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9553600, + "componentType": 5123, + "count": 207, + "type": "VEC4", + "name": "x1_Landing_Gear_Part17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1258542, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x1_Landing_Gear_Part17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9561024, + "componentType": 5126, + "count": 282, + "min": [ + -0.03629034012556076, -0.06144219636917114, -0.05307139456272125 + ], + "max": [ + 0.028109295293688774, 0.46665623784065247, 0.06051931902766228 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9561036, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9561040, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9561044, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x1_Landing_Gear_17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9561048, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x1_Landing_Gear_17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9561052, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x1_Landing_Gear_17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1259694, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x1_Landing_Gear_17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9571176, + "componentType": 5126, + "count": 730, + "min": [ + -0.07568860799074173, -0.0569012276828289, -0.31746312975883484 + ], + "max": [ + 0.724277913570404, 0.6438190340995789, 0.09001254290342331 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_31_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9571188, + "componentType": 5120, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9571192, + "componentType": 5120, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9571196, + "componentType": 5122, + "count": 730, + "type": "VEC2", + "name": "x1_Landing_Gear_31_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9571200, + "componentType": 5122, + "count": 730, + "type": "VEC2", + "name": "x1_Landing_Gear_31_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9571204, + "componentType": 5123, + "count": 730, + "type": "VEC4", + "name": "x1_Landing_Gear_31_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1261350, + "componentType": 5123, + "count": 2124, + "type": "SCALAR", + "name": "x1_Landing_Gear_31_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9597456, + "componentType": 5126, + "count": 405, + "min": [ + -0.06946468353271484, -0.20492950081825256, -0.07221704721450806 + ], + "max": [ + 0.19304975867271423, 0.00007702778384555131, 0.15680621564388275 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_33_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9597468, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9597472, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9597476, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x1_Landing_Gear_33_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9597480, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x1_Landing_Gear_33_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9597484, + "componentType": 5123, + "count": 405, + "type": "VEC4", + "name": "x1_Landing_Gear_33_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1265598, + "componentType": 5123, + "count": 1170, + "type": "SCALAR", + "name": "x1_Landing_Gear_33_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9612036, + "componentType": 5126, + "count": 150, + "min": [ + -0.08383673429489136, -0.04136490821838379, -0.08959510177373886 + ], + "max": [ + 0.07557877898216248, 0.48793941736221313, 0.060835469514131546 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_28_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9612048, + "componentType": 5120, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9612052, + "componentType": 5120, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9612056, + "componentType": 5122, + "count": 150, + "type": "VEC2", + "name": "x1_Landing_Gear_28_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9612060, + "componentType": 5122, + "count": 150, + "type": "VEC2", + "name": "x1_Landing_Gear_28_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9612064, + "componentType": 5123, + "count": 150, + "type": "VEC4", + "name": "x1_Landing_Gear_28_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1267938, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x1_Landing_Gear_28_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9617436, + "componentType": 5126, + "count": 462, + "min": [ + -0.2496035397052765, -0.4703923165798187, -0.12019163370132446 + ], + "max": [ + 0.24665814638137817, 0.4703933894634247, 0.12019113451242447 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_27_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9617448, + "componentType": 5120, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9617452, + "componentType": 5120, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9617456, + "componentType": 5122, + "count": 462, + "type": "VEC2", + "name": "x1_Landing_Gear_27_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9617460, + "componentType": 5122, + "count": 462, + "type": "VEC2", + "name": "x1_Landing_Gear_27_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9617464, + "componentType": 5123, + "count": 462, + "type": "VEC4", + "name": "x1_Landing_Gear_27_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1268802, + "componentType": 5123, + "count": 1332, + "type": "SCALAR", + "name": "x1_Landing_Gear_27_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9634068, + "componentType": 5126, + "count": 422, + "min": [ + -0.1287650763988495, -0.399333655834198, -0.11204511672258377 + ], + "max": [ + 0.10368701815605164, 0.11533211171627045, 0.3652138113975525 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_29_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9634080, + "componentType": 5120, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9634084, + "componentType": 5120, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9634088, + "componentType": 5122, + "count": 422, + "type": "VEC2", + "name": "x1_Landing_Gear_29_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9634092, + "componentType": 5122, + "count": 422, + "type": "VEC2", + "name": "x1_Landing_Gear_29_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9634096, + "componentType": 5123, + "count": 422, + "type": "VEC4", + "name": "x1_Landing_Gear_29_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1271466, + "componentType": 5123, + "count": 1086, + "type": "SCALAR", + "name": "x1_Landing_Gear_29_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9649260, + "componentType": 5126, + "count": 868, + "min": [ + -0.05797324329614639, -0.07315818965435028, -0.23623664677143097 + ], + "max": [ + 1.377195119857788, 0.11781731992959976, 0.15449698269367218 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_30_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9649272, + "componentType": 5120, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9649276, + "componentType": 5120, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9649280, + "componentType": 5122, + "count": 868, + "type": "VEC2", + "name": "x1_Landing_Gear_30_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9649284, + "componentType": 5122, + "count": 868, + "type": "VEC2", + "name": "x1_Landing_Gear_30_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9649288, + "componentType": 5123, + "count": 868, + "type": "VEC4", + "name": "x1_Landing_Gear_30_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1273638, + "componentType": 5123, + "count": 2454, + "type": "SCALAR", + "name": "x1_Landing_Gear_30_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9680508, + "componentType": 5126, + "count": 533, + "min": [ + -0.1239844337105751, -0.0673893392086029, -0.13272376358509064 + ], + "max": [ + 0.1264975219964981, 1.0021164417266846, 0.11373545229434967 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_32_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9680520, + "componentType": 5120, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9680524, + "componentType": 5120, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9680528, + "componentType": 5122, + "count": 533, + "type": "VEC2", + "name": "x1_Landing_Gear_32_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9680532, + "componentType": 5122, + "count": 533, + "type": "VEC2", + "name": "x1_Landing_Gear_32_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9680536, + "componentType": 5123, + "count": 533, + "type": "VEC4", + "name": "x1_Landing_Gear_32_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1278546, + "componentType": 5123, + "count": 1524, + "type": "SCALAR", + "name": "x1_Landing_Gear_32_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9699696, + "componentType": 5126, + "count": 402, + "min": [ + -0.07473474740982056, -0.1877775490283966, -0.1804620921611786 + ], + "max": [ + 0.1943923979997635, 0.01769767515361309, 0.07370781898498535 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_34_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9699708, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9699712, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9699716, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x1_Landing_Gear_34_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9699720, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x1_Landing_Gear_34_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9699724, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x1_Landing_Gear_34_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1281594, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x1_Landing_Gear_34_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9714168, + "componentType": 5126, + "count": 5066, + "min": [ + -1.4797115325927734, -2.7486085891723633, -0.3519498109817505 + ], + "max": [ + 0.008954104036092758, 0.24926096200942993, 0.3822948634624481 + ], + "type": "VEC3", + "name": "x1_Landing_gear_Root_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9714180, + "componentType": 5120, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9714184, + "componentType": 5120, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9714188, + "componentType": 5122, + "count": 5066, + "type": "VEC2", + "name": "x1_Landing_gear_Root_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9714192, + "componentType": 5122, + "count": 5066, + "type": "VEC2", + "name": "x1_Landing_gear_Root_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9714196, + "componentType": 5123, + "count": 5066, + "type": "VEC4", + "name": "x1_Landing_gear_Root_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1283922, + "componentType": 5123, + "count": 13473, + "type": "SCALAR", + "name": "x1_Landing_gear_Root_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 9896544, + "componentType": 5126, + "count": 213, + "min": [ + -0.03963780403137207, -0.03963644430041313, -0.004242897033691406 + ], + "max": [ + 0.29485875368118286, 1.135007619857788, 0.044423580169677734 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9896556, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x1_Landing_Gear_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9896560, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x1_Landing_Gear_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9896564, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x1_Landing_Gear_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9896568, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x1_Landing_Gear_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9896572, + "componentType": 5123, + "count": 213, + "type": "VEC4", + "name": "x1_Landing_Gear_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1310868, + "componentType": 5123, + "count": 816, + "type": "SCALAR", + "name": "x1_Landing_Gear_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9904212, + "componentType": 5126, + "count": 1028, + "min": [ + -0.8295279741287231, -2.107851028442383, -1.8943569660186768 + ], + "max": [ + 0.26637911796569824, 0.27061325311660767, 1.629465103149414 + ], + "type": "VEC3", + "name": "x1_Door01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9904224, + "componentType": 5120, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9904228, + "componentType": 5120, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9904232, + "componentType": 5122, + "count": 1028, + "type": "VEC2", + "name": "x1_Door01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9904236, + "componentType": 5122, + "count": 1028, + "type": "VEC2", + "name": "x1_Door01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9904240, + "componentType": 5123, + "count": 1028, + "type": "VEC4", + "name": "x1_Door01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1312500, + "componentType": 5123, + "count": 2232, + "type": "SCALAR", + "name": "x1_Door01_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 9941220, + "componentType": 5126, + "count": 359, + "min": [ + -2.7366511821746826, -2.528285503387451, -37.019405364990234 + ], + "max": [ + 2.736649990081787, 3.864502429962158, 16.32292938232422 + ], + "type": "VEC3", + "name": "x1_Glass_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9941232, + "componentType": 5120, + "count": 359, + "type": "VEC4", + "name": "x1_Glass_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9941236, + "componentType": 5120, + "count": 359, + "type": "VEC4", + "name": "x1_Glass_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9941240, + "componentType": 5122, + "count": 359, + "type": "VEC2", + "name": "x1_Glass_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9941244, + "componentType": 5122, + "count": 359, + "type": "VEC2", + "name": "x1_Glass_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9941248, + "componentType": 5123, + "count": 359, + "type": "VEC4", + "name": "x1_Glass_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1316964, + "componentType": 5123, + "count": 1350, + "type": "SCALAR", + "name": "x1_Glass_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9954144, + "componentType": 5126, + "count": 1974, + "min": [ + -0.7900745868682861, -0.29769182205200195, -0.32764339447021484 + ], + "max": [ + 0.7900731563568115, 1.7062543630599976, 3.064472198486328 + ], + "type": "VEC3", + "name": "x1_Undercarriage_Front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9954156, + "componentType": 5120, + "count": 1974, + "type": "VEC4", + "name": "x1_Undercarriage_Front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9954160, + "componentType": 5120, + "count": 1974, + "type": "VEC4", + "name": "x1_Undercarriage_Front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9954164, + "componentType": 5122, + "count": 1974, + "type": "VEC2", + "name": "x1_Undercarriage_Front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9954168, + "componentType": 5122, + "count": 1974, + "type": "VEC2", + "name": "x1_Undercarriage_Front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9954172, + "componentType": 5123, + "count": 1974, + "type": "VEC4", + "name": "x1_Undercarriage_Front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1319664, + "componentType": 5123, + "count": 3258, + "type": "SCALAR", + "name": "x1_Undercarriage_Front_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 10025208, + "componentType": 5126, + "count": 850, + "min": [ + -2.429973840713501, -0.9371840953826904, -37.019248962402344 + ], + "max": [ + 2.389094829559326, 3.7907755374908447, 16.293468475341797 + ], + "type": "VEC3", + "name": "x1_lightpods_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 10025220, + "componentType": 5120, + "count": 850, + "type": "VEC4", + "name": "x1_lightpods_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 10025224, + "componentType": 5120, + "count": 850, + "type": "VEC4", + "name": "x1_lightpods_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 10025228, + "componentType": 5122, + "count": 850, + "type": "VEC2", + "name": "x1_lightpods_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 10025232, + "componentType": 5122, + "count": 850, + "type": "VEC2", + "name": "x1_lightpods_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 10025236, + "componentType": 5123, + "count": 850, + "type": "VEC4", + "name": "x1_lightpods_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1326180, + "componentType": 5123, + "count": 2874, + "type": "SCALAR", + "name": "x1_lightpods_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 10055808, + "componentType": 5126, + "count": 141838, + "min": [ + -3.255725860595703, -2.764528751373291, -39.45466995239258 + ], + "max": [ + 3.255725860595703, 12.46463394165039, 28.476634979248047 + ], + "type": "VEC3", + "name": "x1_Body_front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 10055820, + "componentType": 5120, + "count": 141838, + "type": "VEC4", + "name": "x1_Body_front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 10055824, + "componentType": 5120, + "count": 141838, + "type": "VEC4", + "name": "x1_Body_front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 10055828, + "componentType": 5122, + "count": 141838, + "type": "VEC2", + "name": "x1_Body_front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 10055832, + "componentType": 5122, + "count": 141838, + "type": "VEC2", + "name": "x1_Body_front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 10055836, + "componentType": 5123, + "count": 141838, + "type": "VEC4", + "name": "x1_Body_front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1331928, + "componentType": 5123, + "count": 278994, + "type": "SCALAR", + "name": "x1_Body_front_center_indices#9" + }, { + "bufferView": 4, + "byteOffset": 15161976, + "componentType": 5126, + "count": 2664, + "min": [ + -2.821240186691284, 1.1378698348999023, -26.904094696044922 + ], + "max": [ + 2.821239709854126, 1.78813636302948, 22.001354217529297 + ], + "type": "VEC3", + "name": "x1_windowGlass_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15161988, + "componentType": 5120, + "count": 2664, + "type": "VEC4", + "name": "x1_windowGlass_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15161992, + "componentType": 5120, + "count": 2664, + "type": "VEC4", + "name": "x1_windowGlass_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15161996, + "componentType": 5122, + "count": 2664, + "type": "VEC2", + "name": "x1_windowGlass_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15162000, + "componentType": 5122, + "count": 2664, + "type": "VEC2", + "name": "x1_windowGlass_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15162004, + "componentType": 5123, + "count": 2664, + "type": "VEC4", + "name": "x1_windowGlass_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1889916, + "componentType": 5123, + "count": 7956, + "type": "SCALAR", + "name": "x1_windowGlass_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15257880, + "componentType": 5126, + "count": 4, + "min": [ + -0.06730365753173828, -0.25341153144836426, -0.12473678588867188 + ], + "max": [ + 0.06730318069458008, 0.25341153144836426, 0.12474441528320312 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15257892, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15257896, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15257900, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15257904, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15257908, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1905828, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_2_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15258024, + "componentType": 5126, + "count": 1490, + "min": [ + -0.2521226406097412, -1.0020675659179688, -0.5850601196289062 + ], + "max": [ + 0.2920658588409424, 0.995248556137085, 0.5904827117919922 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15258036, + "componentType": 5120, + "count": 1490, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15258040, + "componentType": 5120, + "count": 1490, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15258044, + "componentType": 5122, + "count": 1490, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15258048, + "componentType": 5122, + "count": 1490, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15258052, + "componentType": 5123, + "count": 1490, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1905840, + "componentType": 5123, + "count": 3012, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_2_OUTSIDE_indices#6" + }, { + "bufferView": 4, + "byteOffset": 15311664, + "componentType": 5126, + "count": 8572, + "min": [ + 0.9667442440986633, -591.4232177734375, -319.8960876464844 + ], + "max": [ + 264.76776123046875, 570.537109375, 383.5609130859375 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15311676, + "componentType": 5120, + "count": 8572, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15311680, + "componentType": 5120, + "count": 8572, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15311684, + "componentType": 5122, + "count": 8572, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15311688, + "componentType": 5122, + "count": 8572, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15311692, + "componentType": 5123, + "count": 8572, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1911864, + "componentType": 5123, + "count": 19416, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_2_indices#2" + }, { + "bufferView": 4, + "byteOffset": 15620256, + "componentType": 5126, + "count": 515, + "min": [ + -0.2689533233642578, -0.9986554384231567, -0.5877685546875 + ], + "max": [ + 0.2689530849456787, 0.9986556172370911, 0.5877742767333984 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_DoorB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15620268, + "componentType": 5120, + "count": 515, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15620272, + "componentType": 5120, + "count": 515, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15620276, + "componentType": 5122, + "count": 515, + "type": "VEC2", + "name": "x1_Livery_KLM_DoorB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15620280, + "componentType": 5122, + "count": 515, + "type": "VEC2", + "name": "x1_Livery_KLM_DoorB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15620284, + "componentType": 5123, + "count": 515, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1950696, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x1_Livery_KLM_DoorB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15638796, + "componentType": 5126, + "count": 595, + "min": [ + -17.64849853515625, -108.09103393554688, -112.126708984375 + ], + "max": [ + 220.56134033203125, 108.08677673339844, 97.27890014648438 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15638808, + "componentType": 5120, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15638812, + "componentType": 5120, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15638816, + "componentType": 5122, + "count": 595, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15638820, + "componentType": 5122, + "count": 595, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15638824, + "componentType": 5123, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_2_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1953024, + "componentType": 5123, + "count": 1944, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_2_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 15660216, + "componentType": 5126, + "count": 8151, + "min": [ + -1.9094319343566895, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.222184658050537, 2.7935128211975098, 4.094302654266357 + ], + "type": "VEC3", + "name": "x1_INTERIOR2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15660228, + "componentType": 5120, + "count": 8151, + "type": "VEC4", + "name": "x1_INTERIOR2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15660232, + "componentType": 5120, + "count": 8151, + "type": "VEC4", + "name": "x1_INTERIOR2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15660236, + "componentType": 5122, + "count": 8151, + "type": "VEC2", + "name": "x1_INTERIOR2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15660240, + "componentType": 5122, + "count": 8151, + "type": "VEC2", + "name": "x1_INTERIOR2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15660244, + "componentType": 5123, + "count": 8151, + "type": "VEC4", + "name": "x1_INTERIOR2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1956912, + "componentType": 5123, + "count": 21174, + "type": "SCALAR", + "name": "x1_INTERIOR2_indices#1" + }, { + "bufferView": 4, + "byteOffset": 15953652, + "componentType": 5126, + "count": 7158, + "min": [ + -1.2966896295547485, -0.14246384799480438, -1.0544530153274536 + ], + "max": [ + -0.020523952320218086, 0.9782504439353943, 1.0916439294815063 + ], + "type": "VEC3", + "name": "x1_CARGO_DOOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 15953664, + "componentType": 5120, + "count": 7158, + "type": "VEC4", + "name": "x1_CARGO_DOOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 15953668, + "componentType": 5120, + "count": 7158, + "type": "VEC4", + "name": "x1_CARGO_DOOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 15953672, + "componentType": 5122, + "count": 7158, + "type": "VEC2", + "name": "x1_CARGO_DOOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 15953676, + "componentType": 5122, + "count": 7158, + "type": "VEC2", + "name": "x1_CARGO_DOOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 15953680, + "componentType": 5123, + "count": 7158, + "type": "VEC4", + "name": "x1_CARGO_DOOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1999260, + "componentType": 5123, + "count": 21162, + "type": "SCALAR", + "name": "x1_CARGO_DOOR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 16211340, + "componentType": 5126, + "count": 1555, + "min": [ + -2.804260730743408, -1.6293405294418335, 16.014720916748047 + ], + "max": [ + -1.7330682277679443, 0.1519838571548462, 18.866497039794922 + ], + "type": "VEC3", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16211352, + "componentType": 5120, + "count": 1555, + "type": "VEC4", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16211356, + "componentType": 5120, + "count": 1555, + "type": "VEC4", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16211360, + "componentType": 5122, + "count": 1555, + "type": "VEC2", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16211364, + "componentType": 5122, + "count": 1555, + "type": "VEC2", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16211368, + "componentType": 5123, + "count": 1555, + "type": "VEC4", + "name": "x1_CARGO_DOOR_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2041584, + "componentType": 5123, + "count": 2775, + "type": "SCALAR", + "name": "x1_CARGO_DOOR_OUTSIDE_indices#2" + }, { + "bufferView": 4, + "byteOffset": 16267320, + "componentType": 5126, + "count": 40, + "min": [ + -0.41249793767929077, -0.008579938672482967, -0.5145538449287415 + ], + "max": [ + -0.09042167663574219, 0.008579599671065807, 0.009906592778861523 + ], + "type": "VEC3", + "name": "x1_CARGO_PISTON_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16267332, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x1_CARGO_PISTON_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16267336, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x1_CARGO_PISTON_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16267340, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x1_CARGO_PISTON_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16267344, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x1_CARGO_PISTON_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16267348, + "componentType": 5123, + "count": 40, + "type": "VEC4", + "name": "x1_CARGO_PISTON_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2047134, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x1_CARGO_PISTON_2_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16268760, + "componentType": 5126, + "count": 408, + "min": [ + -0.07518339157104492, -0.22278714179992676, -1.4065093994140625 + ], + "max": [ + 0.07518315315246582, 0.2227872610092163, 1.4065074920654297 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_Cargo_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16268772, + "componentType": 5120, + "count": 408, + "type": "VEC4", + "name": "x1_Livery_KLM_Cargo_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16268776, + "componentType": 5120, + "count": 408, + "type": "VEC4", + "name": "x1_Livery_KLM_Cargo_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16268780, + "componentType": 5122, + "count": 408, + "type": "VEC2", + "name": "x1_Livery_KLM_Cargo_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16268784, + "componentType": 5122, + "count": 408, + "type": "VEC2", + "name": "x1_Livery_KLM_Cargo_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16268788, + "componentType": 5123, + "count": 408, + "type": "VEC4", + "name": "x1_Livery_KLM_Cargo_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2047278, + "componentType": 5123, + "count": 966, + "type": "SCALAR", + "name": "x1_Livery_KLM_Cargo_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16283448, + "componentType": 5126, + "count": 324, + "min": [ + -0.4534035921096802, -0.04632091522216797, -0.6643233299255371 + ], + "max": [ + 0.04951593279838562, 0.04632089287042618, 0.1568007469177246 + ], + "type": "VEC3", + "name": "x1_CARGO_PISTON_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16283460, + "componentType": 5120, + "count": 324, + "type": "VEC4", + "name": "x1_CARGO_PISTON_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16283464, + "componentType": 5120, + "count": 324, + "type": "VEC4", + "name": "x1_CARGO_PISTON_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16283468, + "componentType": 5122, + "count": 324, + "type": "VEC2", + "name": "x1_CARGO_PISTON_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16283472, + "componentType": 5122, + "count": 324, + "type": "VEC2", + "name": "x1_CARGO_PISTON_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16283476, + "componentType": 5123, + "count": 324, + "type": "VEC4", + "name": "x1_CARGO_PISTON_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2049210, + "componentType": 5123, + "count": 756, + "type": "SCALAR", + "name": "x1_CARGO_PISTON_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16295112, + "componentType": 5126, + "count": 7388, + "min": [ + -0.20738744735717773, -0.9027069807052612, -0.4735003709793091 + ], + "max": [ + 0.516179084777832, 0.9267082214355469, 0.6223747730255127 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16295124, + "componentType": 5120, + "count": 7388, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16295128, + "componentType": 5120, + "count": 7388, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16295132, + "componentType": 5122, + "count": 7388, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16295136, + "componentType": 5122, + "count": 7388, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16295140, + "componentType": 5123, + "count": 7388, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2050722, + "componentType": 5123, + "count": 16731, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_1_indices#2" + }, { + "bufferView": 4, + "byteOffset": 16561080, + "componentType": 5126, + "count": 4, + "min": [ + -0.08108523488044739, -0.25504860281944275, -0.11194915324449539 + ], + "max": [ + 0.08108523488044739, 0.25504860281944275, 0.11194915324449539 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16561092, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16561096, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16561100, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16561104, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16561108, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2084184, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_1_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16561224, + "componentType": 5126, + "count": 1319, + "min": [ + -0.42726200819015503, -0.9855458736419678, -0.6262664198875427 + ], + "max": [ + 0.39068740606307983, 0.9744555354118347, 0.6193637251853943 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16561236, + "componentType": 5120, + "count": 1319, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16561240, + "componentType": 5120, + "count": 1319, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16561244, + "componentType": 5122, + "count": 1319, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16561248, + "componentType": 5122, + "count": 1319, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16561252, + "componentType": 5123, + "count": 1319, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2084196, + "componentType": 5123, + "count": 2772, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_1_OUTSIDE_indices#5" + }, { + "bufferView": 4, + "byteOffset": 16608708, + "componentType": 5126, + "count": 264, + "min": [ + -0.38987886905670166, -0.9683327078819275, -0.6160190105438232 + ], + "max": [ + 0.3830230236053467, 0.9694715738296509, 0.6117029190063477 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16608720, + "componentType": 5120, + "count": 264, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16608724, + "componentType": 5120, + "count": 264, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16608728, + "componentType": 5122, + "count": 264, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16608732, + "componentType": 5122, + "count": 264, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16608736, + "componentType": 5123, + "count": 264, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_GASKET_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2089740, + "componentType": 5123, + "count": 864, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_1_GASKET_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16618212, + "componentType": 5126, + "count": 401, + "min": [ + -0.4061325490474701, -0.9798181056976318, -0.6228159070014954 + ], + "max": [ + 0.406132310628891, 0.9798181653022766, 0.6228139996528625 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_DoorA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16618224, + "componentType": 5120, + "count": 401, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16618228, + "componentType": 5120, + "count": 401, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16618232, + "componentType": 5122, + "count": 401, + "type": "VEC2", + "name": "x1_Livery_KLM_DoorA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16618236, + "componentType": 5122, + "count": 401, + "type": "VEC2", + "name": "x1_Livery_KLM_DoorA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16618240, + "componentType": 5123, + "count": 401, + "type": "VEC4", + "name": "x1_Livery_KLM_DoorA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2091468, + "componentType": 5123, + "count": 1026, + "type": "SCALAR", + "name": "x1_Livery_KLM_DoorA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16632648, + "componentType": 5126, + "count": 595, + "min": [ + -17.64849853515625, -108.09103393554688, -112.126708984375 + ], + "max": [ + 220.56134033203125, 108.08677673339844, 97.27890014648438 + ], + "type": "VEC3", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16632660, + "componentType": 5120, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16632664, + "componentType": 5120, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16632668, + "componentType": 5122, + "count": 595, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16632672, + "componentType": 5122, + "count": 595, + "type": "VEC2", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16632676, + "componentType": 5123, + "count": 595, + "type": "VEC4", + "name": "x1_PASSENGER_DOOR_1_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2093520, + "componentType": 5123, + "count": 1944, + "type": "SCALAR", + "name": "x1_PASSENGER_DOOR_1_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 16654068, + "componentType": 5126, + "count": 11657, + "min": [ + -2.0217103958129883, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.275524377822876, 2.7935128211975098, 4.094302177429199 + ], + "type": "VEC3", + "name": "x1_INTERIOR1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 16654080, + "componentType": 5120, + "count": 11657, + "type": "VEC4", + "name": "x1_INTERIOR1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16654084, + "componentType": 5120, + "count": 11657, + "type": "VEC4", + "name": "x1_INTERIOR1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 16654088, + "componentType": 5122, + "count": 11657, + "type": "VEC2", + "name": "x1_INTERIOR1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 16654092, + "componentType": 5122, + "count": 11657, + "type": "VEC2", + "name": "x1_INTERIOR1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 16654096, + "componentType": 5123, + "count": 11657, + "type": "VEC4", + "name": "x1_INTERIOR1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2097408, + "componentType": 5123, + "count": 34926, + "type": "SCALAR", + "name": "x1_INTERIOR1_indices#1" + }, { + "bufferView": 4, + "byteOffset": 17073720, + "componentType": 5126, + "count": 244, + "min": [ + -0.052213918417692184, -0.10866785049438477, -0.10006412118673325 + ], + "max": [ + 0.052213896065950394, -0.016576290130615234, 0.059315815567970276 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17073732, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17073736, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17073740, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17073744, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17073748, + "componentType": 5123, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2167260, + "componentType": 5123, + "count": 450, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Top_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17082504, + "componentType": 5126, + "count": 229, + "min": [ + -0.008507311344146729, -0.04374814033508301, -0.027210235595703125 + ], + "max": [ + 0.03227478265762329, 0.04374802112579346, 0.004940032958984375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17082516, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17082520, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17082524, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17082528, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17082532, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2168160, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17090748, + "componentType": 5126, + "count": 229, + "min": [ + -0.02412658929824829, -0.04374802112579346, -0.025226593017578125 + ], + "max": [ + 0.01665550470352173, 0.04374814033508301, 0.006923675537109375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17090760, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17090764, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17090768, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17090772, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17090776, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2169624, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17098992, + "componentType": 5126, + "count": 30, + "min": [ + -0.08172552287578583, 0.017889738082885742, -0.08321332931518555 + ], + "max": [ + 0.08172552287578583, 0.08187198638916016, 0.08321332931518555 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17099004, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17099008, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17099012, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17099016, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17099020, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2171088, + "componentType": 5123, + "count": 84, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Belly_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17100072, + "componentType": 5126, + "count": 680, + "min": [ + -0.07676506042480469, -0.11109365522861481, -0.025456905364990234 + ], + "max": [ + 0.06343841552734375, 0.11109364032745361, 0.07862234115600586 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17100084, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17100088, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17100092, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17100096, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17100100, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2171256, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17124552, + "componentType": 5126, + "count": 680, + "min": [ + -0.06620979309082031, -0.11109365522861481, -0.039273738861083984 + ], + "max": [ + 0.07399368286132812, 0.11109364777803421, 0.06480550765991211 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17124564, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17124568, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17124572, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17124576, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17124580, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2173704, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17149032, + "componentType": 5126, + "count": 536, + "min": [ + -5.37684440612793, -0.25504857301712036, -48.81943130493164 + ], + "max": [ + 0.23528826236724854, 0.4213467836380005, 0.11194980144500732 + ], + "type": "VEC3", + "name": "x1_Porthole_Blocker_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17149044, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x1_Porthole_Blocker_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17149048, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x1_Porthole_Blocker_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17149052, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x1_Porthole_Blocker_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17149056, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x1_Porthole_Blocker_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17149060, + "componentType": 5123, + "count": 536, + "type": "VEC4", + "name": "x1_Porthole_Blocker_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2176152, + "componentType": 5123, + "count": 804, + "type": "SCALAR", + "name": "x1_Porthole_Blocker_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17168328, + "componentType": 5126, + "count": 340, + "min": [ + -0.01639246940612793, -0.06915506720542908, -0.05549764633178711 + ], + "max": [ + 0.05934309959411621, 0.05938568711280823, 0.0732574462890625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17168340, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17168344, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17168348, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17168352, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17168356, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2177760, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17180568, + "componentType": 5126, + "count": 340, + "min": [ + -0.06169295310974121, -0.06915506720542908, -0.05634450912475586 + ], + "max": [ + 0.01404261589050293, 0.059385694563388824, 0.07241058349609375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17180580, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17180584, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17180588, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17180592, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17180596, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2178984, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17192808, + "componentType": 5126, + "count": 135, + "min": [ + -0.4384760856628418, -0.05299597978591919, -3.7419772148132324 + ], + "max": [ + 0.0001952648162841797, 0.052995964884757996, 0.0551910400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17192820, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17192824, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17192828, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17192832, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17192836, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2180208, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17197668, + "componentType": 5126, + "count": 135, + "min": [ + 0.0012729167938232422, -0.05299597978591919, -1.9658722877502441 + ], + "max": [ + 0.29711246490478516, 0.052995964884757996, 0.055190086364746094 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17197680, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17197684, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17197688, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17197692, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17197696, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2181258, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17202528, + "componentType": 5126, + "count": 12060, + "min": [ + -0.7071259617805481, -0.6450793743133545, -5.709773063659668 + ], + "max": [ + 3.2146384716033936, 0.8630454540252686, 1.4669808149337769 + ], + "type": "VEC3", + "name": "x1_CARGO_INTERIOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17202540, + "componentType": 5120, + "count": 12060, + "type": "VEC4", + "name": "x1_CARGO_INTERIOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17202544, + "componentType": 5120, + "count": 12060, + "type": "VEC4", + "name": "x1_CARGO_INTERIOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17202548, + "componentType": 5122, + "count": 12060, + "type": "VEC2", + "name": "x1_CARGO_INTERIOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17202552, + "componentType": 5122, + "count": 12060, + "type": "VEC2", + "name": "x1_CARGO_INTERIOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17202556, + "componentType": 5123, + "count": 12060, + "type": "VEC4", + "name": "x1_CARGO_INTERIOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2182308, + "componentType": 5123, + "count": 33336, + "type": "SCALAR", + "name": "x1_CARGO_INTERIOR_indices#2" + }, { + "bufferView": 4, + "byteOffset": 17636688, + "componentType": 5126, + "count": 6665, + "min": [ + -3.222182273864746, -2.5606632232666016, -37.96046447753906 + ], + "max": [ + 3.222182273864746, 12.329360008239746, 28.496612548828125 + ], + "type": "VEC3", + "name": "FROST_FUSELAGE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17636700, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17636704, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17636708, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17636712, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17636716, + "componentType": 5123, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2248980, + "componentType": 5123, + "count": 16674, + "type": "SCALAR", + "name": "FROST_FUSELAGE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17876628, + "componentType": 5126, + "count": 189, + "min": [ + -0.885001540184021, -0.580319881439209, -0.16406798362731934 + ], + "max": [ + 0.05039787292480469, 2.2264318466186523, 3.9396538734436035 + ], + "type": "VEC3", + "name": "x1_GROUND_GPUPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17876640, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x1_GROUND_GPUPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17876644, + "componentType": 5120, + "count": 189, + "type": "VEC4", + "name": "x1_GROUND_GPUPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17876648, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x1_GROUND_GPUPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17876652, + "componentType": 5122, + "count": 189, + "type": "VEC2", + "name": "x1_GROUND_GPUPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17876656, + "componentType": 5123, + "count": 189, + "type": "VEC4", + "name": "x1_GROUND_GPUPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2282328, + "componentType": 5123, + "count": 894, + "type": "SCALAR", + "name": "x1_GROUND_GPUPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17883432, + "componentType": 5126, + "count": 392, + "min": [ + 10.269387245178223, -3.656996726989746, -1.9222218990325928 + ], + "max": [ + 16.68502426147461, 1.310456395149231, 0.028977783396840096 + ], + "type": "VEC3", + "name": "x1_GROUND_FuelPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17883444, + "componentType": 5120, + "count": 392, + "type": "VEC4", + "name": "x1_GROUND_FuelPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17883448, + "componentType": 5120, + "count": 392, + "type": "VEC4", + "name": "x1_GROUND_FuelPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17883452, + "componentType": 5122, + "count": 392, + "type": "VEC2", + "name": "x1_GROUND_FuelPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17883456, + "componentType": 5122, + "count": 392, + "type": "VEC2", + "name": "x1_GROUND_FuelPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17883460, + "componentType": 5123, + "count": 392, + "type": "VEC4", + "name": "x1_GROUND_FuelPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2284116, + "componentType": 5123, + "count": 1944, + "type": "SCALAR", + "name": "x1_GROUND_FuelPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17897544, + "componentType": 5126, + "count": 374, + "min": [ + -1.6387029886245728, 1.1238987445831299, 25.029531478881836 + ], + "max": [ + 1.6387029886245728, 1.8481528759002686, 27.02076530456543 + ], + "type": "VEC3", + "name": "x1_WINDSHIELD_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17897556, + "componentType": 5120, + "count": 374, + "type": "VEC4", + "name": "x1_WINDSHIELD_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17897560, + "componentType": 5120, + "count": 374, + "type": "VEC4", + "name": "x1_WINDSHIELD_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17897564, + "componentType": 5122, + "count": 374, + "type": "VEC2", + "name": "x1_WINDSHIELD_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17897568, + "componentType": 5122, + "count": 374, + "type": "VEC2", + "name": "x1_WINDSHIELD_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17897572, + "componentType": 5123, + "count": 374, + "type": "VEC4", + "name": "x1_WINDSHIELD_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2288004, + "componentType": 5123, + "count": 1602, + "type": "SCALAR", + "name": "x1_WINDSHIELD_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17911008, + "componentType": 5126, + "count": 40, + "min": [ + -2.660219192504883, -0.20403039455413818, -0.8133487701416016 + ], + "max": [ + 2.660219192504883, 0.20403027534484863, 0.8133468627929688 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_RegNumber_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17911020, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x1_Livery_KLM_RegNumber_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17911024, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x1_Livery_KLM_RegNumber_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17911028, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x1_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17911032, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x1_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17911036, + "componentType": 5123, + "count": 40, + "type": "VEC4", + "name": "x1_Livery_KLM_RegNumber_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2291208, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x1_Livery_KLM_RegNumber_indices#0" + }, { + "bufferView": 4, + "byteOffset": 17912448, + "componentType": 5126, + "count": 7485, + "min": [ + -2.8717899322509766, -3.3233346939086914, -30.958940505981445 + ], + "max": [ + 2.8717899322509766, 3.3233344554901123, 30.958940505981445 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_FuselageB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 17912460, + "componentType": 5120, + "count": 7485, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 17912464, + "componentType": 5120, + "count": 7485, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 17912468, + "componentType": 5122, + "count": 7485, + "type": "VEC2", + "name": "x1_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 17912472, + "componentType": 5122, + "count": 7485, + "type": "VEC2", + "name": "x1_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 17912476, + "componentType": 5123, + "count": 7485, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2291496, + "componentType": 5123, + "count": 22527, + "type": "SCALAR", + "name": "x1_Livery_KLM_FuselageB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 18181908, + "componentType": 5126, + "count": 20813, + "min": [ + -3.014444351196289, -4.271271705627441, -32.947532653808594 + ], + "max": [ + 3.014444351196289, 4.495274543762207, 32.94788360595703 + ], + "type": "VEC3", + "name": "x1_Livery_KLM_FuselageA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 18181920, + "componentType": 5120, + "count": 20813, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 18181924, + "componentType": 5120, + "count": 20813, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 18181928, + "componentType": 5122, + "count": 20813, + "type": "VEC2", + "name": "x1_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 18181932, + "componentType": 5122, + "count": 20813, + "type": "VEC2", + "name": "x1_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 18181936, + "componentType": 5123, + "count": 20813, + "type": "VEC4", + "name": "x1_Livery_KLM_FuselageA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2336550, + "componentType": 5123, + "count": 60609, + "type": "SCALAR", + "name": "x1_Livery_KLM_FuselageA_indices#0" + }, { + "bufferView": 6, + "componentType": 5126, + "count": 537, + "min": [ + 21.34499168395996, 1.8952447175979614, -14.584491729736328 + ], + "max": [ + 24.889211654663086, 2.498643636703491, -11.971083641052246 + ], + "type": "VEC3", + "name": "x1_Aileron_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 12, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 16, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 20, + "componentType": 5122, + "count": 537, + "type": "VEC2", + "name": "x1_Aileron_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 24, + "componentType": 5122, + "count": 537, + "type": "VEC2", + "name": "x1_Aileron_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 28, + "componentType": 5123, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 36, + "componentType": 5123, + "count": 537, + "normalized": true, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 44, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2457768, + "componentType": 5123, + "count": 2016, + "type": "SCALAR", + "name": "x1_Aileron_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 25776, + "componentType": 5126, + "count": 944, + "min": [ + 21.353591918945312, 1.9408481121063232, -14.515734672546387 + ], + "max": [ + 24.877500534057617, 2.4839134216308594, -12.368922233581543 + ], + "type": "VEC3", + "name": "x1_Aileron_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 25788, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 25792, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 25796, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x1_Aileron_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 25800, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x1_Aileron_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 25804, + "componentType": 5123, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 25812, + "componentType": 5123, + "count": 944, + "normalized": true, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 25820, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2461800, + "componentType": 5123, + "count": 1416, + "type": "SCALAR", + "name": "x1_Aileron_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 71088, + "componentType": 5126, + "count": 1435, + "min": [ + 11.763891220092773, 0.5516757965087891, -13.092537879943848 + ], + "max": [ + 21.10559844970703, 2.055211067199707, -7.418606758117676 + ], + "type": "VEC3", + "name": "x1_Flaps_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 71100, + "componentType": 5120, + "count": 1435, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 71104, + "componentType": 5120, + "count": 1435, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 71108, + "componentType": 5122, + "count": 1435, + "type": "VEC2", + "name": "x1_Flaps_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 71112, + "componentType": 5122, + "count": 1435, + "type": "VEC2", + "name": "x1_Flaps_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 71116, + "componentType": 5123, + "count": 1435, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 71124, + "componentType": 5123, + "count": 1435, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 71132, + "componentType": 5120, + "count": 1435, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2464632, + "componentType": 5123, + "count": 4434, + "type": "SCALAR", + "name": "x1_Flaps_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 139968, + "componentType": 5126, + "count": 3514, + "min": [ + 11.816703796386719, 0.6918918490409851, -12.87883472442627 + ], + "max": [ + 21.085670471191406, 2.0445303916931152, -8.305619239807129 + ], + "type": "VEC3", + "name": "x1_Flaps_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 139980, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 139984, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 139988, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x1_Flaps_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 139992, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x1_Flaps_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 139996, + "componentType": 5123, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 140004, + "componentType": 5123, + "count": 3514, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 140012, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2473500, + "componentType": 5123, + "count": 5598, + "type": "SCALAR", + "name": "x1_Flaps_2_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 308640, + "componentType": 5126, + "count": 1360, + "min": [ + 3.0438427925109863, -0.6586865782737732, -7.404511451721191 + ], + "max": [ + 10.4212064743042, 0.8745613098144531, -6.343608856201172 + ], + "type": "VEC3", + "name": "x1_Spoiler_1_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 308652, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 308656, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 308660, + "componentType": 5122, + "count": 1360, + "type": "VEC2", + "name": "x1_Spoiler_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 308664, + "componentType": 5122, + "count": 1360, + "type": "VEC2", + "name": "x1_Spoiler_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 308668, + "componentType": 5123, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 308676, + "componentType": 5123, + "count": 1360, + "normalized": true, + "type": "VEC4", + "name": "x1_Spoiler_1_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 308684, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2484696, + "componentType": 5123, + "count": 3678, + "type": "SCALAR", + "name": "x1_Spoiler_1_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 373920, + "componentType": 5126, + "count": 1821, + "min": [ + 10.129158020019531, 0.5402964353561401, -13.415162086486816 + ], + "max": [ + 26.86102294921875, 2.7919015884399414, -1.4953536987304688 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 373932, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 373936, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 373940, + "componentType": 5122, + "count": 1821, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 373944, + "componentType": 5122, + "count": 1821, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 373948, + "componentType": 5123, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 373956, + "componentType": 5123, + "count": 1821, + "normalized": true, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 373964, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2492052, + "componentType": 5123, + "count": 4884, + "type": "SCALAR", + "name": "x1_FlapsKrueger_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 461328, + "componentType": 5126, + "count": 1776, + "min": [ + 10.14348030090332, 0.5491341352462769, -13.38461685180664 + ], + "max": [ + 26.842620849609375, 2.791476249694824, -1.5032219886779785 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 461340, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 461344, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 461348, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 461352, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 461356, + "componentType": 5123, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 461364, + "componentType": 5123, + "count": 1776, + "normalized": true, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 461372, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2501820, + "componentType": 5123, + "count": 2676, + "type": "SCALAR", + "name": "x1_FlapsKrueger_2_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 546576, + "componentType": 5126, + "count": 1533, + "min": [ + 0.22731135785579681, -2.3647263050079346, -6.911769390106201 + ], + "max": [ + 5.826752662658691, 0.327769935131073, -3.3855369091033936 + ], + "type": "VEC3", + "name": "x1_Undercarriage_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 546588, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 546592, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 546596, + "componentType": 5122, + "count": 1533, + "type": "VEC2", + "name": "x1_Undercarriage_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 546600, + "componentType": 5122, + "count": 1533, + "type": "VEC2", + "name": "x1_Undercarriage_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 546604, + "componentType": 5123, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 546612, + "componentType": 5123, + "count": 1533, + "normalized": true, + "type": "VEC4", + "name": "x1_Undercarriage_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 546620, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2507172, + "componentType": 5123, + "count": 3105, + "type": "SCALAR", + "name": "x1_Undercarriage_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 620160, + "componentType": 5126, + "count": 1108, + "min": [ + 2.8739254474639893, -0.968108057975769, -11.986174583435059 + ], + "max": [ + 21.144245147705078, 2.0319366455078125, -6.073423385620117 + ], + "type": "VEC3", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 620172, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 620176, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 620180, + "componentType": 5122, + "count": 1108, + "type": "VEC2", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 620184, + "componentType": 5122, + "count": 1108, + "type": "VEC2", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 620188, + "componentType": 5123, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 620196, + "componentType": 5123, + "count": 1108, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 620204, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2513382, + "componentType": 5123, + "count": 2286, + "type": "SCALAR", + "name": "x1_Flaps_Details_Spoiler_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 673344, + "componentType": 5126, + "count": 1741, + "min": [ + 11.163599014282227, -0.1211424320936203, -1.6091537475585938 + ], + "max": [ + 20.70928192138672, 0.14637626707553864, -0.3714154362678528 + ], + "type": "VEC3", + "name": "x1_Spoiler_2_1_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 673356, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 673360, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 673364, + "componentType": 5122, + "count": 1741, + "type": "VEC2", + "name": "x1_Spoiler_2_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 673368, + "componentType": 5122, + "count": 1741, + "type": "VEC2", + "name": "x1_Spoiler_2_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 673372, + "componentType": 5123, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 673380, + "componentType": 5123, + "count": 1741, + "normalized": true, + "type": "VEC4", + "name": "x1_Spoiler_2_1_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 673388, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2517954, + "componentType": 5123, + "count": 4638, + "type": "SCALAR", + "name": "x1_Spoiler_2_1_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 756912, + "componentType": 5126, + "count": 9959, + "min": [ + 7.801511764526367, -3.548153877258301, -6.900043964385986 + ], + "max": [ + 11.810586929321289, 0.5890592336654663, 4.582457542419434 + ], + "type": "VEC3", + "name": "x1_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 756924, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 756928, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 756932, + "componentType": 5122, + "count": 9959, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 756936, + "componentType": 5122, + "count": 9959, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 756940, + "componentType": 5123, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 756948, + "componentType": 5123, + "count": 9959, + "normalized": true, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 756956, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2527230, + "componentType": 5123, + "count": 24588, + "type": "SCALAR", + "name": "x1_Engine_Body_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1234944, + "componentType": 5126, + "count": 7522, + "min": [ + 7.8152570724487305, -3.520380735397339, -6.82721471786499 + ], + "max": [ + 11.796899795532227, 0.5881145596504211, 4.5564351081848145 + ], + "type": "VEC3", + "name": "x1_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1234956, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1234960, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1234964, + "componentType": 5122, + "count": 7522, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1234968, + "componentType": 5122, + "count": 7522, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1234972, + "componentType": 5123, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1234980, + "componentType": 5123, + "count": 7522, + "normalized": true, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1234988, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2576406, + "componentType": 5123, + "count": 12738, + "type": "SCALAR", + "name": "x1_Engine_Body_left_indices#1" + }, { + "bufferView": 7, + "componentType": 5126, + "count": 166, + "min": [ + 7.805753707885742, -3.514796257019043, 1.382397174835205 + ], + "max": [ + 11.80735969543457, -0.8350066542625427, 4.257204055786133 + ], + "type": "VEC3", + "name": "x1_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 12, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 16, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 20, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 24, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x1_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 28, + "componentType": 5123, + "count": 166, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 36, + "componentType": 5126, + "count": 166, + "type": "SCALAR", + "name": "x1_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 40, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x1_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2601882, + "componentType": 5123, + "count": 426, + "type": "SCALAR", + "name": "x1_Engine_Body_left_indices#2" + }, { + "bufferView": 6, + "byteOffset": 1596000, + "componentType": 5126, + "count": 9959, + "min": [ + -11.810583114624023, -0.5890666842460632, -4.582459926605225 + ], + "max": [ + -7.801510334014893, 3.548145055770874, 6.90004825592041 + ], + "type": "VEC3", + "name": "x1_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1596012, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1596016, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1596020, + "componentType": 5122, + "count": 9959, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1596024, + "componentType": 5122, + "count": 9959, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1596028, + "componentType": 5123, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1596036, + "componentType": 5123, + "count": 9959, + "normalized": true, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1596044, + "componentType": 5120, + "count": 9959, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2602734, + "componentType": 5123, + "count": 24588, + "type": "SCALAR", + "name": "x1_Engine_Body_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2074032, + "componentType": 5126, + "count": 7522, + "min": [ + -11.796894073486328, -0.5881168246269226, -4.5564374923706055 + ], + "max": [ + -7.815253734588623, 3.5203795433044434, 6.827219009399414 + ], + "type": "VEC3", + "name": "x1_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2074044, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2074048, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2074052, + "componentType": 5122, + "count": 7522, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2074056, + "componentType": 5122, + "count": 7522, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2074060, + "componentType": 5123, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2074068, + "componentType": 5123, + "count": 7522, + "normalized": true, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2074076, + "componentType": 5120, + "count": 7522, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2651910, + "componentType": 5123, + "count": 12738, + "type": "SCALAR", + "name": "x1_Engine_Body_right_indices#1" + }, { + "bufferView": 7, + "byteOffset": 7304, + "componentType": 5126, + "count": 178, + "min": [ + -11.807355880737305, 0.8349981307983398, -4.257209300994873 + ], + "max": [ + -7.805752277374268, 3.514786720275879, -1.382402777671814 + ], + "type": "VEC3", + "name": "x1_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 7316, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 7320, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 7324, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 7328, + "componentType": 5122, + "count": 178, + "type": "VEC2", + "name": "x1_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 7332, + "componentType": 5123, + "count": 178, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 7340, + "componentType": 5126, + "count": 178, + "type": "SCALAR", + "name": "x1_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 7344, + "componentType": 5120, + "count": 178, + "type": "VEC4", + "name": "x1_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2677386, + "componentType": 5123, + "count": 426, + "type": "SCALAR", + "name": "x1_Engine_Body_right_indices#2" + }, { + "bufferView": 6, + "byteOffset": 2435088, + "componentType": 5126, + "count": 1741, + "min": [ + -20.709300994873047, -0.1463799774646759, 0.3714268207550049 + ], + "max": [ + -11.163605690002441, 0.12114061415195465, 1.6091623306274414 + ], + "type": "VEC3", + "name": "x1_Spoiler_2_1_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2435100, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2435104, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2435108, + "componentType": 5122, + "count": 1741, + "type": "VEC2", + "name": "x1_Spoiler_2_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2435112, + "componentType": 5122, + "count": 1741, + "type": "VEC2", + "name": "x1_Spoiler_2_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2435116, + "componentType": 5123, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2435124, + "componentType": 5123, + "count": 1741, + "normalized": true, + "type": "VEC4", + "name": "x1_Spoiler_2_1_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2435132, + "componentType": 5120, + "count": 1741, + "type": "VEC4", + "name": "x1_Spoiler_2_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2678238, + "componentType": 5123, + "count": 4638, + "type": "SCALAR", + "name": "x1_Spoiler_2_1_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2518656, + "componentType": 5126, + "count": 112, + "min": [ + 4.482253551483154, -2.2669787406921387, -5.9678754806518555 + ], + "max": [ + 4.807290077209473, -1.6249696016311646, -5.653048038482666 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_22_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2518668, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2518672, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2518676, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x1_Landing_Gear_22_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2518680, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x1_Landing_Gear_22_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2518684, + "componentType": 5123, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2518692, + "componentType": 5123, + "count": 112, + "normalized": true, + "type": "VEC4", + "name": "x1_Landing_Gear_22_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2518700, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2687514, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x1_Landing_Gear_22_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2524032, + "componentType": 5126, + "count": 578, + "min": [ + -0.6493927240371704, -2.5307767391204834, 23.085613250732422 + ], + "max": [ + -0.30954575538635254, -2.323030948638916, 23.220947265625 + ], + "type": "VEC3", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2524044, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2524048, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2524052, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2524056, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2524060, + "componentType": 5123, + "count": 578, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2524068, + "componentType": 5123, + "count": 578, + "normalized": true, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2524076, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_Right02_hydraulic01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2688090, + "componentType": 5123, + "count": 1236, + "type": "SCALAR", + "name": "x1_Door_Right02_hydraulic01_center_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2551776, + "componentType": 5126, + "count": 578, + "min": [ + 0.30767959356307983, -2.5649991035461426, 23.08695411682129 + ], + "max": [ + 0.6720260977745056, -2.324246883392334, 23.260276794433594 + ], + "type": "VEC3", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2551788, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2551792, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2551796, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2551800, + "componentType": 5122, + "count": 578, + "type": "VEC2", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2551804, + "componentType": 5123, + "count": 578, + "type": "VEC4", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2551812, + "componentType": 5123, + "count": 578, + "normalized": true, + "type": "VEC4", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2551820, + "componentType": 5120, + "count": 578, + "type": "VEC4", + "name": "x1_Door_left02_hydraulic01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2690562, + "componentType": 5123, + "count": 1236, + "type": "SCALAR", + "name": "x1_Door_left02_hydraulic01_center_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2579520, + "componentType": 5126, + "count": 537, + "min": [ + -24.889205932617188, 1.8952440023422241, -14.584487915039062 + ], + "max": [ + -21.344982147216797, 2.498643636703491, -11.97107982635498 + ], + "type": "VEC3", + "name": "x1_Aileron_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2579532, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2579536, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2579540, + "componentType": 5122, + "count": 537, + "type": "VEC2", + "name": "x1_Aileron_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2579544, + "componentType": 5122, + "count": 537, + "type": "VEC2", + "name": "x1_Aileron_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2579548, + "componentType": 5123, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2579556, + "componentType": 5123, + "count": 537, + "normalized": true, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2579564, + "componentType": 5120, + "count": 537, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2693034, + "componentType": 5123, + "count": 2016, + "type": "SCALAR", + "name": "x1_Aileron_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2605296, + "componentType": 5126, + "count": 944, + "min": [ + -24.87749671936035, 1.940847396850586, -14.515731811523438 + ], + "max": [ + -21.35358428955078, 2.4839134216308594, -12.368917465209961 + ], + "type": "VEC3", + "name": "x1_Aileron_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2605308, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2605312, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2605316, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x1_Aileron_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2605320, + "componentType": 5122, + "count": 944, + "type": "VEC2", + "name": "x1_Aileron_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2605324, + "componentType": 5123, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2605332, + "componentType": 5123, + "count": 944, + "normalized": true, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2605340, + "componentType": 5120, + "count": 944, + "type": "VEC4", + "name": "x1_Aileron_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2697066, + "componentType": 5123, + "count": 1416, + "type": "SCALAR", + "name": "x1_Aileron_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 2650608, + "componentType": 5126, + "count": 1821, + "min": [ + -26.86102294921875, -2.7919065952301025, 1.4953522682189941 + ], + "max": [ + -10.129150390625, -0.5402966737747192, 13.415164947509766 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2650620, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2650624, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2650628, + "componentType": 5122, + "count": 1821, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2650632, + "componentType": 5122, + "count": 1821, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2650636, + "componentType": 5123, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2650644, + "componentType": 5123, + "count": 1821, + "normalized": true, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2650652, + "componentType": 5120, + "count": 1821, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2699898, + "componentType": 5123, + "count": 4884, + "type": "SCALAR", + "name": "x1_FlapsKrueger_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2738016, + "componentType": 5126, + "count": 1776, + "min": [ + -26.84261703491211, -2.7914812564849854, 1.5032200813293457 + ], + "max": [ + -10.143471717834473, -0.5491344928741455, 13.384620666503906 + ], + "type": "VEC3", + "name": "x1_FlapsKrueger_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2738028, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2738032, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2738036, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2738040, + "componentType": 5122, + "count": 1776, + "type": "VEC2", + "name": "x1_FlapsKrueger_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2738044, + "componentType": 5123, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2738052, + "componentType": 5123, + "count": 1776, + "normalized": true, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2738060, + "componentType": 5120, + "count": 1776, + "type": "VEC4", + "name": "x1_FlapsKrueger_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2709666, + "componentType": 5123, + "count": 2676, + "type": "SCALAR", + "name": "x1_FlapsKrueger_2_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 2823264, + "componentType": 5126, + "count": 1454, + "min": [ + -21.10559844970703, 0.5516749620437622, -13.092535972595215 + ], + "max": [ + -11.763893127441406, 2.055211067199707, -7.418606281280518 + ], + "type": "VEC3", + "name": "x1_Flaps_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2823276, + "componentType": 5120, + "count": 1454, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2823280, + "componentType": 5120, + "count": 1454, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2823284, + "componentType": 5122, + "count": 1454, + "type": "VEC2", + "name": "x1_Flaps_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2823288, + "componentType": 5122, + "count": 1454, + "type": "VEC2", + "name": "x1_Flaps_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2823292, + "componentType": 5123, + "count": 1454, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2823300, + "componentType": 5123, + "count": 1454, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2823308, + "componentType": 5120, + "count": 1454, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2715018, + "componentType": 5123, + "count": 4524, + "type": "SCALAR", + "name": "x1_Flaps_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2893056, + "componentType": 5126, + "count": 3514, + "min": [ + -21.085670471191406, 0.691891074180603, -12.878832817077637 + ], + "max": [ + -11.816703796386719, 2.0445306301116943, -8.305618286132812 + ], + "type": "VEC3", + "name": "x1_Flaps_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2893068, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2893072, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2893076, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x1_Flaps_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2893080, + "componentType": 5122, + "count": 3514, + "type": "VEC2", + "name": "x1_Flaps_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2893084, + "componentType": 5123, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2893092, + "componentType": 5123, + "count": 3514, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2893100, + "componentType": 5120, + "count": 3514, + "type": "VEC4", + "name": "x1_Flaps_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2724066, + "componentType": 5123, + "count": 5598, + "type": "SCALAR", + "name": "x1_Flaps_2_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 3061728, + "componentType": 5126, + "count": 1108, + "min": [ + -21.14424705505371, -0.9681087136268616, -11.986176490783691 + ], + "max": [ + -2.8739264011383057, 2.031935930252075, -6.073424816131592 + ], + "type": "VEC3", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3061740, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3061744, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3061748, + "componentType": 5122, + "count": 1108, + "type": "VEC2", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3061752, + "componentType": 5122, + "count": 1108, + "type": "VEC2", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3061756, + "componentType": 5123, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3061764, + "componentType": 5123, + "count": 1108, + "normalized": true, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3061772, + "componentType": 5120, + "count": 1108, + "type": "VEC4", + "name": "x1_Flaps_Details_Spoiler_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2735262, + "componentType": 5123, + "count": 2286, + "type": "SCALAR", + "name": "x1_Flaps_Details_Spoiler_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3114912, + "componentType": 5126, + "count": 112, + "min": [ + -4.807289123535156, -2.2669789791107178, -5.967875003814697 + ], + "max": [ + -4.482252597808838, -1.6249701976776123, -5.653047561645508 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_22_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3114924, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3114928, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3114932, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x1_Landing_Gear_22_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3114936, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x1_Landing_Gear_22_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3114940, + "componentType": 5123, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3114948, + "componentType": 5123, + "count": 112, + "normalized": true, + "type": "VEC4", + "name": "x1_Landing_Gear_22_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3114956, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x1_Landing_Gear_22_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2739834, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x1_Landing_Gear_22_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3120288, + "componentType": 5126, + "count": 1360, + "min": [ + -10.421204566955566, -0.8745626211166382, 6.3436102867126465 + ], + "max": [ + -3.04384708404541, 0.6586841940879822, 7.40451192855835 + ], + "type": "VEC3", + "name": "x1_Spoiler_1_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3120300, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3120304, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3120308, + "componentType": 5122, + "count": 1360, + "type": "VEC2", + "name": "x1_Spoiler_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3120312, + "componentType": 5122, + "count": 1360, + "type": "VEC2", + "name": "x1_Spoiler_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3120316, + "componentType": 5123, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3120324, + "componentType": 5123, + "count": 1360, + "normalized": true, + "type": "VEC4", + "name": "x1_Spoiler_1_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3120332, + "componentType": 5120, + "count": 1360, + "type": "VEC4", + "name": "x1_Spoiler_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2740410, + "componentType": 5123, + "count": 3678, + "type": "SCALAR", + "name": "x1_Spoiler_1_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3185568, + "componentType": 5126, + "count": 1172, + "min": [ + 4.794785976409912, -3.467285633087158, -6.573057174682617 + ], + "max": [ + 5.318994998931885, -1.0668201446533203, -5.270313262939453 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_04_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3185580, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3185584, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3185588, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x1_Landing_Gear_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3185592, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x1_Landing_Gear_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3185596, + "componentType": 5123, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3185604, + "componentType": 5123, + "count": 1172, + "normalized": true, + "type": "VEC4", + "name": "x1_Landing_Gear_04_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3185612, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2747766, + "componentType": 5123, + "count": 4650, + "type": "SCALAR", + "name": "x1_Landing_Gear_04_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3241824, + "componentType": 5126, + "count": 1172, + "min": [ + -5.318994998931885, -3.4672889709472656, -6.573056221008301 + ], + "max": [ + -4.794785499572754, -1.0668212175369263, -5.270315170288086 + ], + "type": "VEC3", + "name": "x1_Landing_Gear_04_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3241836, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3241840, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3241844, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x1_Landing_Gear_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3241848, + "componentType": 5122, + "count": 1172, + "type": "VEC2", + "name": "x1_Landing_Gear_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3241852, + "componentType": 5123, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3241860, + "componentType": 5123, + "count": 1172, + "normalized": true, + "type": "VEC4", + "name": "x1_Landing_Gear_04_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3241868, + "componentType": 5120, + "count": 1172, + "type": "VEC4", + "name": "x1_Landing_Gear_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2757066, + "componentType": 5123, + "count": 4650, + "type": "SCALAR", + "name": "x1_Landing_Gear_04_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3298080, + "componentType": 5126, + "count": 1533, + "min": [ + -5.826752662658691, -2.36472749710083, -6.911768436431885 + ], + "max": [ + -0.22731135785579681, 0.327769011259079, -3.3855364322662354 + ], + "type": "VEC3", + "name": "x1_Undercarriage_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3298092, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3298096, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3298100, + "componentType": 5122, + "count": 1533, + "type": "VEC2", + "name": "x1_Undercarriage_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3298104, + "componentType": 5122, + "count": 1533, + "type": "VEC2", + "name": "x1_Undercarriage_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3298108, + "componentType": 5123, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3298116, + "componentType": 5123, + "count": 1533, + "normalized": true, + "type": "VEC4", + "name": "x1_Undercarriage_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3298124, + "componentType": 5120, + "count": 1533, + "type": "VEC4", + "name": "x1_Undercarriage_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2766366, + "componentType": 5123, + "count": 3105, + "type": "SCALAR", + "name": "x1_Undercarriage_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3371664, + "componentType": 5126, + "count": 6403, + "min": [ + -30.05951499938965, -1.3455458879470825, -18.055572509765625 + ], + "max": [ + -2.83021879196167, 3.451648712158203, 3.613905906677246 + ], + "type": "VEC3", + "name": "FROST_WINGR_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3371676, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3371680, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3371684, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3371688, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3371692, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3371700, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3371708, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2772576, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGR_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3679008, + "componentType": 5126, + "count": 424, + "min": [ + 10.141216278076172, 0.5165859460830688, -13.39698314666748 + ], + "max": [ + 26.875797271728516, 2.8301968574523926, -1.468531608581543 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3679020, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3679024, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3679028, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3679032, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3679036, + "componentType": 5123, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3679044, + "componentType": 5123, + "count": 424, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3679052, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2803056, + "componentType": 5123, + "count": 648, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3699360, + "componentType": 5126, + "count": 432, + "min": [ + -26.875783920288086, -2.830195903778076, 1.4685382843017578 + ], + "max": [ + -10.141209602355957, -0.5165848731994629, 13.396985054016113 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3699372, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3699376, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3699380, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3699384, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3699388, + "componentType": 5123, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3699396, + "componentType": 5123, + "count": 432, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3699404, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2804352, + "componentType": 5123, + "count": 654, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 3720096, + "componentType": 5126, + "count": 6403, + "min": [ + 2.8302183151245117, -1.3455458879470825, -18.05556869506836 + ], + "max": [ + 30.059513092041016, 3.451648235321045, 3.6139049530029297 + ], + "type": "VEC3", + "name": "FROST_WINGL_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 3720108, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 3720112, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 3720116, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 3720120, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 3720124, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 3720132, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 3720140, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2805660, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGL_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4027440, + "componentType": 5126, + "count": 1182, + "min": [ + -0.21939410269260406, 0.9390149116516113, 26.394916534423828 + ], + "max": [ + 0.2193945199251175, 1.7470002174377441, 27.311817169189453 + ], + "type": "VEC3", + "name": "x1_wiper_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4027452, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x1_wiper_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4027456, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x1_wiper_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4027460, + "componentType": 5122, + "count": 1182, + "type": "VEC2", + "name": "x1_wiper_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4027464, + "componentType": 5122, + "count": 1182, + "type": "VEC2", + "name": "x1_wiper_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4027468, + "componentType": 5123, + "count": 1182, + "type": "VEC4", + "name": "x1_wiper_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4027476, + "componentType": 5123, + "count": 1182, + "normalized": true, + "type": "VEC4", + "name": "x1_wiper_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4027484, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x1_wiper_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2836140, + "componentType": 5123, + "count": 2652, + "type": "SCALAR", + "name": "x1_wiper_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4084176, + "componentType": 5126, + "count": 323, + "min": [ + 3.292332649230957, -0.29746949672698975, -18.073476791381836 + ], + "max": [ + 30.012218475341797, 3.411907196044922, 3.399315595626831 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4084188, + "componentType": 5120, + "count": 323, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4084192, + "componentType": 5120, + "count": 323, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4084196, + "componentType": 5122, + "count": 323, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4084200, + "componentType": 5122, + "count": 323, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4084204, + "componentType": 5123, + "count": 323, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4084212, + "componentType": 5123, + "count": 323, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4084220, + "componentType": 5120, + "count": 323, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2841444, + "componentType": 5123, + "count": 1404, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 4099680, + "componentType": 5126, + "count": 9840, + "min": [ + 2.8388657569885254, -1.3062013387680054, -18.019323348999023 + ], + "max": [ + 30.12008285522461, 3.411900758743286, 3.585880994796753 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4099692, + "componentType": 5120, + "count": 9840, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4099696, + "componentType": 5120, + "count": 9840, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4099700, + "componentType": 5122, + "count": 9840, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4099704, + "componentType": 5122, + "count": 9840, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4099708, + "componentType": 5123, + "count": 9840, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4099716, + "componentType": 5123, + "count": 9840, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4099724, + "componentType": 5120, + "count": 9840, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2844252, + "componentType": 5123, + "count": 28254, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 4572000, + "componentType": 5126, + "count": 250, + "min": [ + 3.2889926433563232, -0.3058106005191803, -18.013601303100586 + ], + "max": [ + 29.99734115600586, 3.397082805633545, 3.3885715007781982 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4572012, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4572016, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4572020, + "componentType": 5122, + "count": 250, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4572024, + "componentType": 5122, + "count": 250, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4572028, + "componentType": 5123, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4572036, + "componentType": 5123, + "count": 250, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4572044, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2900760, + "componentType": 5123, + "count": 693, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#2" + }, { + "bufferView": 6, + "byteOffset": 4584000, + "componentType": 5126, + "count": 20521, + "min": [ + 3.006776809692383, -1.009427785873413, -17.964393615722656 + ], + "max": [ + 30.021560668945312, 3.411207675933838, 3.456012010574341 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 4584012, + "componentType": 5120, + "count": 20521, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 4584016, + "componentType": 5120, + "count": 20521, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 4584020, + "componentType": 5122, + "count": 20521, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 4584024, + "componentType": 5122, + "count": 20521, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 4584028, + "componentType": 5123, + "count": 20521, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 4584036, + "componentType": 5123, + "count": 20521, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 4584044, + "componentType": 5120, + "count": 20521, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2902146, + "componentType": 5123, + "count": 41400, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#3" + }, { + "bufferView": 6, + "byteOffset": 5569008, + "componentType": 5126, + "count": 10, + "min": [ + 5.008615493774414, 0.48277536034584045, -1.5732476711273193 + ], + "max": [ + 9.07650375366211, 0.9196901917457581, 1.0862886905670166 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5569020, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5569024, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5569028, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5569032, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5569036, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5569044, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5569052, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2984946, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#4" + }, { + "bufferView": 6, + "byteOffset": 5569488, + "componentType": 5126, + "count": 20, + "min": [ + 19.140178680419922, 1.4115639925003052, -12.02985668182373 + ], + "max": [ + 23.02212905883789, 1.9682189226150513, -8.977128028869629 + ], + "type": "VEC3", + "name": "x1_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5569500, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5569504, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5569508, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5569512, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x1_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5569516, + "componentType": 5123, + "count": 20, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5569524, + "componentType": 5123, + "count": 20, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5569532, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x1_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2984982, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x1_Wing_body_left_indices#5" + }, { + "bufferView": 6, + "byteOffset": 5570448, + "componentType": 5126, + "count": 215, + "min": [ + -30.012218475341797, -0.29746919870376587, -18.0734806060791 + ], + "max": [ + -3.292332887649536, 3.411905527114868, 3.3993165493011475 + ], + "type": "VEC3", + "name": "x1_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5570460, + "componentType": 5120, + "count": 215, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5570464, + "componentType": 5120, + "count": 215, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5570468, + "componentType": 5122, + "count": 215, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5570472, + "componentType": 5122, + "count": 215, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5570476, + "componentType": 5123, + "count": 215, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5570484, + "componentType": 5123, + "count": 215, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5570492, + "componentType": 5120, + "count": 215, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2985126, + "componentType": 5123, + "count": 864, + "type": "SCALAR", + "name": "x1_Wing_body_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 5580768, + "componentType": 5126, + "count": 9763, + "min": [ + -30.12008285522461, -1.306201696395874, -18.01932716369629 + ], + "max": [ + -2.8388657569885254, 3.4118990898132324, 3.5858819484710693 + ], + "type": "VEC3", + "name": "x1_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 5580780, + "componentType": 5120, + "count": 9763, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 5580784, + "componentType": 5120, + "count": 9763, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 5580788, + "componentType": 5122, + "count": 9763, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 5580792, + "componentType": 5122, + "count": 9763, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 5580796, + "componentType": 5123, + "count": 9763, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 5580804, + "componentType": 5123, + "count": 9763, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 5580812, + "componentType": 5120, + "count": 9763, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 2986854, + "componentType": 5123, + "count": 27828, + "type": "SCALAR", + "name": "x1_Wing_body_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 6049392, + "componentType": 5126, + "count": 250, + "min": [ + -29.99734115600586, -0.3058103024959564, -18.01360511779785 + ], + "max": [ + -3.2889928817749023, 3.397081136703491, 3.3885724544525146 + ], + "type": "VEC3", + "name": "x1_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 6049404, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 6049408, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 6049412, + "componentType": 5122, + "count": 250, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 6049416, + "componentType": 5122, + "count": 250, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 6049420, + "componentType": 5123, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 6049428, + "componentType": 5123, + "count": 250, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 6049436, + "componentType": 5120, + "count": 250, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3042510, + "componentType": 5123, + "count": 693, + "type": "SCALAR", + "name": "x1_Wing_body_right_indices#2" + }, { + "bufferView": 6, + "byteOffset": 6061392, + "componentType": 5126, + "count": 19955, + "min": [ + -30.021560668945312, -1.0094280242919922, -17.964397430419922 + ], + "max": [ + -3.006777048110962, 3.411206007003784, 3.4555482864379883 + ], + "type": "VEC3", + "name": "x1_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 6061404, + "componentType": 5120, + "count": 19955, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 6061408, + "componentType": 5120, + "count": 19955, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 6061412, + "componentType": 5122, + "count": 19955, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 6061416, + "componentType": 5122, + "count": 19955, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 6061420, + "componentType": 5123, + "count": 19955, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 6061428, + "componentType": 5123, + "count": 19955, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 6061436, + "componentType": 5120, + "count": 19955, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3043896, + "componentType": 5123, + "count": 39678, + "type": "SCALAR", + "name": "x1_Wing_body_right_indices#3" + }, { + "bufferView": 6, + "byteOffset": 7019232, + "componentType": 5126, + "count": 10, + "min": [ + -9.076504707336426, 0.48277559876441956, -1.5732476711273193 + ], + "max": [ + -5.0086164474487305, 0.9196901917457581, 1.0862891674041748 + ], + "type": "VEC3", + "name": "x1_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 7019244, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 7019248, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 7019252, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 7019256, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x1_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 7019260, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 7019268, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 7019276, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x1_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 3123252, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x1_Wing_body_right_indices#4" + }, { + "bufferView": 9, + "byteOffset": 28, + "componentType": 5123, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 16, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "componentType": 5126, + "count": 1084, + "min": [ + -6.898191452026367, -2.385265350341797, -0.27293723821640015 + ], + "max": [ + 4.0452880859375, 0.5350360870361328, 0.27293795347213745 + ], + "type": "VEC3", + "name": "x1_Rudder_center.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 12, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 20, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 24, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "componentType": 5123, + "count": 5460, + "type": "SCALAR", + "name": "x1_Rudder_center.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 39052, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 39040, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 39024, + "componentType": 5126, + "count": 43, + "min": [ + -0.48449012637138367, 0.054303597658872604, -0.7407507300376892 + ], + "max": [ + 0.5785654187202454, 0.16718320548534393, -0.044933248311281204 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 39036, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 39044, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 39048, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 10920, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_Left.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 40600, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 40588, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 40572, + "componentType": 5126, + "count": 43, + "min": [ + -0.5787447690963745, -0.16539137065410614, 0.044925887137651443 + ], + "max": [ + 0.4843108654022217, -0.05251185968518257, 0.7407436966896057 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 40584, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 40592, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 40596, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11100, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_right.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 42148, + "componentType": 5123, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 42136, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 42120, + "componentType": 5126, + "count": 345, + "min": [ + -0.2698783874511719, -0.9995222091674805, -0.5886659622192383 + ], + "max": [ + 0.0020599365234375, 0.5340242385864258, 0.5886745452880859 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 42132, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 42140, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 42144, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11280, + "componentType": 5123, + "count": 906, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorB.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 54568, + "componentType": 5123, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 54556, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 54540, + "componentType": 5126, + "count": 24, + "min": [ + 2.5483758449554443, 1.5735995769500732, 5.896169662475586 + ], + "max": [ + 2.77527117729187, 1.843569040298462, 21.52033805847168 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 54560, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 54564, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13092, + "componentType": 5123, + "count": 63, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageA.005_indices#0" + }, { + "bufferView": 9, + "byteOffset": 55432, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 55420, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 55404, + "componentType": 5126, + "count": 31, + "min": [ + -0.27521419525146484, -0.27002182602882385, -1.6258187294006348 + ], + "max": [ + -0.24078130722045898, 0.6198497414588928, 1.8943886756896973 + ], + "type": "VEC3", + "name": "x0_R_Door01_left.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 55416, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 55424, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 55428, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13220, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_R_Door01_left.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 56548, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 56536, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 56520, + "componentType": 5126, + "count": 31, + "min": [ + 0.24078059196472168, -0.6198493242263794, -1.8943934440612793 + ], + "max": [ + 0.27521395683288574, 0.2700219750404358, 1.625821590423584 + ], + "type": "VEC3", + "name": "x0_Door01_right.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 56532, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 56540, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 56544, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13396, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_Door01_right.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 57664, + "componentType": 5123, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 57652, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 57636, + "componentType": 5126, + "count": 2356, + "min": [ + -0.5303040146827698, 2.561161756515503, -39.11258316040039 + ], + "max": [ + 0.5303040146827698, 12.468074798583984, -25.891597747802734 + ], + "type": "VEC3", + "name": "livery_vstab_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 57648, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 57656, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 57660, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13572, + "componentType": 5123, + "count": 12342, + "type": "SCALAR", + "name": "livery_vstab_indices#0" + }, { + "bufferView": 9, + "byteOffset": 142480, + "componentType": 5123, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 142468, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 142452, + "componentType": 5126, + "count": 35, + "min": [ + 0.38646888732910156, -1.475200891494751, -1.4131393432617188 + ], + "max": [ + 0.8847513198852539, -0.9122163653373718, 1.4013233184814453 + ], + "type": "VEC3", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 142464, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 142472, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 142476, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38256, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "Cargo_Door_LIVERYDECAL_indices#0" + }, { + "bufferView": 9, + "byteOffset": 143740, + "componentType": 5123, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 143728, + "componentType": 5120, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 143712, + "componentType": 5126, + "count": 270, + "min": [ + -2.8634743690490723, -0.27878737449645996, -25.152372360229492 + ], + "max": [ + 2.863468647003174, 2.3880088329315186, -20.129650115966797 + ], + "type": "VEC3", + "name": "Plane.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 143732, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 143736, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38496, + "componentType": 5123, + "count": 918, + "type": "SCALAR", + "name": "Plane.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 153460, + "componentType": 5123, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 153448, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 153432, + "componentType": 5126, + "count": 2765, + "min": [ + -1.2694666385650635, -2.546407699584961, -15.50222110748291 + ], + "max": [ + 1.269464135169983, -1.9093613624572754, 8.595946311950684 + ], + "type": "VEC3", + "name": "Plane.004_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 153444, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 153452, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 153456, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 40332, + "componentType": 5123, + "count": 8436, + "type": "SCALAR", + "name": "Plane.004_indices#0" + }, { + "bufferView": 9, + "byteOffset": 253000, + "componentType": 5123, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 252988, + "componentType": 5120, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 252972, + "componentType": 5126, + "count": 12650, + "min": [ + -2.848564624786377, 1.0104148387908936, -2.4503250122070312 + ], + "max": [ + 2.848580837249756, 2.654226064682007, 19.7845458984375 + ], + "type": "VEC3", + "name": "Plane.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 252992, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 252996, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 57204, + "componentType": 5123, + "count": 39384, + "type": "SCALAR", + "name": "Plane.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 708400, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 708388, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 708372, + "componentType": 5126, + "count": 92, + "min": [ + -2.3540401458740234, 0.9106197357177734, 23.448795318603516 + ], + "max": [ + 2.3526997566223145, 1.9353947639465332, 24.303451538085938 + ], + "type": "VEC3", + "name": "Plane.003_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 708384, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 708392, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 708396, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 135972, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "Plane.003_indices#0" + }, { + "bufferView": 9, + "byteOffset": 711712, + "componentType": 5123, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 711700, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 711684, + "componentType": 5126, + "count": 3715, + "min": [ + -3.255725383758545, -1.545548439025879, -30.79000473022461 + ], + "max": [ + 3.2557260990142822, -0.9825637340545654, 28.268733978271484 + ], + "type": "VEC3", + "name": "Plane.008_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 711696, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 711704, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 711708, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 136644, + "componentType": 5123, + "count": 11496, + "type": "SCALAR", + "name": "Plane.008_indices#0" + }, { + "bufferView": 10, + "componentType": 5126, + "count": 81, + "min": [0.041666666666666664], + "max": [3.375], + "type": "SCALAR" + }, { + "bufferView": 11, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 12, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, { + "bufferView": 13, + "componentType": 5126, + "count": 161, + "min": [0.041666666666666664], + "max": [6.708333333333333], + "type": "SCALAR" + }, { + "bufferView": 14, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 15, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 16, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 17, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 18, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 19, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 20, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 21, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 22, + "componentType": 5126, + "count": 81, + "type": "VEC4" + } + ], + "animations": [ + { + "name": "c_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 201, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 201, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 230, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 230, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 230, + "path": "scale" + } + }, { + "sampler": 5, + "target": { + "node": 231, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 231, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 231, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 16, + "path": "rotation" + } + }, { + "sampler": 9, + "target": { + "node": 225, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 225, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 225, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 10, + "path": "rotation" + } + }, { + "sampler": 13, + "target": { + "node": 244, + "path": "translation" + } + }, { + "sampler": 14, + "target": { + "node": 244, + "path": "rotation" + } + }, { + "sampler": 15, + "target": { + "node": 244, + "path": "scale" + } + }, { + "sampler": 16, + "target": { + "node": 245, + "path": "translation" + } + }, { + "sampler": 17, + "target": { + "node": 245, + "path": "rotation" + } + }, { + "sampler": 18, + "target": { + "node": 245, + "path": "scale" + } + }, { + "sampler": 19, + "target": { + "node": 248, + "path": "translation" + } + }, { + "sampler": 20, + "target": { + "node": 248, + "path": "rotation" + } + }, { + "sampler": 21, + "target": { + "node": 248, + "path": "scale" + } + }, { + "sampler": 22, + "target": { + "node": 246, + "path": "translation" + } + }, { + "sampler": 23, + "target": { + "node": 246, + "path": "rotation" + } + }, { + "sampler": 24, + "target": { + "node": 246, + "path": "scale" + } + }, { + "sampler": 25, + "target": { + "node": 22, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 26, + "path": "rotation" + } + }, { + "sampler": 27, + "target": { + "node": 29, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 29, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 29, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 212, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 212, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 212, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 213, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 213, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 213, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 216, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 216, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 216, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 226, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 226, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 226, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 23, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 23, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 23, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 13, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 13, + "path": "scale" + } + }, { + "sampler": 47, + "target": { + "node": 19, + "path": "translation" + } + }, { + "sampler": 48, + "target": { + "node": 19, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 19, + "path": "scale" + } + }, { + "sampler": 50, + "target": { + "node": 228, + "path": "translation" + } + }, { + "sampler": 51, + "target": { + "node": 228, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 228, + "path": "scale" + } + }, { + "sampler": 53, + "target": { + "node": 234, + "path": "translation" + } + }, { + "sampler": 54, + "target": { + "node": 234, + "path": "rotation" + } + }, { + "sampler": 55, + "target": { + "node": 234, + "path": "scale" + } + }, { + "sampler": 56, + "target": { + "node": 235, + "path": "translation" + } + }, { + "sampler": 57, + "target": { + "node": 235, + "path": "rotation" + } + }, { + "sampler": 58, + "target": { + "node": 235, + "path": "scale" + } + }, { + "sampler": 59, + "target": { + "node": 214, + "path": "translation" + } + }, { + "sampler": 60, + "target": { + "node": 214, + "path": "rotation" + } + }, { + "sampler": 61, + "target": { + "node": 214, + "path": "scale" + } + }, { + "sampler": 62, + "target": { + "node": 221, + "path": "translation" + } + }, { + "sampler": 63, + "target": { + "node": 221, + "path": "rotation" + } + }, { + "sampler": 64, + "target": { + "node": 221, + "path": "scale" + } + }, { + "sampler": 65, + "target": { + "node": 222, + "path": "translation" + } + }, { + "sampler": 66, + "target": { + "node": 222, + "path": "rotation" + } + }, { + "sampler": 67, + "target": { + "node": 222, + "path": "scale" + } + }, { + "sampler": 68, + "target": { + "node": 223, + "path": "translation" + } + }, { + "sampler": 69, + "target": { + "node": 223, + "path": "rotation" + } + }, { + "sampler": 70, + "target": { + "node": 223, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 29, + "output": 30, + "interpolation": "LINEAR" + }, { + "input": 31, + "output": 32, + "interpolation": "LINEAR" + }, { + "input": 33, + "output": 34, + "interpolation": "LINEAR" + }, { + "input": 35, + "output": 36, + "interpolation": "LINEAR" + }, { + "input": 37, + "output": 38, + "interpolation": "LINEAR" + }, { + "input": 39, + "output": 40, + "interpolation": "LINEAR" + }, { + "input": 41, + "output": 42, + "interpolation": "LINEAR" + }, { + "input": 43, + "output": 44, + "interpolation": "LINEAR" + }, { + "input": 45, + "output": 46, + "interpolation": "LINEAR" + }, { + "input": 47, + "output": 48, + "interpolation": "LINEAR" + }, { + "input": 49, + "output": 50, + "interpolation": "LINEAR" + }, { + "input": 51, + "output": 52, + "interpolation": "LINEAR" + }, { + "input": 53, + "output": 54, + "interpolation": "LINEAR" + }, { + "input": 55, + "output": 56, + "interpolation": "LINEAR" + }, { + "input": 57, + "output": 58, + "interpolation": "LINEAR" + }, { + "input": 59, + "output": 60, + "interpolation": "LINEAR" + }, { + "input": 61, + "output": 62, + "interpolation": "LINEAR" + }, { + "input": 63, + "output": 64, + "interpolation": "LINEAR" + }, { + "input": 65, + "output": 66, + "interpolation": "LINEAR" + }, { + "input": 67, + "output": 68, + "interpolation": "LINEAR" + }, { + "input": 69, + "output": 70, + "interpolation": "LINEAR" + }, { + "input": 71, + "output": 72, + "interpolation": "LINEAR" + }, { + "input": 73, + "output": 74, + "interpolation": "LINEAR" + }, { + "input": 75, + "output": 76, + "interpolation": "LINEAR" + }, { + "input": 77, + "output": 78, + "interpolation": "LINEAR" + }, { + "input": 79, + "output": 80, + "interpolation": "LINEAR" + }, { + "input": 81, + "output": 82, + "interpolation": "LINEAR" + }, { + "input": 83, + "output": 84, + "interpolation": "LINEAR" + }, { + "input": 85, + "output": 86, + "interpolation": "LINEAR" + }, { + "input": 87, + "output": 88, + "interpolation": "LINEAR" + }, { + "input": 89, + "output": 90, + "interpolation": "LINEAR" + }, { + "input": 91, + "output": 92, + "interpolation": "LINEAR" + }, { + "input": 93, + "output": 94, + "interpolation": "LINEAR" + }, { + "input": 95, + "output": 96, + "interpolation": "LINEAR" + }, { + "input": 97, + "output": 98, + "interpolation": "LINEAR" + }, { + "input": 99, + "output": 100, + "interpolation": "LINEAR" + }, { + "input": 101, + "output": 102, + "interpolation": "LINEAR" + }, { + "input": 103, + "output": 104, + "interpolation": "LINEAR" + }, { + "input": 105, + "output": 106, + "interpolation": "LINEAR" + }, { + "input": 107, + "output": 108, + "interpolation": "LINEAR" + }, { + "input": 109, + "output": 110, + "interpolation": "LINEAR" + }, { + "input": 111, + "output": 112, + "interpolation": "LINEAR" + }, { + "input": 113, + "output": 114, + "interpolation": "LINEAR" + }, { + "input": 115, + "output": 116, + "interpolation": "LINEAR" + }, { + "input": 117, + "output": 118, + "interpolation": "LINEAR" + }, { + "input": 119, + "output": 120, + "interpolation": "LINEAR" + }, { + "input": 121, + "output": 122, + "interpolation": "LINEAR" + }, { + "input": 123, + "output": 124, + "interpolation": "LINEAR" + }, { + "input": 125, + "output": 126, + "interpolation": "LINEAR" + }, { + "input": 127, + "output": 128, + "interpolation": "LINEAR" + }, { + "input": 129, + "output": 130, + "interpolation": "LINEAR" + }, { + "input": 131, + "output": 132, + "interpolation": "LINEAR" + }, { + "input": 133, + "output": 134, + "interpolation": "LINEAR" + }, { + "input": 135, + "output": 136, + "interpolation": "LINEAR" + }, { + "input": 137, + "output": 138, + "interpolation": "LINEAR" + }, { + "input": 139, + "output": 140, + "interpolation": "LINEAR" + }, { + "input": 141, + "output": 142, + "interpolation": "LINEAR" + }, { + "input": 143, + "output": 144, + "interpolation": "LINEAR" + }, { + "input": 145, + "output": 146, + "interpolation": "LINEAR" + }, { + "input": 147, + "output": 148, + "interpolation": "LINEAR" + }, { + "input": 149, + "output": 150, + "interpolation": "LINEAR" + }, { + "input": 151, + "output": 152, + "interpolation": "LINEAR" + }, { + "input": 153, + "output": 154, + "interpolation": "LINEAR" + }, { + "input": 155, + "output": 156, + "interpolation": "LINEAR" + }, { + "input": 157, + "output": 158, + "interpolation": "LINEAR" + }, { + "input": 159, + "output": 160, + "interpolation": "LINEAR" + }, { + "input": 161, + "output": 162, + "interpolation": "LINEAR" + }, { + "input": 163, + "output": 164, + "interpolation": "LINEAR" + }, { + "input": 165, + "output": 166, + "interpolation": "LINEAR" + }, { + "input": 167, + "output": 168, + "interpolation": "LINEAR" + }, { + "input": 169, + "output": 170, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 217, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 171, + "output": 172, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_wheel", + "channels": [ + { + "sampler": 0, + "target": { + "node": 210, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 210, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 210, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 202, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 202, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 202, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 204, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 204, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 204, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 206, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 206, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 206, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 208, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 208, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 208, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 173, + "output": 174, + "interpolation": "LINEAR" + }, { + "input": 175, + "output": 176, + "interpolation": "LINEAR" + }, { + "input": 177, + "output": 178, + "interpolation": "LINEAR" + }, { + "input": 179, + "output": 180, + "interpolation": "LINEAR" + }, { + "input": 181, + "output": 182, + "interpolation": "LINEAR" + }, { + "input": 183, + "output": 184, + "interpolation": "LINEAR" + }, { + "input": 185, + "output": 186, + "interpolation": "LINEAR" + }, { + "input": 187, + "output": 188, + "interpolation": "LINEAR" + }, { + "input": 189, + "output": 190, + "interpolation": "LINEAR" + }, { + "input": 191, + "output": 192, + "interpolation": "LINEAR" + }, { + "input": 193, + "output": 194, + "interpolation": "LINEAR" + }, { + "input": 195, + "output": 196, + "interpolation": "LINEAR" + }, { + "input": 197, + "output": 198, + "interpolation": "LINEAR" + }, { + "input": 199, + "output": 200, + "interpolation": "LINEAR" + }, { + "input": 201, + "output": 202, + "interpolation": "LINEAR" + } + ] + }, { + "name": "elevator_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 34, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 34, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 34, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 256, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 256, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 256, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 203, + "output": 204, + "interpolation": "LINEAR" + }, { + "input": 205, + "output": 206, + "interpolation": "LINEAR" + }, { + "input": 207, + "output": 208, + "interpolation": "LINEAR" + }, { + "input": 209, + "output": 210, + "interpolation": "LINEAR" + }, { + "input": 211, + "output": 212, + "interpolation": "LINEAR" + }, { + "input": 213, + "output": 214, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 51, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 51, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 51, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 50, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 50, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 50, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 215, + "output": 216, + "interpolation": "LINEAR" + }, { + "input": 217, + "output": 218, + "interpolation": "LINEAR" + }, { + "input": 219, + "output": 220, + "interpolation": "LINEAR" + }, { + "input": 221, + "output": 222, + "interpolation": "LINEAR" + }, { + "input": 223, + "output": 224, + "interpolation": "LINEAR" + }, { + "input": 225, + "output": 226, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 74, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 74, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 55, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 55, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 56, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 75, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 75, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 75, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 93, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 93, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 93, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 94, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 227, + "output": 228, + "interpolation": "LINEAR" + }, { + "input": 229, + "output": 230, + "interpolation": "LINEAR" + }, { + "input": 231, + "output": 232, + "interpolation": "LINEAR" + }, { + "input": 233, + "output": 234, + "interpolation": "LINEAR" + }, { + "input": 235, + "output": 236, + "interpolation": "LINEAR" + }, { + "input": 237, + "output": 238, + "interpolation": "LINEAR" + }, { + "input": 239, + "output": 240, + "interpolation": "LINEAR" + }, { + "input": 241, + "output": 242, + "interpolation": "LINEAR" + }, { + "input": 243, + "output": 244, + "interpolation": "LINEAR" + }, { + "input": 245, + "output": 246, + "interpolation": "LINEAR" + }, { + "input": 247, + "output": 248, + "interpolation": "LINEAR" + }, { + "input": 249, + "output": 250, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 66, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 66, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 66, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 68, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 68, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 68, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 70, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 70, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 70, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 62, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 62, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 62, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 53, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 53, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 53, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 58, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 58, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 58, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 60, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 60, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 60, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 54, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 54, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 54, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 85, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 85, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 85, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 87, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 87, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 87, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 72, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 72, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 72, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 186, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 186, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 186, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 187, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 187, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 187, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 185, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 185, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 185, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 183, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 183, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 183, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 190, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 190, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 190, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 191, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 191, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 191, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 184, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 184, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 184, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 157, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 157, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 157, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 158, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 158, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 158, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 251, + "output": 252, + "interpolation": "LINEAR" + }, { + "input": 253, + "output": 254, + "interpolation": "LINEAR" + }, { + "input": 255, + "output": 256, + "interpolation": "LINEAR" + }, { + "input": 257, + "output": 258, + "interpolation": "LINEAR" + }, { + "input": 259, + "output": 260, + "interpolation": "LINEAR" + }, { + "input": 261, + "output": 262, + "interpolation": "LINEAR" + }, { + "input": 263, + "output": 264, + "interpolation": "LINEAR" + }, { + "input": 265, + "output": 266, + "interpolation": "LINEAR" + }, { + "input": 267, + "output": 268, + "interpolation": "LINEAR" + }, { + "input": 269, + "output": 270, + "interpolation": "LINEAR" + }, { + "input": 271, + "output": 272, + "interpolation": "LINEAR" + }, { + "input": 273, + "output": 274, + "interpolation": "LINEAR" + }, { + "input": 275, + "output": 276, + "interpolation": "LINEAR" + }, { + "input": 277, + "output": 278, + "interpolation": "LINEAR" + }, { + "input": 279, + "output": 280, + "interpolation": "LINEAR" + }, { + "input": 281, + "output": 282, + "interpolation": "LINEAR" + }, { + "input": 283, + "output": 284, + "interpolation": "LINEAR" + }, { + "input": 285, + "output": 286, + "interpolation": "LINEAR" + }, { + "input": 287, + "output": 288, + "interpolation": "LINEAR" + }, { + "input": 289, + "output": 290, + "interpolation": "LINEAR" + }, { + "input": 291, + "output": 292, + "interpolation": "LINEAR" + }, { + "input": 293, + "output": 294, + "interpolation": "LINEAR" + }, { + "input": 295, + "output": 296, + "interpolation": "LINEAR" + }, { + "input": 297, + "output": 298, + "interpolation": "LINEAR" + }, { + "input": 299, + "output": 300, + "interpolation": "LINEAR" + }, { + "input": 301, + "output": 302, + "interpolation": "LINEAR" + }, { + "input": 303, + "output": 304, + "interpolation": "LINEAR" + }, { + "input": 305, + "output": 306, + "interpolation": "LINEAR" + }, { + "input": 307, + "output": 308, + "interpolation": "LINEAR" + }, { + "input": 309, + "output": 310, + "interpolation": "LINEAR" + }, { + "input": 311, + "output": 312, + "interpolation": "LINEAR" + }, { + "input": 313, + "output": 314, + "interpolation": "LINEAR" + }, { + "input": 315, + "output": 316, + "interpolation": "LINEAR" + }, { + "input": 317, + "output": 318, + "interpolation": "LINEAR" + }, { + "input": 319, + "output": 320, + "interpolation": "LINEAR" + }, { + "input": 321, + "output": 322, + "interpolation": "LINEAR" + }, { + "input": 323, + "output": 324, + "interpolation": "LINEAR" + }, { + "input": 325, + "output": 326, + "interpolation": "LINEAR" + }, { + "input": 327, + "output": 328, + "interpolation": "LINEAR" + }, { + "input": 329, + "output": 330, + "interpolation": "LINEAR" + }, { + "input": 331, + "output": 332, + "interpolation": "LINEAR" + }, { + "input": 333, + "output": 334, + "interpolation": "LINEAR" + }, { + "input": 335, + "output": 336, + "interpolation": "LINEAR" + }, { + "input": 337, + "output": 338, + "interpolation": "LINEAR" + }, { + "input": 339, + "output": 340, + "interpolation": "LINEAR" + }, { + "input": 341, + "output": 342, + "interpolation": "LINEAR" + }, { + "input": 343, + "output": 344, + "interpolation": "LINEAR" + }, { + "input": 345, + "output": 346, + "interpolation": "LINEAR" + }, { + "input": 347, + "output": 348, + "interpolation": "LINEAR" + }, { + "input": 349, + "output": 350, + "interpolation": "LINEAR" + }, { + "input": 351, + "output": 352, + "interpolation": "LINEAR" + }, { + "input": 353, + "output": 354, + "interpolation": "LINEAR" + }, { + "input": 355, + "output": 356, + "interpolation": "LINEAR" + }, { + "input": 357, + "output": 358, + "interpolation": "LINEAR" + }, { + "input": 359, + "output": 360, + "interpolation": "LINEAR" + }, { + "input": 361, + "output": 362, + "interpolation": "LINEAR" + }, { + "input": 363, + "output": 364, + "interpolation": "LINEAR" + }, { + "input": 365, + "output": 366, + "interpolation": "LINEAR" + }, { + "input": 367, + "output": 368, + "interpolation": "LINEAR" + }, { + "input": 369, + "output": 370, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 145, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 145, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 145, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 148, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 148, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 148, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 371, + "output": 372, + "interpolation": "LINEAR" + }, { + "input": 373, + "output": 374, + "interpolation": "LINEAR" + }, { + "input": 375, + "output": 376, + "interpolation": "LINEAR" + }, { + "input": 377, + "output": 378, + "interpolation": "LINEAR" + }, { + "input": 379, + "output": 380, + "interpolation": "LINEAR" + }, { + "input": 381, + "output": 382, + "interpolation": "LINEAR" + } + ] + }, { + "name": "rudder_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 7, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 7, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 7, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 383, + "output": 384, + "interpolation": "LINEAR" + }, { + "input": 385, + "output": 386, + "interpolation": "LINEAR" + }, { + "input": 387, + "output": 388, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_1", + "channels": [ + { + "sampler": 0, + "target": { + "node": 176, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 176, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 176, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 389, + "output": 390, + "interpolation": "LINEAR" + }, { + "input": 391, + "output": 392, + "interpolation": "LINEAR" + }, { + "input": 393, + "output": 394, + "interpolation": "LINEAR" + } + ] + }, { + "name": "trimtab_elevator_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 33, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 33, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 33, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 255, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 255, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 255, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 395, + "output": 396, + "interpolation": "LINEAR" + }, { + "input": 397, + "output": 398, + "interpolation": "LINEAR" + }, { + "input": 399, + "output": 400, + "interpolation": "LINEAR" + }, { + "input": 401, + "output": 402, + "interpolation": "LINEAR" + }, { + "input": 403, + "output": 404, + "interpolation": "LINEAR" + }, { + "input": 405, + "output": 406, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 97, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 97, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 97, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 98, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 98, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 98, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 100, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 100, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 100, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 101, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 101, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 101, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 102, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 102, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 102, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 104, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 104, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 104, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 107, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 107, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 107, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 108, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 108, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 108, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 109, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 109, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 109, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 110, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 110, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 110, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 111, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 111, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 111, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 113, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 113, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 113, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 115, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 115, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 115, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 120, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 120, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 120, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 121, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 121, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 121, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 122, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 122, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 122, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 124, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 124, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 124, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 127, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 127, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 127, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 128, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 128, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 128, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 132, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 132, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 132, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 133, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 133, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 133, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 136, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 136, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 136, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 137, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 137, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 137, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 139, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 139, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 139, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 143, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 143, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 143, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 153, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 153, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 153, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 155, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 155, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 155, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 169, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 169, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 169, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 167, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 167, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 167, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 165, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 165, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 165, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 161, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 161, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 161, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 162, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 162, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 162, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 197, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 197, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 197, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 198, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 198, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 198, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 195, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 195, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 195, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 407, + "output": 408, + "interpolation": "LINEAR" + }, { + "input": 409, + "output": 410, + "interpolation": "LINEAR" + }, { + "input": 411, + "output": 412, + "interpolation": "LINEAR" + }, { + "input": 413, + "output": 414, + "interpolation": "LINEAR" + }, { + "input": 415, + "output": 416, + "interpolation": "LINEAR" + }, { + "input": 417, + "output": 418, + "interpolation": "LINEAR" + }, { + "input": 419, + "output": 420, + "interpolation": "LINEAR" + }, { + "input": 421, + "output": 422, + "interpolation": "LINEAR" + }, { + "input": 423, + "output": 424, + "interpolation": "LINEAR" + }, { + "input": 425, + "output": 426, + "interpolation": "LINEAR" + }, { + "input": 427, + "output": 428, + "interpolation": "LINEAR" + }, { + "input": 429, + "output": 430, + "interpolation": "LINEAR" + }, { + "input": 431, + "output": 432, + "interpolation": "LINEAR" + }, { + "input": 433, + "output": 434, + "interpolation": "LINEAR" + }, { + "input": 435, + "output": 436, + "interpolation": "LINEAR" + }, { + "input": 437, + "output": 438, + "interpolation": "LINEAR" + }, { + "input": 439, + "output": 440, + "interpolation": "LINEAR" + }, { + "input": 441, + "output": 442, + "interpolation": "LINEAR" + }, { + "input": 443, + "output": 444, + "interpolation": "LINEAR" + }, { + "input": 445, + "output": 446, + "interpolation": "LINEAR" + }, { + "input": 447, + "output": 448, + "interpolation": "LINEAR" + }, { + "input": 449, + "output": 450, + "interpolation": "LINEAR" + }, { + "input": 451, + "output": 452, + "interpolation": "LINEAR" + }, { + "input": 453, + "output": 454, + "interpolation": "LINEAR" + }, { + "input": 455, + "output": 456, + "interpolation": "LINEAR" + }, { + "input": 457, + "output": 458, + "interpolation": "LINEAR" + }, { + "input": 459, + "output": 460, + "interpolation": "LINEAR" + }, { + "input": 461, + "output": 462, + "interpolation": "LINEAR" + }, { + "input": 463, + "output": 464, + "interpolation": "LINEAR" + }, { + "input": 465, + "output": 466, + "interpolation": "LINEAR" + }, { + "input": 467, + "output": 468, + "interpolation": "LINEAR" + }, { + "input": 469, + "output": 470, + "interpolation": "LINEAR" + }, { + "input": 471, + "output": 472, + "interpolation": "LINEAR" + }, { + "input": 473, + "output": 474, + "interpolation": "LINEAR" + }, { + "input": 475, + "output": 476, + "interpolation": "LINEAR" + }, { + "input": 477, + "output": 478, + "interpolation": "LINEAR" + }, { + "input": 479, + "output": 480, + "interpolation": "LINEAR" + }, { + "input": 481, + "output": 482, + "interpolation": "LINEAR" + }, { + "input": 483, + "output": 484, + "interpolation": "LINEAR" + }, { + "input": 485, + "output": 486, + "interpolation": "LINEAR" + }, { + "input": 487, + "output": 488, + "interpolation": "LINEAR" + }, { + "input": 489, + "output": 490, + "interpolation": "LINEAR" + }, { + "input": 491, + "output": 492, + "interpolation": "LINEAR" + }, { + "input": 493, + "output": 494, + "interpolation": "LINEAR" + }, { + "input": 495, + "output": 496, + "interpolation": "LINEAR" + }, { + "input": 497, + "output": 498, + "interpolation": "LINEAR" + }, { + "input": 499, + "output": 500, + "interpolation": "LINEAR" + }, { + "input": 501, + "output": 502, + "interpolation": "LINEAR" + }, { + "input": 503, + "output": 504, + "interpolation": "LINEAR" + }, { + "input": 505, + "output": 506, + "interpolation": "LINEAR" + }, { + "input": 507, + "output": 508, + "interpolation": "LINEAR" + }, { + "input": 509, + "output": 510, + "interpolation": "LINEAR" + }, { + "input": 511, + "output": 512, + "interpolation": "LINEAR" + }, { + "input": 513, + "output": 514, + "interpolation": "LINEAR" + }, { + "input": 515, + "output": 516, + "interpolation": "LINEAR" + }, { + "input": 517, + "output": 518, + "interpolation": "LINEAR" + }, { + "input": 519, + "output": 520, + "interpolation": "LINEAR" + }, { + "input": 521, + "output": 522, + "interpolation": "LINEAR" + }, { + "input": 523, + "output": 524, + "interpolation": "LINEAR" + }, { + "input": 525, + "output": 526, + "interpolation": "LINEAR" + }, { + "input": 527, + "output": 528, + "interpolation": "LINEAR" + }, { + "input": 529, + "output": 530, + "interpolation": "LINEAR" + }, { + "input": 531, + "output": 532, + "interpolation": "LINEAR" + }, { + "input": 533, + "output": 534, + "interpolation": "LINEAR" + }, { + "input": 535, + "output": 536, + "interpolation": "LINEAR" + }, { + "input": 537, + "output": 538, + "interpolation": "LINEAR" + }, { + "input": 539, + "output": 540, + "interpolation": "LINEAR" + }, { + "input": 541, + "output": 542, + "interpolation": "LINEAR" + }, { + "input": 543, + "output": 544, + "interpolation": "LINEAR" + }, { + "input": 545, + "output": 546, + "interpolation": "LINEAR" + }, { + "input": 547, + "output": 548, + "interpolation": "LINEAR" + }, { + "input": 549, + "output": 550, + "interpolation": "LINEAR" + }, { + "input": 551, + "output": 552, + "interpolation": "LINEAR" + }, { + "input": 553, + "output": 554, + "interpolation": "LINEAR" + }, { + "input": 555, + "output": 556, + "interpolation": "LINEAR" + }, { + "input": 557, + "output": 558, + "interpolation": "LINEAR" + }, { + "input": 559, + "output": 560, + "interpolation": "LINEAR" + }, { + "input": 561, + "output": 562, + "interpolation": "LINEAR" + }, { + "input": 563, + "output": 564, + "interpolation": "LINEAR" + }, { + "input": 565, + "output": 566, + "interpolation": "LINEAR" + }, { + "input": 567, + "output": 568, + "interpolation": "LINEAR" + }, { + "input": 569, + "output": 570, + "interpolation": "LINEAR" + }, { + "input": 571, + "output": 572, + "interpolation": "LINEAR" + }, { + "input": 573, + "output": 574, + "interpolation": "LINEAR" + }, { + "input": 575, + "output": 576, + "interpolation": "LINEAR" + }, { + "input": 577, + "output": 578, + "interpolation": "LINEAR" + }, { + "input": 579, + "output": 580, + "interpolation": "LINEAR" + }, { + "input": 581, + "output": 582, + "interpolation": "LINEAR" + }, { + "input": 583, + "output": 584, + "interpolation": "LINEAR" + }, { + "input": 585, + "output": 586, + "interpolation": "LINEAR" + }, { + "input": 587, + "output": 588, + "interpolation": "LINEAR" + }, { + "input": 589, + "output": 590, + "interpolation": "LINEAR" + }, { + "input": 591, + "output": 592, + "interpolation": "LINEAR" + }, { + "input": 593, + "output": 594, + "interpolation": "LINEAR" + }, { + "input": 595, + "output": 596, + "interpolation": "LINEAR" + }, { + "input": 597, + "output": 598, + "interpolation": "LINEAR" + }, { + "input": 599, + "output": 600, + "interpolation": "LINEAR" + }, { + "input": 601, + "output": 602, + "interpolation": "LINEAR" + }, { + "input": 603, + "output": 604, + "interpolation": "LINEAR" + }, { + "input": 605, + "output": 606, + "interpolation": "LINEAR" + }, { + "input": 607, + "output": 608, + "interpolation": "LINEAR" + }, { + "input": 609, + "output": 610, + "interpolation": "LINEAR" + }, { + "input": 611, + "output": 612, + "interpolation": "LINEAR" + }, { + "input": 613, + "output": 614, + "interpolation": "LINEAR" + }, { + "input": 615, + "output": 616, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_1_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 172, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 172, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 172, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 617, + "output": 618, + "interpolation": "LINEAR" + }, { + "input": 619, + "output": 620, + "interpolation": "LINEAR" + }, { + "input": 621, + "output": 622, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 337, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 337, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 337, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 336, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 336, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 336, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 623, + "output": 624, + "interpolation": "LINEAR" + }, { + "input": 625, + "output": 626, + "interpolation": "LINEAR" + }, { + "input": 627, + "output": 628, + "interpolation": "LINEAR" + }, { + "input": 629, + "output": 630, + "interpolation": "LINEAR" + }, { + "input": 631, + "output": 632, + "interpolation": "LINEAR" + }, { + "input": 633, + "output": 634, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 282, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 282, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 282, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 306, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 306, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 320, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 320, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 283, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 307, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 307, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 307, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 321, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 635, + "output": 636, + "interpolation": "LINEAR" + }, { + "input": 637, + "output": 638, + "interpolation": "LINEAR" + }, { + "input": 639, + "output": 640, + "interpolation": "LINEAR" + }, { + "input": 641, + "output": 642, + "interpolation": "LINEAR" + }, { + "input": 643, + "output": 644, + "interpolation": "LINEAR" + }, { + "input": 645, + "output": 646, + "interpolation": "LINEAR" + }, { + "input": 647, + "output": 648, + "interpolation": "LINEAR" + }, { + "input": 649, + "output": 650, + "interpolation": "LINEAR" + }, { + "input": 651, + "output": 652, + "interpolation": "LINEAR" + }, { + "input": 653, + "output": 654, + "interpolation": "LINEAR" + }, { + "input": 655, + "output": 656, + "interpolation": "LINEAR" + }, { + "input": 657, + "output": 658, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 356, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 356, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 356, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 357, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 357, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 357, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 361, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 361, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 361, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 364, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 364, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 364, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 366, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 366, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 366, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 369, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 369, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 369, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 371, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 371, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 371, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 380, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 380, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 380, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 384, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 384, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 384, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 385, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 385, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 385, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 387, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 387, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 387, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 388, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 388, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 388, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 389, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 389, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 389, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 391, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 391, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 391, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 394, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 394, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 394, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 395, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 395, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 395, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 396, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 396, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 396, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 398, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 398, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 398, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 401, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 401, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 401, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 402, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 402, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 402, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 403, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 403, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 403, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 404, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 404, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 404, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 405, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 405, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 405, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 406, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 406, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 406, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 409, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 409, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 409, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 263, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 263, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 263, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 286, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 286, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 286, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 265, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 265, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 265, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 287, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 287, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 287, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 354, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 354, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 354, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 359, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 359, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 359, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 362, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 362, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 362, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 417, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 417, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 417, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 418, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 418, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 418, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 253, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 253, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 253, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 659, + "output": 660, + "interpolation": "LINEAR" + }, { + "input": 661, + "output": 662, + "interpolation": "LINEAR" + }, { + "input": 663, + "output": 664, + "interpolation": "LINEAR" + }, { + "input": 665, + "output": 666, + "interpolation": "LINEAR" + }, { + "input": 667, + "output": 668, + "interpolation": "LINEAR" + }, { + "input": 669, + "output": 670, + "interpolation": "LINEAR" + }, { + "input": 671, + "output": 672, + "interpolation": "LINEAR" + }, { + "input": 673, + "output": 674, + "interpolation": "LINEAR" + }, { + "input": 675, + "output": 676, + "interpolation": "LINEAR" + }, { + "input": 677, + "output": 678, + "interpolation": "LINEAR" + }, { + "input": 679, + "output": 680, + "interpolation": "LINEAR" + }, { + "input": 681, + "output": 682, + "interpolation": "LINEAR" + }, { + "input": 683, + "output": 684, + "interpolation": "LINEAR" + }, { + "input": 685, + "output": 686, + "interpolation": "LINEAR" + }, { + "input": 687, + "output": 688, + "interpolation": "LINEAR" + }, { + "input": 689, + "output": 690, + "interpolation": "LINEAR" + }, { + "input": 691, + "output": 692, + "interpolation": "LINEAR" + }, { + "input": 693, + "output": 694, + "interpolation": "LINEAR" + }, { + "input": 695, + "output": 696, + "interpolation": "LINEAR" + }, { + "input": 697, + "output": 698, + "interpolation": "LINEAR" + }, { + "input": 699, + "output": 700, + "interpolation": "LINEAR" + }, { + "input": 701, + "output": 702, + "interpolation": "LINEAR" + }, { + "input": 703, + "output": 704, + "interpolation": "LINEAR" + }, { + "input": 705, + "output": 706, + "interpolation": "LINEAR" + }, { + "input": 707, + "output": 708, + "interpolation": "LINEAR" + }, { + "input": 709, + "output": 710, + "interpolation": "LINEAR" + }, { + "input": 711, + "output": 712, + "interpolation": "LINEAR" + }, { + "input": 713, + "output": 714, + "interpolation": "LINEAR" + }, { + "input": 715, + "output": 716, + "interpolation": "LINEAR" + }, { + "input": 717, + "output": 718, + "interpolation": "LINEAR" + }, { + "input": 719, + "output": 720, + "interpolation": "LINEAR" + }, { + "input": 721, + "output": 722, + "interpolation": "LINEAR" + }, { + "input": 723, + "output": 724, + "interpolation": "LINEAR" + }, { + "input": 725, + "output": 726, + "interpolation": "LINEAR" + }, { + "input": 727, + "output": 728, + "interpolation": "LINEAR" + }, { + "input": 729, + "output": 730, + "interpolation": "LINEAR" + }, { + "input": 731, + "output": 732, + "interpolation": "LINEAR" + }, { + "input": 733, + "output": 734, + "interpolation": "LINEAR" + }, { + "input": 735, + "output": 736, + "interpolation": "LINEAR" + }, { + "input": 737, + "output": 738, + "interpolation": "LINEAR" + }, { + "input": 739, + "output": 740, + "interpolation": "LINEAR" + }, { + "input": 741, + "output": 742, + "interpolation": "LINEAR" + }, { + "input": 743, + "output": 744, + "interpolation": "LINEAR" + }, { + "input": 745, + "output": 746, + "interpolation": "LINEAR" + }, { + "input": 747, + "output": 748, + "interpolation": "LINEAR" + }, { + "input": 749, + "output": 750, + "interpolation": "LINEAR" + }, { + "input": 751, + "output": 752, + "interpolation": "LINEAR" + }, { + "input": 753, + "output": 754, + "interpolation": "LINEAR" + }, { + "input": 755, + "output": 756, + "interpolation": "LINEAR" + }, { + "input": 757, + "output": 758, + "interpolation": "LINEAR" + }, { + "input": 759, + "output": 760, + "interpolation": "LINEAR" + }, { + "input": 761, + "output": 762, + "interpolation": "LINEAR" + }, { + "input": 763, + "output": 764, + "interpolation": "LINEAR" + }, { + "input": 765, + "output": 766, + "interpolation": "LINEAR" + }, { + "input": 767, + "output": 768, + "interpolation": "LINEAR" + }, { + "input": 769, + "output": 770, + "interpolation": "LINEAR" + }, { + "input": 771, + "output": 772, + "interpolation": "LINEAR" + }, { + "input": 773, + "output": 774, + "interpolation": "LINEAR" + }, { + "input": 775, + "output": 776, + "interpolation": "LINEAR" + }, { + "input": 777, + "output": 778, + "interpolation": "LINEAR" + }, { + "input": 779, + "output": 780, + "interpolation": "LINEAR" + }, { + "input": 781, + "output": 782, + "interpolation": "LINEAR" + }, { + "input": 783, + "output": 784, + "interpolation": "LINEAR" + }, { + "input": 785, + "output": 786, + "interpolation": "LINEAR" + }, { + "input": 787, + "output": 788, + "interpolation": "LINEAR" + }, { + "input": 789, + "output": 790, + "interpolation": "LINEAR" + }, { + "input": 791, + "output": 792, + "interpolation": "LINEAR" + }, { + "input": 793, + "output": 794, + "interpolation": "LINEAR" + }, { + "input": 795, + "output": 796, + "interpolation": "LINEAR" + }, { + "input": 797, + "output": 798, + "interpolation": "LINEAR" + }, { + "input": 799, + "output": 800, + "interpolation": "LINEAR" + }, { + "input": 801, + "output": 802, + "interpolation": "LINEAR" + }, { + "input": 803, + "output": 804, + "interpolation": "LINEAR" + }, { + "input": 805, + "output": 806, + "interpolation": "LINEAR" + }, { + "input": 807, + "output": 808, + "interpolation": "LINEAR" + }, { + "input": 809, + "output": 810, + "interpolation": "LINEAR" + }, { + "input": 811, + "output": 812, + "interpolation": "LINEAR" + }, { + "input": 813, + "output": 814, + "interpolation": "LINEAR" + }, { + "input": 815, + "output": 816, + "interpolation": "LINEAR" + }, { + "input": 817, + "output": 818, + "interpolation": "LINEAR" + }, { + "input": 819, + "output": 820, + "interpolation": "LINEAR" + }, { + "input": 821, + "output": 822, + "interpolation": "LINEAR" + }, { + "input": 823, + "output": 824, + "interpolation": "LINEAR" + }, { + "input": 825, + "output": 826, + "interpolation": "LINEAR" + }, { + "input": 827, + "output": 828, + "interpolation": "LINEAR" + }, { + "input": 829, + "output": 830, + "interpolation": "LINEAR" + }, { + "input": 831, + "output": 832, + "interpolation": "LINEAR" + }, { + "input": 833, + "output": 834, + "interpolation": "LINEAR" + }, { + "input": 835, + "output": 836, + "interpolation": "LINEAR" + }, { + "input": 837, + "output": 838, + "interpolation": "LINEAR" + }, { + "input": 839, + "output": 840, + "interpolation": "LINEAR" + }, { + "input": 841, + "output": 842, + "interpolation": "LINEAR" + }, { + "input": 843, + "output": 844, + "interpolation": "LINEAR" + }, { + "input": 845, + "output": 846, + "interpolation": "LINEAR" + }, { + "input": 847, + "output": 848, + "interpolation": "LINEAR" + }, { + "input": 849, + "output": 850, + "interpolation": "LINEAR" + }, { + "input": 851, + "output": 852, + "interpolation": "LINEAR" + }, { + "input": 853, + "output": 854, + "interpolation": "LINEAR" + }, { + "input": 855, + "output": 856, + "interpolation": "LINEAR" + }, { + "input": 857, + "output": 858, + "interpolation": "LINEAR" + }, { + "input": 859, + "output": 860, + "interpolation": "LINEAR" + }, { + "input": 861, + "output": 862, + "interpolation": "LINEAR" + }, { + "input": 863, + "output": 864, + "interpolation": "LINEAR" + }, { + "input": 865, + "output": 866, + "interpolation": "LINEAR" + }, { + "input": 867, + "output": 868, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 290, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 290, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 290, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 291, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 291, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 291, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 292, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 292, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 292, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 293, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 293, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 293, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 294, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 294, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 294, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 297, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 297, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 297, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 298, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 298, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 298, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 301, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 301, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 301, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 302, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 302, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 302, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 343, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 343, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 343, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 345, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 345, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 345, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 346, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 346, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 346, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 347, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 347, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 347, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 351, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 351, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 351, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 317, + "path": "rotation" + } + }, { + "sampler": 43, + "target": { + "node": 309, + "path": "translation" + } + }, { + "sampler": 44, + "target": { + "node": 309, + "path": "rotation" + } + }, { + "sampler": 45, + "target": { + "node": 329, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 323, + "path": "translation" + } + }, { + "sampler": 47, + "target": { + "node": 323, + "path": "rotation" + } + }, { + "sampler": 48, + "target": { + "node": 331, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 325, + "path": "translation" + } + }, { + "sampler": 50, + "target": { + "node": 325, + "path": "rotation" + } + }, { + "sampler": 51, + "target": { + "node": 333, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 327, + "path": "translation" + } + }, { + "sampler": 53, + "target": { + "node": 327, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 869, + "output": 870, + "interpolation": "LINEAR" + }, { + "input": 871, + "output": 872, + "interpolation": "LINEAR" + }, { + "input": 873, + "output": 874, + "interpolation": "LINEAR" + }, { + "input": 875, + "output": 876, + "interpolation": "LINEAR" + }, { + "input": 877, + "output": 878, + "interpolation": "LINEAR" + }, { + "input": 879, + "output": 880, + "interpolation": "LINEAR" + }, { + "input": 881, + "output": 882, + "interpolation": "LINEAR" + }, { + "input": 883, + "output": 884, + "interpolation": "LINEAR" + }, { + "input": 885, + "output": 886, + "interpolation": "LINEAR" + }, { + "input": 887, + "output": 888, + "interpolation": "LINEAR" + }, { + "input": 889, + "output": 890, + "interpolation": "LINEAR" + }, { + "input": 891, + "output": 892, + "interpolation": "LINEAR" + }, { + "input": 893, + "output": 894, + "interpolation": "LINEAR" + }, { + "input": 895, + "output": 896, + "interpolation": "LINEAR" + }, { + "input": 897, + "output": 898, + "interpolation": "LINEAR" + }, { + "input": 899, + "output": 900, + "interpolation": "LINEAR" + }, { + "input": 901, + "output": 902, + "interpolation": "LINEAR" + }, { + "input": 903, + "output": 904, + "interpolation": "LINEAR" + }, { + "input": 905, + "output": 906, + "interpolation": "LINEAR" + }, { + "input": 907, + "output": 908, + "interpolation": "LINEAR" + }, { + "input": 909, + "output": 910, + "interpolation": "LINEAR" + }, { + "input": 911, + "output": 912, + "interpolation": "LINEAR" + }, { + "input": 913, + "output": 914, + "interpolation": "LINEAR" + }, { + "input": 915, + "output": 916, + "interpolation": "LINEAR" + }, { + "input": 917, + "output": 918, + "interpolation": "LINEAR" + }, { + "input": 919, + "output": 920, + "interpolation": "LINEAR" + }, { + "input": 921, + "output": 922, + "interpolation": "LINEAR" + }, { + "input": 923, + "output": 924, + "interpolation": "LINEAR" + }, { + "input": 925, + "output": 926, + "interpolation": "LINEAR" + }, { + "input": 927, + "output": 928, + "interpolation": "LINEAR" + }, { + "input": 929, + "output": 930, + "interpolation": "LINEAR" + }, { + "input": 931, + "output": 932, + "interpolation": "LINEAR" + }, { + "input": 933, + "output": 934, + "interpolation": "LINEAR" + }, { + "input": 935, + "output": 936, + "interpolation": "LINEAR" + }, { + "input": 937, + "output": 938, + "interpolation": "LINEAR" + }, { + "input": 939, + "output": 940, + "interpolation": "LINEAR" + }, { + "input": 941, + "output": 942, + "interpolation": "LINEAR" + }, { + "input": 943, + "output": 944, + "interpolation": "LINEAR" + }, { + "input": 945, + "output": 946, + "interpolation": "LINEAR" + }, { + "input": 947, + "output": 948, + "interpolation": "LINEAR" + }, { + "input": 949, + "output": 950, + "interpolation": "LINEAR" + }, { + "input": 951, + "output": 952, + "interpolation": "LINEAR" + }, { + "input": 953, + "output": 954, + "interpolation": "LINEAR" + }, { + "input": 955, + "output": 956, + "interpolation": "LINEAR" + }, { + "input": 957, + "output": 958, + "interpolation": "LINEAR" + }, { + "input": 959, + "output": 960, + "interpolation": "LINEAR" + }, { + "input": 961, + "output": 962, + "interpolation": "LINEAR" + }, { + "input": 963, + "output": 964, + "interpolation": "LINEAR" + }, { + "input": 965, + "output": 966, + "interpolation": "LINEAR" + }, { + "input": 967, + "output": 968, + "interpolation": "LINEAR" + }, { + "input": 969, + "output": 970, + "interpolation": "LINEAR" + }, { + "input": 971, + "output": 972, + "interpolation": "LINEAR" + }, { + "input": 973, + "output": 974, + "interpolation": "LINEAR" + }, { + "input": 975, + "output": 976, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 373, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 373, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 373, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 376, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 376, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 376, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 977, + "output": 978, + "interpolation": "LINEAR" + }, { + "input": 979, + "output": 980, + "interpolation": "LINEAR" + }, { + "input": 981, + "output": 982, + "interpolation": "LINEAR" + }, { + "input": 983, + "output": 984, + "interpolation": "LINEAR" + }, { + "input": 985, + "output": 986, + "interpolation": "LINEAR" + }, { + "input": 987, + "output": 988, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_2", + "channels": [ + { + "sampler": 0, + "target": { + "node": 268, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 268, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 268, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 989, + "output": 990, + "interpolation": "LINEAR" + }, { + "input": 991, + "output": 992, + "interpolation": "LINEAR" + }, { + "input": 993, + "output": 994, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_2_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 271, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 271, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 271, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 995, + "output": 996, + "interpolation": "LINEAR" + }, { + "input": 997, + "output": 998, + "interpolation": "LINEAR" + }, { + "input": 999, + "output": 1000, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 311, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 311, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 311, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 312, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 312, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 312, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 349, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 349, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 349, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 314, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 314, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 314, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1001, + "output": 1002, + "interpolation": "LINEAR" + }, { + "input": 1003, + "output": 1004, + "interpolation": "LINEAR" + }, { + "input": 1005, + "output": 1006, + "interpolation": "LINEAR" + }, { + "input": 1007, + "output": 1008, + "interpolation": "LINEAR" + }, { + "input": 1009, + "output": 1010, + "interpolation": "LINEAR" + }, { + "input": 1011, + "output": 1012, + "interpolation": "LINEAR" + }, { + "input": 1013, + "output": 1014, + "interpolation": "LINEAR" + }, { + "input": 1015, + "output": 1016, + "interpolation": "LINEAR" + }, { + "input": 1017, + "output": 1018, + "interpolation": "LINEAR" + }, { + "input": 1019, + "output": 1020, + "interpolation": "LINEAR" + }, { + "input": 1021, + "output": 1022, + "interpolation": "LINEAR" + }, { + "input": 1023, + "output": 1024, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 79, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 79, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 79, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 80, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 80, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 80, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 82, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 82, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 82, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 77, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 77, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 77, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1025, + "output": 1026, + "interpolation": "LINEAR" + }, { + "input": 1027, + "output": 1028, + "interpolation": "LINEAR" + }, { + "input": 1029, + "output": 1030, + "interpolation": "LINEAR" + }, { + "input": 1031, + "output": 1032, + "interpolation": "LINEAR" + }, { + "input": 1033, + "output": 1034, + "interpolation": "LINEAR" + }, { + "input": 1035, + "output": 1036, + "interpolation": "LINEAR" + }, { + "input": 1037, + "output": 1038, + "interpolation": "LINEAR" + }, { + "input": 1039, + "output": 1040, + "interpolation": "LINEAR" + }, { + "input": 1041, + "output": 1042, + "interpolation": "LINEAR" + }, { + "input": 1043, + "output": 1044, + "interpolation": "LINEAR" + }, { + "input": 1045, + "output": 1046, + "interpolation": "LINEAR" + }, { + "input": 1047, + "output": 1048, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_cargo", + "channels": [ + { + "sampler": 0, + "target": { + "node": 435, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 441, + "path": "translation" + } + }, { + "sampler": 2, + "target": { + "node": 441, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 441, + "path": "scale" + } + }, { + "sampler": 4, + "target": { + "node": 438, + "path": "translation" + } + }, { + "sampler": 5, + "target": { + "node": 438, + "path": "rotation" + } + }, { + "sampler": 6, + "target": { + "node": 438, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1049, + "output": 1050, + "interpolation": "LINEAR" + }, { + "input": 1051, + "output": 1052, + "interpolation": "LINEAR" + }, { + "input": 1053, + "output": 1054, + "interpolation": "LINEAR" + }, { + "input": 1055, + "output": 1056, + "interpolation": "LINEAR" + }, { + "input": 1057, + "output": 1058, + "interpolation": "LINEAR" + }, { + "input": 1059, + "output": 1060, + "interpolation": "LINEAR" + }, { + "input": 1061, + "output": 1062, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_passenger", + "channels": [ + { + "sampler": 0, + "target": { + "node": 445, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 451, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1063, + "output": 1064, + "interpolation": "LINEAR" + }, { + "input": 1065, + "output": 1066, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_rear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 432, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 427, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 1067, + "output": 1068, + "interpolation": "LINEAR" + }, { + "input": 1069, + "output": 1070, + "interpolation": "LINEAR" + } + ] + }, { + "name": "HANDLING_Wipers", + "channels": [ + { + "sampler": 0, + "target": { + "node": 454, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 455, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 456, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 457, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1071, + "output": 1072, + "interpolation": "LINEAR" + }, { + "input": 1073, + "output": 1074, + "interpolation": "LINEAR" + }, { + "input": 1075, + "output": 1076, + "interpolation": "LINEAR" + }, { + "input": 1077, + "output": 1078, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 90, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 90, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 90, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 89, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 89, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 89, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 71, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 71, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 71, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 52, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 52, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 52, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 48, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 48, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 48, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1079, + "output": 1080, + "interpolation": "LINEAR" + }, { + "input": 1081, + "output": 1082, + "interpolation": "LINEAR" + }, { + "input": 1083, + "output": 1084, + "interpolation": "LINEAR" + }, { + "input": 1085, + "output": 1086, + "interpolation": "LINEAR" + }, { + "input": 1087, + "output": 1088, + "interpolation": "LINEAR" + }, { + "input": 1089, + "output": 1090, + "interpolation": "LINEAR" + }, { + "input": 1091, + "output": 1092, + "interpolation": "LINEAR" + }, { + "input": 1093, + "output": 1094, + "interpolation": "LINEAR" + }, { + "input": 1095, + "output": 1096, + "interpolation": "LINEAR" + }, { + "input": 1097, + "output": 1098, + "interpolation": "LINEAR" + }, { + "input": 1099, + "output": 1100, + "interpolation": "LINEAR" + }, { + "input": 1101, + "output": 1102, + "interpolation": "LINEAR" + }, { + "input": 1103, + "output": 1104, + "interpolation": "LINEAR" + }, { + "input": 1105, + "output": 1106, + "interpolation": "LINEAR" + }, { + "input": 1107, + "output": 1108, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 279, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 279, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 279, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 353, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 353, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 353, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 348, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 348, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 348, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 344, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 344, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 344, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 342, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 342, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 342, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1109, + "output": 1110, + "interpolation": "LINEAR" + }, { + "input": 1111, + "output": 1112, + "interpolation": "LINEAR" + }, { + "input": 1113, + "output": 1114, + "interpolation": "LINEAR" + }, { + "input": 1115, + "output": 1116, + "interpolation": "LINEAR" + }, { + "input": 1117, + "output": 1118, + "interpolation": "LINEAR" + }, { + "input": 1119, + "output": 1120, + "interpolation": "LINEAR" + }, { + "input": 1121, + "output": 1122, + "interpolation": "LINEAR" + }, { + "input": 1123, + "output": 1124, + "interpolation": "LINEAR" + }, { + "input": 1125, + "output": 1126, + "interpolation": "LINEAR" + }, { + "input": 1127, + "output": 1128, + "interpolation": "LINEAR" + }, { + "input": 1129, + "output": 1130, + "interpolation": "LINEAR" + }, { + "input": 1131, + "output": 1132, + "interpolation": "LINEAR" + }, { + "input": 1133, + "output": 1134, + "interpolation": "LINEAR" + }, { + "input": 1135, + "output": 1136, + "interpolation": "LINEAR" + }, { + "input": 1137, + "output": 1138, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Rudder_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 496, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 496, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3255, + "output": 3256, + "interpolation": "LINEAR" + }, { + "input": 3255, + "output": 3257, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_Left_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 497, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 497, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3258, + "output": 3259, + "interpolation": "LINEAR" + }, { + "input": 3258, + "output": 3260, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_right_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 498, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 498, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3258, + "output": 3261, + "interpolation": "LINEAR" + }, { + "input": 3258, + "output": 3262, + "interpolation": "LINEAR" + } + ] + }, { + "name": "DoorB_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 499, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 3255, + "output": 3263, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_left_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 501, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3258, + "output": 3264, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_right_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 502, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3258, + "output": 3265, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Cargo_Door_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 504, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 504, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 3255, + "output": 3266, + "interpolation": "LINEAR" + }, { + "input": 3255, + "output": 3267, + "interpolation": "LINEAR" + } + ] + } + ], + "asset": { + "generator": "babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344", + "version": "2.0", + "extensions": { + "ASOBO_asset_optimized": { + "BoundingBoxMax": [ + 257.17132568359375, 504.9559326171875, 438.654541015625 + ], + "BoundingBoxMin": [ + -30.12008285522461, -523.4412841796875, -365.8451232910156 + ], + "MajorVersion": 4, + "MinorVersion": 4, + "UseCheckerboardMaterialForMissingTextures": true + }, + "ASOBO_normal_map_convention": { + "tangent_space_convention": "DirectX" + } + } + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 12864, + "name": "bufferViewFloatMat4" + }, { + "buffer": 0, + "byteLength": 335052, + "byteOffset": 12864, + "name": "bufferViewAnimationFloatScalar" + }, { + "buffer": 0, + "byteLength": 649848, + "byteOffset": 347916, + "name": "bufferViewAnimationFloatVec3" + }, { + "buffer": 0, + "byteLength": 473744, + "byteOffset": 997764, + "name": "bufferViewAnimationFloatVec4" + }, { + "buffer": 0, + "byteLength": 18931176, + "byteStride": 36, + "byteOffset": 1471508, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 3123288, + "byteOffset": 20402684, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 7019712, + "byteStride": 48, + "byteOffset": 23525972, + "target": 34962, + "name": "BufferViewVertex4Blend" + }, { + "buffer": 0, + "byteLength": 15136, + "byteStride": 44, + "byteOffset": 30545684, + "target": 34962, + "name": "BufferViewVertex1Blend" + }, { + "buffer": 0, + "byteLength": 159636, + "byteOffset": 30560820, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 845424, + "byteStride": 36, + "byteOffset": 30720456, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 324, + "byteOffset": 31565880 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 31566204 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 31567176 + }, { + "buffer": 0, + "byteLength": 644, + "byteOffset": 31568472 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 31569116 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 31571048 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 31573624 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 31575556 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 31578132 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 31579104 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 31581680 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 31584256 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 31585228 + } + ], + "extensionsRequired": ["MSFT_texture_dds"], + "materials": [ + { + "name": "WINGS", + "normalTexture": { + "index": 2 + }, + "occlusionTexture": { + "index": 1 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 0 + }, + "metallicRoughnessTexture": { + "index": 1 + } + } + }, { + "name": "DECALS1", + "alphaMode": "BLEND", + "normalTexture": { + "index": 5, + "scale": 0.5 + }, + "occlusionTexture": { + "index": 4 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 3 + }, + "metallicRoughnessTexture": { + "index": 4 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 16 + } + } + }, { + "name": "UNDERCARRIAGE", + "normalTexture": { + "index": 8 + }, + "occlusionTexture": { + "index": 7 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 6 + }, + "metallicRoughnessTexture": { + "index": 7 + } + } + }, { + "name": "TAIL", + "normalTexture": { + "index": 11 + }, + "occlusionTexture": { + "index": 10 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 9 + }, + "metallicRoughnessTexture": { + "index": 10 + } + } + }, { + "name": "Livery_KLM", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 12 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "LIVERY1", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 13 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "FUSELAGE1", + "normalTexture": { + "index": 16 + }, + "occlusionTexture": { + "index": 15 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 14 + }, + "metallicRoughnessTexture": { + "index": 15 + } + } + }, { + "name": "Livery_KLM2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 17 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "WINDSHIELD", + "alphaMode": "BLEND", + "occlusionTexture": { + "index": 18 + }, + "emissiveTexture": { + "index": 19 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.623529434, 0.623529434, 0.623529434, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0, + "metallicRoughnessTexture": { + "index": 18 + } + }, + "extensions": { + "ASOBO_material_detail_map": { + "UVScale": 2, + "detailColorTexture": { + "index": 20 + }, + "detailNormalTexture": { + "index": 21 + } + } + }, + "extras": { + "ASOBO_material_code": "Windshield" + } + }, { + "name": "LIGHTS", + "occlusionTexture": { + "index": 22 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.9, 0.9, 0.9, 1 + ], + "metallicRoughnessTexture": { + "index": 22 + } + } + }, { + "name": "FROST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 25, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 24 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 23 + }, + "metallicRoughnessTexture": { + "index": 24 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "FROST_BLAST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 28, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 27 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 26 + }, + "metallicRoughnessTexture": { + "index": 27 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "REARGEAR", + "normalTexture": { + "index": 31 + }, + "occlusionTexture": { + "index": 30 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 29 + }, + "metallicRoughnessTexture": { + "index": 30 + } + } + }, { + "name": "TIRE", + "normalTexture": { + "index": 34 + }, + "occlusionTexture": { + "index": 33 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 32 + }, + "metallicRoughnessTexture": { + "index": 33 + } + } + }, { + "name": "TIREBLUR", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.5, + "baseColorTexture": { + "index": 35 + } + } + }, { + "name": "DECALS2", + "alphaMode": "BLEND", + "normalTexture": { + "index": 37 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.3, + "baseColorTexture": { + "index": 36 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 15 + } + } + }, { + "name": "ENGSTILL", + "occlusionTexture": { + "index": 39 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 38 + }, + "metallicRoughnessTexture": { + "index": 39 + } + } + }, { + "name": "ENGSLOW", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 40 + } + } + }, { + "name": "ENGBLUR", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 41 + } + } + }, { + "name": "ENGINE", + "normalTexture": { + "index": 44 + }, + "occlusionTexture": { + "index": 43 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 42 + }, + "metallicRoughnessTexture": { + "index": 43 + } + } + }, { + "name": "Generic_LOD5", + "occlusionTexture": { + "index": 46 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 45 + }, + "metallicRoughnessTexture": { + "index": 46 + } + } + }, { + "name": "FUSELAGE2", + "normalTexture": { + "index": 49 + }, + "occlusionTexture": { + "index": 48 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 47 + }, + "metallicRoughnessTexture": { + "index": 48 + } + } + }, { + "name": "FRONTGEAR", + "normalTexture": { + "index": 52 + }, + "occlusionTexture": { + "index": 51 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 50 + }, + "metallicRoughnessTexture": { + "index": 51 + } + } + }, { + "name": "LIVERY1_3", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 53 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 5 + } + } + }, { + "name": "HANDLE", + "normalTexture": { + "index": 56 + }, + "occlusionTexture": { + "index": 55 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 54 + }, + "metallicRoughnessTexture": { + "index": 55 + } + } + }, { + "name": "GLASS", + "alphaCutoff": 0.01, + "alphaMode": "MASK", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.66906476, 0.66906476, 0.66906476, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + } + }, { + "name": "HUBLOT", + "normalTexture": { + "index": 59 + }, + "occlusionTexture": { + "index": 58 + }, + "emissiveTexture": { + "index": 60 + }, + "emissiveFactor": [ + 0.48201438784599304, 0.48171502351760864, 0.4404016137123108 + ], + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 57 + }, + "metallicRoughnessTexture": { + "index": 58 + } + }, + "extensions": { + "ASOBO_material_draw_order": { + "drawOrderOffset": 11 + } + }, + "extras": { + "ASOBO_material_code": "Porthole" + } + }, { + "name": "Cargo_Door", + "normalTexture": { + "index": 63 + }, + "occlusionTexture": { + "index": 62 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 61 + }, + "metallicRoughnessTexture": { + "index": 62 + } + } + }, { + "name": "Passenger_Door", + "normalTexture": { + "index": 66 + }, + "occlusionTexture": { + "index": 65 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 64 + }, + "metallicRoughnessTexture": { + "index": 65 + } + } + }, { + "name": "rivets", + "alphaMode": "BLEND", + "normalTexture": { + "index": 69 + }, + "occlusionTexture": { + "index": 68 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 67 + }, + "metallicRoughnessTexture": { + "index": 68 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": {} + } + }, { + "name": "Cargo_Soute", + "normalTexture": { + "index": 72 + }, + "occlusionTexture": { + "index": 71 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 70 + }, + "metallicRoughnessTexture": { + "index": 71 + } + } + }, { + "name": "RegistrationNumber", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.8, 0.8, 0.8, 1 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 8 + } + } + }, { + "name": "RegistrationNumber2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "LIVERYDECALS", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 73 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "ENGINE0", + "normalTexture": { + "index": 44 + }, + "occlusionTexture": { + "index": 43 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 74 + }, + "metallicRoughnessTexture": { + "index": 43 + } + } + } + ], + "meshes": [ + { + "primitives": [ + { + "attributes": { + "COLOR_0": 2735, + "JOINTS_0": 2733, + "NORMAL": 2730, + "POSITION": 2728, + "TANGENT": 2729, + "TEXCOORD_0": 2731, + "TEXCOORD_1": 2732, + "WEIGHTS_0": 2734 + }, + "indices": 2736, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 672, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2744, + "JOINTS_0": 2742, + "NORMAL": 2739, + "POSITION": 2737, + "TANGENT": 2738, + "TEXCOORD_0": 2740, + "TEXCOORD_1": 2741, + "WEIGHTS_0": 2743 + }, + "indices": 2745, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 472, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Aileron_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2753, + "JOINTS_0": 2751, + "NORMAL": 2748, + "POSITION": 2746, + "TANGENT": 2747, + "TEXCOORD_0": 2749, + "TEXCOORD_1": 2750, + "WEIGHTS_0": 2752 + }, + "indices": 2754, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1478, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2762, + "JOINTS_0": 2760, + "NORMAL": 2757, + "POSITION": 2755, + "TANGENT": 2756, + "TEXCOORD_0": 2758, + "TEXCOORD_1": 2759, + "WEIGHTS_0": 2761 + }, + "indices": 2763, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1866, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2771, + "JOINTS_0": 2769, + "NORMAL": 2766, + "POSITION": 2764, + "TANGENT": 2765, + "TEXCOORD_0": 2767, + "TEXCOORD_1": 2768, + "WEIGHTS_0": 2770 + }, + "indices": 2772, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1226, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2780, + "JOINTS_0": 2778, + "NORMAL": 2775, + "POSITION": 2773, + "TANGENT": 2774, + "TEXCOORD_0": 2776, + "TEXCOORD_1": 2777, + "WEIGHTS_0": 2779 + }, + "indices": 2781, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1628, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2789, + "JOINTS_0": 2787, + "NORMAL": 2784, + "POSITION": 2782, + "TANGENT": 2783, + "TEXCOORD_0": 2785, + "TEXCOORD_1": 2786, + "WEIGHTS_0": 2788 + }, + "indices": 2790, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 892, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_FlapsKrueger_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2798, + "JOINTS_0": 2796, + "NORMAL": 2793, + "POSITION": 2791, + "TANGENT": 2792, + "TEXCOORD_0": 2794, + "TEXCOORD_1": 2795, + "WEIGHTS_0": 2797 + }, + "indices": 2799, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1035, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Undercarriage_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2807, + "JOINTS_0": 2805, + "NORMAL": 2802, + "POSITION": 2800, + "TANGENT": 2801, + "TEXCOORD_0": 2803, + "TEXCOORD_1": 2804, + "WEIGHTS_0": 2806 + }, + "indices": 2808, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 762, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_Details_Spoiler_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1144, + "NORMAL": 1141, + "POSITION": 1139, + "TANGENT": 1140, + "TEXCOORD_0": 1142, + "TEXCOORD_1": 1143 + }, + "indices": 1145, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2064, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Rudder_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1151, + "NORMAL": 1148, + "POSITION": 1146, + "TANGENT": 1147, + "TEXCOORD_0": 1149, + "TEXCOORD_1": 1150 + }, + "indices": 1152, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 157, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_Rudder" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1158, + "NORMAL": 1155, + "POSITION": 1153, + "TANGENT": 1154, + "TEXCOORD_0": 1156, + "TEXCOORD_1": 1157 + }, + "indices": 1159, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Right02_Livery_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1165, + "NORMAL": 1162, + "POSITION": 1160, + "TANGENT": 1161, + "TEXCOORD_0": 1163, + "TEXCOORD_1": 1164 + }, + "indices": 1166, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1172, + "NORMAL": 1169, + "POSITION": 1167, + "TANGENT": 1168, + "TEXCOORD_0": 1170, + "TEXCOORD_1": 1171 + }, + "indices": 1173, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_RGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1179, + "NORMAL": 1176, + "POSITION": 1174, + "TANGENT": 1175, + "TEXCOORD_0": 1177, + "TEXCOORD_1": 1178 + }, + "indices": 1180, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Right01_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1186, + "NORMAL": 1183, + "POSITION": 1181, + "TANGENT": 1182, + "TEXCOORD_0": 1184, + "TEXCOORD_1": 1185 + }, + "indices": 1187, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_3_hydraulic01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1193, + "NORMAL": 1190, + "POSITION": 1188, + "TANGENT": 1189, + "TEXCOORD_0": 1191, + "TEXCOORD_1": 1192 + }, + "indices": 1194, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1686, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1200, + "NORMAL": 1197, + "POSITION": 1195, + "TANGENT": 1196, + "TEXCOORD_0": 1198, + "TEXCOORD_1": 1199 + }, + "indices": 1201, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1200, + "NORMAL": 1197, + "POSITION": 1195, + "TANGENT": 1196, + "TEXCOORD_0": 1198, + "TEXCOORD_1": 1199 + }, + "indices": 1201, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 3780, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1207, + "NORMAL": 1204, + "POSITION": 1202, + "TANGENT": 1203, + "TEXCOORD_0": 1205, + "TEXCOORD_1": 1206 + }, + "indices": 1208, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_LGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1214, + "NORMAL": 1211, + "POSITION": 1209, + "TANGENT": 1210, + "TEXCOORD_0": 1212, + "TEXCOORD_1": 1213 + }, + "indices": 1215, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Left01_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1221, + "NORMAL": 1218, + "POSITION": 1216, + "TANGENT": 1217, + "TEXCOORD_0": 1219, + "TEXCOORD_1": 1220 + }, + "indices": 1222, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_03_hydraulic01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1228, + "NORMAL": 1225, + "POSITION": 1223, + "TANGENT": 1224, + "TEXCOORD_0": 1226, + "TEXCOORD_1": 1227 + }, + "indices": 1229, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1686, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_C_Door_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1235, + "NORMAL": 1232, + "POSITION": 1230, + "TANGENT": 1231, + "TEXCOORD_0": 1233, + "TEXCOORD_1": 1234 + }, + "indices": 1236, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1682, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1242, + "NORMAL": 1239, + "POSITION": 1237, + "TANGENT": 1238, + "TEXCOORD_0": 1240, + "TEXCOORD_1": 1241 + }, + "indices": 1243, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1098, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1242, + "NORMAL": 1239, + "POSITION": 1237, + "TANGENT": 1238, + "TEXCOORD_0": 1240, + "TEXCOORD_1": 1241 + }, + "indices": 1243, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1320, + "StartIndex": 3294, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1242, + "NORMAL": 1239, + "POSITION": 1237, + "TANGENT": 1238, + "TEXCOORD_0": 1240, + "TEXCOORD_1": 1241 + }, + "indices": 1243, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 166, + "StartIndex": 7254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Trim_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1249, + "NORMAL": 1246, + "POSITION": 1244, + "TANGENT": 1245, + "TEXCOORD_0": 1247, + "TEXCOORD_1": 1248 + }, + "indices": 1250, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1249, + "NORMAL": 1246, + "POSITION": 1244, + "TANGENT": 1245, + "TEXCOORD_0": 1247, + "TEXCOORD_1": 1248 + }, + "indices": 1250, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1256, + "NORMAL": 1253, + "POSITION": 1251, + "TANGENT": 1252, + "TEXCOORD_0": 1254, + "TEXCOORD_1": 1255 + }, + "indices": 1257, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1256, + "NORMAL": 1253, + "POSITION": 1251, + "TANGENT": 1252, + "TEXCOORD_0": 1254, + "TEXCOORD_1": 1255 + }, + "indices": 1257, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1263, + "NORMAL": 1260, + "POSITION": 1258, + "TANGENT": 1259, + "TEXCOORD_0": 1261, + "TEXCOORD_1": 1262 + }, + "indices": 1264, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_ElevatorTrimL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1270, + "NORMAL": 1267, + "POSITION": 1265, + "TANGENT": 1266, + "TEXCOORD_0": 1268, + "TEXCOORD_1": 1269 + }, + "indices": 1271, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1277, + "NORMAL": 1274, + "POSITION": 1272, + "TANGENT": 1273, + "TEXCOORD_0": 1275, + "TEXCOORD_1": 1276 + }, + "indices": 1278, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1284, + "NORMAL": 1281, + "POSITION": 1279, + "TANGENT": 1280, + "TEXCOORD_0": 1282, + "TEXCOORD_1": 1283 + }, + "indices": 1285, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1291, + "NORMAL": 1288, + "POSITION": 1286, + "TANGENT": 1287, + "TEXCOORD_0": 1289, + "TEXCOORD_1": 1290 + }, + "indices": 1292, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_19_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1298, + "NORMAL": 1295, + "POSITION": 1293, + "TANGENT": 1294, + "TEXCOORD_0": 1296, + "TEXCOORD_1": 1297 + }, + "indices": 1299, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_11_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1305, + "NORMAL": 1302, + "POSITION": 1300, + "TANGENT": 1301, + "TEXCOORD_0": 1303, + "TEXCOORD_1": 1304 + }, + "indices": 1306, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_12_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1312, + "NORMAL": 1309, + "POSITION": 1307, + "TANGENT": 1308, + "TEXCOORD_0": 1310, + "TEXCOORD_1": 1311 + }, + "indices": 1313, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_13_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1319, + "NORMAL": 1316, + "POSITION": 1314, + "TANGENT": 1315, + "TEXCOORD_0": 1317, + "TEXCOORD_1": 1318 + }, + "indices": 1320, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_14_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1326, + "NORMAL": 1323, + "POSITION": 1321, + "TANGENT": 1322, + "TEXCOORD_0": 1324, + "TEXCOORD_1": 1325 + }, + "indices": 1327, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_15_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1333, + "NORMAL": 1330, + "POSITION": 1328, + "TANGENT": 1329, + "TEXCOORD_0": 1331, + "TEXCOORD_1": 1332 + }, + "indices": 1334, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_16_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2816, + "JOINTS_0": 2814, + "NORMAL": 2811, + "POSITION": 2809, + "TANGENT": 2810, + "TEXCOORD_0": 2812, + "TEXCOORD_1": 2813, + "WEIGHTS_0": 2815 + }, + "indices": 2817, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1546, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_2_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1340, + "NORMAL": 1337, + "POSITION": 1335, + "TANGENT": 1336, + "TEXCOORD_0": 1338, + "TEXCOORD_1": 1339 + }, + "indices": 1341, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_18_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1347, + "NORMAL": 1344, + "POSITION": 1342, + "TANGENT": 1343, + "TEXCOORD_0": 1345, + "TEXCOORD_1": 1346 + }, + "indices": 1348, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 154, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1354, + "NORMAL": 1351, + "POSITION": 1349, + "TANGENT": 1350, + "TEXCOORD_0": 1352, + "TEXCOORD_1": 1353 + }, + "indices": 1355, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 830, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1354, + "NORMAL": 1351, + "POSITION": 1349, + "TANGENT": 1350, + "TEXCOORD_0": 1352, + "TEXCOORD_1": 1353 + }, + "indices": 1355, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 342, + "StartIndex": 2490, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_1_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1361, + "NORMAL": 1358, + "POSITION": 1356, + "TANGENT": 1357, + "TEXCOORD_0": 1359, + "TEXCOORD_1": 1360 + }, + "indices": 1362, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_07_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1368, + "NORMAL": 1365, + "POSITION": 1363, + "TANGENT": 1364, + "TEXCOORD_0": 1366, + "TEXCOORD_1": 1367 + }, + "indices": 1369, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_08_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1375, + "NORMAL": 1372, + "POSITION": 1370, + "TANGENT": 1371, + "TEXCOORD_0": 1373, + "TEXCOORD_1": 1374 + }, + "indices": 1376, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_09_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1382, + "NORMAL": 1379, + "POSITION": 1377, + "TANGENT": 1378, + "TEXCOORD_0": 1380, + "TEXCOORD_1": 1381 + }, + "indices": 1383, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_10_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1389, + "NORMAL": 1386, + "POSITION": 1384, + "TANGENT": 1385, + "TEXCOORD_0": 1387, + "TEXCOORD_1": 1388 + }, + "indices": 1390, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 384, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1389, + "NORMAL": 1386, + "POSITION": 1384, + "TANGENT": 1385, + "TEXCOORD_0": 1387, + "TEXCOORD_1": 1388 + }, + "indices": 1390, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "StartIndex": 1152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_FlapsKrueger_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1396, + "NORMAL": 1393, + "POSITION": 1391, + "TANGENT": 1392, + "TEXCOORD_0": 1394, + "TEXCOORD_1": 1395 + }, + "indices": 1397, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1403, + "NORMAL": 1400, + "POSITION": 1398, + "TANGENT": 1399, + "TEXCOORD_0": 1401, + "TEXCOORD_1": 1402 + }, + "indices": 1404, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1410, + "NORMAL": 1407, + "POSITION": 1405, + "TANGENT": 1406, + "TEXCOORD_0": 1408, + "TEXCOORD_1": 1409 + }, + "indices": 1411, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1424, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1410, + "NORMAL": 1407, + "POSITION": 1405, + "TANGENT": 1406, + "TEXCOORD_0": 1408, + "TEXCOORD_1": 1409 + }, + "indices": 1411, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2042, + "StartIndex": 4272, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1417, + "NORMAL": 1414, + "POSITION": 1412, + "TANGENT": 1413, + "TEXCOORD_0": 1415, + "TEXCOORD_1": 1416 + }, + "indices": 1418, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 248, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part19_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1424, + "NORMAL": 1421, + "POSITION": 1419, + "TANGENT": 1420, + "TEXCOORD_0": 1422, + "TEXCOORD_1": 1423 + }, + "indices": 1425, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1431, + "NORMAL": 1428, + "POSITION": 1426, + "TANGENT": 1427, + "TEXCOORD_0": 1429, + "TEXCOORD_1": 1430 + }, + "indices": 1432, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 708, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_31_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1438, + "NORMAL": 1435, + "POSITION": 1433, + "TANGENT": 1434, + "TEXCOORD_0": 1436, + "TEXCOORD_1": 1437 + }, + "indices": 1439, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_33_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1445, + "NORMAL": 1442, + "POSITION": 1440, + "TANGENT": 1441, + "TEXCOORD_0": 1443, + "TEXCOORD_1": 1444 + }, + "indices": 1446, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_28_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1452, + "NORMAL": 1449, + "POSITION": 1447, + "TANGENT": 1448, + "TEXCOORD_0": 1450, + "TEXCOORD_1": 1451 + }, + "indices": 1453, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 444, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_27_right001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1459, + "NORMAL": 1456, + "POSITION": 1454, + "TANGENT": 1455, + "TEXCOORD_0": 1457, + "TEXCOORD_1": 1458 + }, + "indices": 1460, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 362, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_29_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1466, + "NORMAL": 1463, + "POSITION": 1461, + "TANGENT": 1462, + "TEXCOORD_0": 1464, + "TEXCOORD_1": 1465 + }, + "indices": 1467, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 818, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_30_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1473, + "NORMAL": 1470, + "POSITION": 1468, + "TANGENT": 1469, + "TEXCOORD_0": 1471, + "TEXCOORD_1": 1472 + }, + "indices": 1474, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 508, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_32_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1480, + "NORMAL": 1477, + "POSITION": 1475, + "TANGENT": 1476, + "TEXCOORD_0": 1478, + "TEXCOORD_1": 1479 + }, + "indices": 1481, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_34_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1487, + "NORMAL": 1484, + "POSITION": 1482, + "TANGENT": 1483, + "TEXCOORD_0": 1485, + "TEXCOORD_1": 1486 + }, + "indices": 1488, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part18_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1494, + "NORMAL": 1491, + "POSITION": 1489, + "TANGENT": 1490, + "TEXCOORD_0": 1492, + "TEXCOORD_1": 1493 + }, + "indices": 1495, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_21_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1501, + "NORMAL": 1498, + "POSITION": 1496, + "TANGENT": 1497, + "TEXCOORD_0": 1499, + "TEXCOORD_1": 1500 + }, + "indices": 1502, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1508, + "NORMAL": 1505, + "POSITION": 1503, + "TANGENT": 1504, + "TEXCOORD_0": 1506, + "TEXCOORD_1": 1507 + }, + "indices": 1509, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_07_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1515, + "NORMAL": 1512, + "POSITION": 1510, + "TANGENT": 1511, + "TEXCOORD_0": 1513, + "TEXCOORD_1": 1514 + }, + "indices": 1516, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 628, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_08_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1522, + "NORMAL": 1519, + "POSITION": 1517, + "TANGENT": 1518, + "TEXCOORD_0": 1520, + "TEXCOORD_1": 1521 + }, + "indices": 1523, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_35_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1529, + "NORMAL": 1526, + "POSITION": 1524, + "TANGENT": 1525, + "TEXCOORD_0": 1527, + "TEXCOORD_1": 1528 + }, + "indices": 1530, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 308, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_36_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1536, + "NORMAL": 1533, + "POSITION": 1531, + "TANGENT": 1532, + "TEXCOORD_0": 1534, + "TEXCOORD_1": 1535 + }, + "indices": 1537, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_37_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1543, + "NORMAL": 1540, + "POSITION": 1538, + "TANGENT": 1539, + "TEXCOORD_0": 1541, + "TEXCOORD_1": 1542 + }, + "indices": 1544, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7640, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_LWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1550, + "NORMAL": 1547, + "POSITION": 1545, + "TANGENT": 1546, + "TEXCOORD_0": 1548, + "TEXCOORD_1": 1549 + }, + "indices": 1551, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_LWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1557, + "NORMAL": 1554, + "POSITION": 1552, + "TANGENT": 1553, + "TEXCOORD_0": 1555, + "TEXCOORD_1": 1556 + }, + "indices": 1558, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7640, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_LWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1564, + "NORMAL": 1561, + "POSITION": 1559, + "TANGENT": 1560, + "TEXCOORD_0": 1562, + "TEXCOORD_1": 1563 + }, + "indices": 1565, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_LWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1571, + "NORMAL": 1568, + "POSITION": 1566, + "TANGENT": 1567, + "TEXCOORD_0": 1569, + "TEXCOORD_1": 1570 + }, + "indices": 1572, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 21798, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_09_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1578, + "NORMAL": 1575, + "POSITION": 1573, + "TANGENT": 1574, + "TEXCOORD_0": 1576, + "TEXCOORD_1": 1577 + }, + "indices": 1579, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1494, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_10_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1585, + "NORMAL": 1582, + "POSITION": 1580, + "TANGENT": 1581, + "TEXCOORD_0": 1583, + "TEXCOORD_1": 1584 + }, + "indices": 1586, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4483, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1585, + "NORMAL": 1582, + "POSITION": 1580, + "TANGENT": 1581, + "TEXCOORD_0": 1583, + "TEXCOORD_1": 1584 + }, + "indices": 1586, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 13449, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_gear_Root_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1592, + "NORMAL": 1589, + "POSITION": 1587, + "TANGENT": 1588, + "TEXCOORD_0": 1590, + "TEXCOORD_1": 1591 + }, + "indices": 1593, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_05_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1599, + "NORMAL": 1596, + "POSITION": 1594, + "TANGENT": 1595, + "TEXCOORD_0": 1597, + "TEXCOORD_1": 1598 + }, + "indices": 1600, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_06_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1606, + "NORMAL": 1603, + "POSITION": 1601, + "TANGENT": 1602, + "TEXCOORD_0": 1604, + "TEXCOORD_1": 1605 + }, + "indices": 1607, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_16_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1613, + "NORMAL": 1610, + "POSITION": 1608, + "TANGENT": 1609, + "TEXCOORD_0": 1611, + "TEXCOORD_1": 1612 + }, + "indices": 1614, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 380, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_15_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1620, + "NORMAL": 1617, + "POSITION": 1615, + "TANGENT": 1616, + "TEXCOORD_0": 1618, + "TEXCOORD_1": 1619 + }, + "indices": 1621, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 345, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1627, + "NORMAL": 1624, + "POSITION": 1622, + "TANGENT": 1623, + "TEXCOORD_0": 1625, + "TEXCOORD_1": 1626 + }, + "indices": 1628, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 404, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door03_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1634, + "NORMAL": 1631, + "POSITION": 1629, + "TANGENT": 1630, + "TEXCOORD_0": 1632, + "TEXCOORD_1": 1633 + }, + "indices": 1635, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 826, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1634, + "NORMAL": 1631, + "POSITION": 1629, + "TANGENT": 1630, + "TEXCOORD_0": 1632, + "TEXCOORD_1": 1633 + }, + "indices": 1635, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "StartIndex": 2478, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1641, + "NORMAL": 1638, + "POSITION": 1636, + "TANGENT": 1637, + "TEXCOORD_0": 1639, + "TEXCOORD_1": 1640 + }, + "indices": 1642, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3458, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1641, + "NORMAL": 1638, + "POSITION": 1636, + "TANGENT": 1637, + "TEXCOORD_0": 1639, + "TEXCOORD_1": 1640 + }, + "indices": 1642, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 20, + "StartIndex": 10374, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_1_still_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1648, + "NORMAL": 1645, + "POSITION": 1643, + "TANGENT": 1644, + "TEXCOORD_0": 1646, + "TEXCOORD_1": 1647 + }, + "indices": 1649, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 300, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1648, + "NORMAL": 1645, + "POSITION": 1643, + "TANGENT": 1644, + "TEXCOORD_0": 1646, + "TEXCOORD_1": 1647 + }, + "indices": 1649, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 900, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_1_slow_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1655, + "NORMAL": 1652, + "POSITION": 1650, + "TANGENT": 1651, + "TEXCOORD_0": 1653, + "TEXCOORD_1": 1654 + }, + "indices": 1656, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 300, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1655, + "NORMAL": 1652, + "POSITION": 1650, + "TANGENT": 1651, + "TEXCOORD_0": 1653, + "TEXCOORD_1": 1654 + }, + "indices": 1656, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 900, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_1_blurred_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1662, + "NORMAL": 1659, + "POSITION": 1657, + "TANGENT": 1658, + "TEXCOORD_0": 1660, + "TEXCOORD_1": 1661 + }, + "indices": 1663, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5265, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1662, + "NORMAL": 1659, + "POSITION": 1657, + "TANGENT": 1658, + "TEXCOORD_0": 1660, + "TEXCOORD_1": 1661 + }, + "indices": 1663, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 15795, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1662, + "NORMAL": 1659, + "POSITION": 1657, + "TANGENT": 1658, + "TEXCOORD_0": 1660, + "TEXCOORD_1": 1661 + }, + "indices": 1663, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 17187, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Duct_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1669, + "NORMAL": 1666, + "POSITION": 1664, + "TANGENT": 1665, + "TEXCOORD_0": 1667, + "TEXCOORD_1": 1668 + }, + "indices": 1670, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1940, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Details04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2825, + "JOINTS_0": 2823, + "NORMAL": 2820, + "POSITION": 2818, + "TANGENT": 2819, + "TEXCOORD_0": 2821, + "TEXCOORD_1": 2822, + "WEIGHTS_0": 2824 + }, + "indices": 2826, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8196, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2834, + "JOINTS_0": 2832, + "NORMAL": 2829, + "POSITION": 2827, + "TANGENT": 2828, + "TEXCOORD_0": 2830, + "TEXCOORD_1": 2831, + "WEIGHTS_0": 2833 + }, + "indices": 2835, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4246, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2843, + "JOINTS_0": 2841, + "NORMAL": 2838, + "POSITION": 2836, + "TANGENT": 2837, + "TEXCOORD_0": 2839, + "TEXCOORD_1": 2840, + "WEIGHTS_0": 2842 + }, + "indices": 2844, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 142, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1676, + "NORMAL": 1673, + "POSITION": 1671, + "TANGENT": 1672, + "TEXCOORD_0": 1674, + "TEXCOORD_1": 1675 + }, + "indices": 1677, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_LEFT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1683, + "NORMAL": 1680, + "POSITION": 1678, + "TANGENT": 1679, + "TEXCOORD_0": 1681, + "TEXCOORD_1": 1682 + }, + "indices": 1684, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1683, + "NORMAL": 1680, + "POSITION": 1678, + "TANGENT": 1679, + "TEXCOORD_0": 1681, + "TEXCOORD_1": 1682 + }, + "indices": 1684, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINEL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1690, + "NORMAL": 1687, + "POSITION": 1685, + "TANGENT": 1686, + "TEXCOORD_0": 1688, + "TEXCOORD_1": 1689 + }, + "indices": 1691, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 32, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_EngA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1697, + "NORMAL": 1694, + "POSITION": 1692, + "TANGENT": 1693, + "TEXCOORD_0": 1695, + "TEXCOORD_1": 1696 + }, + "indices": 1698, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_03_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1704, + "NORMAL": 1701, + "POSITION": 1699, + "TANGENT": 1700, + "TEXCOORD_0": 1702, + "TEXCOORD_1": 1703 + }, + "indices": 1705, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1711, + "NORMAL": 1708, + "POSITION": 1706, + "TANGENT": 1707, + "TEXCOORD_0": 1709, + "TEXCOORD_1": 1710 + }, + "indices": 1712, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1718, + "NORMAL": 1715, + "POSITION": 1713, + "TANGENT": 1714, + "TEXCOORD_0": 1716, + "TEXCOORD_1": 1717 + }, + "indices": 1719, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1725, + "NORMAL": 1722, + "POSITION": 1720, + "TANGENT": 1721, + "TEXCOORD_0": 1723, + "TEXCOORD_1": 1724 + }, + "indices": 1726, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1732, + "NORMAL": 1729, + "POSITION": 1727, + "TANGENT": 1728, + "TEXCOORD_0": 1730, + "TEXCOORD_1": 1731 + }, + "indices": 1733, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 248, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1739, + "NORMAL": 1736, + "POSITION": 1734, + "TANGENT": 1735, + "TEXCOORD_0": 1737, + "TEXCOORD_1": 1738 + }, + "indices": 1740, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1739, + "NORMAL": 1736, + "POSITION": 1734, + "TANGENT": 1735, + "TEXCOORD_0": 1737, + "TEXCOORD_1": 1738 + }, + "indices": 1740, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "StartIndex": 2112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1746, + "NORMAL": 1743, + "POSITION": 1741, + "TANGENT": 1742, + "TEXCOORD_0": 1744, + "TEXCOORD_1": 1745 + }, + "indices": 1747, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 772, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart10_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1753, + "NORMAL": 1750, + "POSITION": 1748, + "TANGENT": 1749, + "TEXCOORD_0": 1751, + "TEXCOORD_1": 1752 + }, + "indices": 1754, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 212, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart11_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1760, + "NORMAL": 1757, + "POSITION": 1755, + "TANGENT": 1756, + "TEXCOORD_0": 1758, + "TEXCOORD_1": 1759 + }, + "indices": 1761, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 772, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart09_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1767, + "NORMAL": 1764, + "POSITION": 1762, + "TANGENT": 1763, + "TEXCOORD_0": 1765, + "TEXCOORD_1": 1766 + }, + "indices": 1768, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 212, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart12_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1774, + "NORMAL": 1771, + "POSITION": 1769, + "TANGENT": 1770, + "TEXCOORD_0": 1772, + "TEXCOORD_1": 1773 + }, + "indices": 1775, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1052, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Gear_Wheel_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1781, + "NORMAL": 1778, + "POSITION": 1776, + "TANGENT": 1777, + "TEXCOORD_0": 1779, + "TEXCOORD_1": 1780 + }, + "indices": 1782, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 952, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart14_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1788, + "NORMAL": 1785, + "POSITION": 1783, + "TANGENT": 1784, + "TEXCOORD_0": 1786, + "TEXCOORD_1": 1787 + }, + "indices": 1789, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4080, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Wheel_Nose_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1795, + "NORMAL": 1792, + "POSITION": 1790, + "TANGENT": 1791, + "TEXCOORD_0": 1793, + "TEXCOORD_1": 1794 + }, + "indices": 1796, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2160, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Wheel_Nose_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1802, + "NORMAL": 1799, + "POSITION": 1797, + "TANGENT": 1798, + "TEXCOORD_0": 1800, + "TEXCOORD_1": 1801 + }, + "indices": 1803, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 758, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart13_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1809, + "NORMAL": 1806, + "POSITION": 1804, + "TANGENT": 1805, + "TEXCOORD_0": 1807, + "TEXCOORD_1": 1808 + }, + "indices": 1810, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 934, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart15_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1816, + "NORMAL": 1813, + "POSITION": 1811, + "TANGENT": 1812, + "TEXCOORD_0": 1814, + "TEXCOORD_1": 1815 + }, + "indices": 1817, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 148, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Left02_hydraulic02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1823, + "NORMAL": 1820, + "POSITION": 1818, + "TANGENT": 1819, + "TEXCOORD_0": 1821, + "TEXCOORD_1": 1822 + }, + "indices": 1824, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart07_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1830, + "NORMAL": 1827, + "POSITION": 1825, + "TANGENT": 1826, + "TEXCOORD_0": 1828, + "TEXCOORD_1": 1829 + }, + "indices": 1831, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 160, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart05_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1837, + "NORMAL": 1834, + "POSITION": 1832, + "TANGENT": 1833, + "TEXCOORD_0": 1835, + "TEXCOORD_1": 1836 + }, + "indices": 1838, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 196, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart04_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1844, + "NORMAL": 1841, + "POSITION": 1839, + "TANGENT": 1840, + "TEXCOORD_0": 1842, + "TEXCOORD_1": 1843 + }, + "indices": 1845, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 148, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1844, + "NORMAL": 1841, + "POSITION": 1839, + "TANGENT": 1840, + "TEXCOORD_0": 1842, + "TEXCOORD_1": 1843 + }, + "indices": 1845, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4, + "StartIndex": 444, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Right02_hydraulic02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1851, + "NORMAL": 1848, + "POSITION": 1846, + "TANGENT": 1847, + "TEXCOORD_0": 1849, + "TEXCOORD_1": 1850 + }, + "indices": 1852, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 16, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart16_Decals_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1858, + "NORMAL": 1855, + "POSITION": 1853, + "TANGENT": 1854, + "TEXCOORD_0": 1856, + "TEXCOORD_1": 1857 + }, + "indices": 1859, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_cgear_landinglight_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1865, + "NORMAL": 1862, + "POSITION": 1860, + "TANGENT": 1861, + "TEXCOORD_0": 1863, + "TEXCOORD_1": 1864 + }, + "indices": 1866, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1872, + "NORMAL": 1869, + "POSITION": 1867, + "TANGENT": 1868, + "TEXCOORD_0": 1870, + "TEXCOORD_1": 1871 + }, + "indices": 1873, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14102, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart16_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1879, + "NORMAL": 1876, + "POSITION": 1874, + "TANGENT": 1875, + "TEXCOORD_0": 1877, + "TEXCOORD_1": 1878 + }, + "indices": 1880, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1886, + "NORMAL": 1883, + "POSITION": 1881, + "TANGENT": 1882, + "TEXCOORD_0": 1884, + "TEXCOORD_1": 1885 + }, + "indices": 1887, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1893, + "NORMAL": 1890, + "POSITION": 1888, + "TANGENT": 1889, + "TEXCOORD_0": 1891, + "TEXCOORD_1": 1892 + }, + "indices": 1894, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1900, + "NORMAL": 1897, + "POSITION": 1895, + "TANGENT": 1896, + "TEXCOORD_0": 1898, + "TEXCOORD_1": 1899 + }, + "indices": 1901, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 140, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1907, + "NORMAL": 1904, + "POSITION": 1902, + "TANGENT": 1903, + "TEXCOORD_0": 1905, + "TEXCOORD_1": 1906 + }, + "indices": 1908, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 88, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart03_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1914, + "NORMAL": 1911, + "POSITION": 1909, + "TANGENT": 1910, + "TEXCOORD_0": 1912, + "TEXCOORD_1": 1913 + }, + "indices": 1915, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 322, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1921, + "NORMAL": 1918, + "POSITION": 1916, + "TANGENT": 1917, + "TEXCOORD_0": 1919, + "TEXCOORD_1": 1920 + }, + "indices": 1922, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 320, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_NosePart06_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1928, + "NORMAL": 1925, + "POSITION": 1923, + "TANGENT": 1924, + "TEXCOORD_0": 1926, + "TEXCOORD_1": 1927 + }, + "indices": 1929, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1935, + "NORMAL": 1932, + "POSITION": 1930, + "TANGENT": 1931, + "TEXCOORD_0": 1933, + "TEXCOORD_1": 1934 + }, + "indices": 1936, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1682, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1942, + "NORMAL": 1939, + "POSITION": 1937, + "TANGENT": 1938, + "TEXCOORD_0": 1940, + "TEXCOORD_1": 1941 + }, + "indices": 1943, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1942, + "NORMAL": 1939, + "POSITION": 1937, + "TANGENT": 1938, + "TEXCOORD_0": 1940, + "TEXCOORD_1": 1941 + }, + "indices": 1943, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1949, + "NORMAL": 1946, + "POSITION": 1944, + "TANGENT": 1945, + "TEXCOORD_0": 1947, + "TEXCOORD_1": 1948 + }, + "indices": 1950, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1949, + "NORMAL": 1946, + "POSITION": 1944, + "TANGENT": 1945, + "TEXCOORD_0": 1947, + "TEXCOORD_1": 1948 + }, + "indices": 1950, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1956, + "NORMAL": 1953, + "POSITION": 1951, + "TANGENT": 1952, + "TEXCOORD_0": 1954, + "TEXCOORD_1": 1955 + }, + "indices": 1957, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1098, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1956, + "NORMAL": 1953, + "POSITION": 1951, + "TANGENT": 1952, + "TEXCOORD_0": 1954, + "TEXCOORD_1": 1955 + }, + "indices": 1957, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1320, + "StartIndex": 3294, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1956, + "NORMAL": 1953, + "POSITION": 1951, + "TANGENT": 1952, + "TEXCOORD_0": 1954, + "TEXCOORD_1": 1955 + }, + "indices": 1957, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 166, + "StartIndex": 7254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Trim_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1963, + "NORMAL": 1960, + "POSITION": 1958, + "TANGENT": 1959, + "TEXCOORD_0": 1961, + "TEXCOORD_1": 1962 + }, + "indices": 1964, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_ElevatorTrimR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1970, + "NORMAL": 1967, + "POSITION": 1965, + "TANGENT": 1966, + "TEXCOORD_0": 1968, + "TEXCOORD_1": 1969 + }, + "indices": 1971, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 345, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1977, + "NORMAL": 1974, + "POSITION": 1972, + "TANGENT": 1973, + "TEXCOORD_0": 1975, + "TEXCOORD_1": 1976 + }, + "indices": 1978, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 404, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door03_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1984, + "NORMAL": 1981, + "POSITION": 1979, + "TANGENT": 1980, + "TEXCOORD_0": 1982, + "TEXCOORD_1": 1983 + }, + "indices": 1985, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1940, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Details04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1991, + "NORMAL": 1988, + "POSITION": 1986, + "TANGENT": 1987, + "TEXCOORD_0": 1989, + "TEXCOORD_1": 1990 + }, + "indices": 1992, + "material": 34, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5241, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1991, + "NORMAL": 1988, + "POSITION": 1986, + "TANGENT": 1987, + "TEXCOORD_0": 1989, + "TEXCOORD_1": 1990 + }, + "indices": 1992, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 15723, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1991, + "NORMAL": 1988, + "POSITION": 1986, + "TANGENT": 1987, + "TEXCOORD_0": 1989, + "TEXCOORD_1": 1990 + }, + "indices": 1992, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 17115, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Duct_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1998, + "NORMAL": 1995, + "POSITION": 1993, + "TANGENT": 1994, + "TEXCOORD_0": 1996, + "TEXCOORD_1": 1997 + }, + "indices": 1999, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1998, + "NORMAL": 1995, + "POSITION": 1993, + "TANGENT": 1994, + "TEXCOORD_0": 1996, + "TEXCOORD_1": 1997 + }, + "indices": 1999, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 780, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_2_blurred_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2005, + "NORMAL": 2002, + "POSITION": 2000, + "TANGENT": 2001, + "TEXCOORD_0": 2003, + "TEXCOORD_1": 2004 + }, + "indices": 2006, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2005, + "NORMAL": 2002, + "POSITION": 2000, + "TANGENT": 2001, + "TEXCOORD_0": 2003, + "TEXCOORD_1": 2004 + }, + "indices": 2006, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 780, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_2_slow_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2012, + "NORMAL": 2009, + "POSITION": 2007, + "TANGENT": 2008, + "TEXCOORD_0": 2010, + "TEXCOORD_1": 2011 + }, + "indices": 2013, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3458, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2012, + "NORMAL": 2009, + "POSITION": 2007, + "TANGENT": 2008, + "TEXCOORD_0": 2010, + "TEXCOORD_1": 2011 + }, + "indices": 2013, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 20, + "StartIndex": 10374, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_2_still_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2852, + "JOINTS_0": 2850, + "NORMAL": 2847, + "POSITION": 2845, + "TANGENT": 2846, + "TEXCOORD_0": 2848, + "TEXCOORD_1": 2849, + "WEIGHTS_0": 2851 + }, + "indices": 2853, + "material": 34, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8196, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2861, + "JOINTS_0": 2859, + "NORMAL": 2856, + "POSITION": 2854, + "TANGENT": 2855, + "TEXCOORD_0": 2857, + "TEXCOORD_1": 2858, + "WEIGHTS_0": 2860 + }, + "indices": 2862, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4246, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2870, + "JOINTS_0": 2868, + "NORMAL": 2865, + "POSITION": 2863, + "TANGENT": 2864, + "TEXCOORD_0": 2866, + "TEXCOORD_1": 2867, + "WEIGHTS_0": 2869 + }, + "indices": 2871, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 142, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Engine_Body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2019, + "NORMAL": 2016, + "POSITION": 2014, + "TANGENT": 2015, + "TEXCOORD_0": 2017, + "TEXCOORD_1": 2018 + }, + "indices": 2020, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_RIGHT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2026, + "NORMAL": 2023, + "POSITION": 2021, + "TANGENT": 2022, + "TEXCOORD_0": 2024, + "TEXCOORD_1": 2025 + }, + "indices": 2027, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2026, + "NORMAL": 2023, + "POSITION": 2021, + "TANGENT": 2022, + "TEXCOORD_0": 2024, + "TEXCOORD_1": 2025 + }, + "indices": 2027, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINER" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2033, + "NORMAL": 2030, + "POSITION": 2028, + "TANGENT": 2029, + "TEXCOORD_0": 2031, + "TEXCOORD_1": 2032 + }, + "indices": 2034, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 32, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_EngB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2040, + "NORMAL": 2037, + "POSITION": 2035, + "TANGENT": 2036, + "TEXCOORD_0": 2038, + "TEXCOORD_1": 2039 + }, + "indices": 2041, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 384, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2040, + "NORMAL": 2037, + "POSITION": 2035, + "TANGENT": 2036, + "TEXCOORD_0": 2038, + "TEXCOORD_1": 2039 + }, + "indices": 2041, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 410, + "StartIndex": 1152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_FlapsKrueger_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2047, + "NORMAL": 2044, + "POSITION": 2042, + "TANGENT": 2043, + "TEXCOORD_0": 2045, + "TEXCOORD_1": 2046 + }, + "indices": 2048, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2054, + "NORMAL": 2051, + "POSITION": 2049, + "TANGENT": 2050, + "TEXCOORD_0": 2052, + "TEXCOORD_1": 2053 + }, + "indices": 2055, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2061, + "NORMAL": 2058, + "POSITION": 2056, + "TANGENT": 2057, + "TEXCOORD_0": 2059, + "TEXCOORD_1": 2060 + }, + "indices": 2062, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1454, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2061, + "NORMAL": 2058, + "POSITION": 2056, + "TANGENT": 2057, + "TEXCOORD_0": 2059, + "TEXCOORD_1": 2060 + }, + "indices": 2062, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2042, + "StartIndex": 4362, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2068, + "NORMAL": 2065, + "POSITION": 2063, + "TANGENT": 2064, + "TEXCOORD_0": 2066, + "TEXCOORD_1": 2067 + }, + "indices": 2069, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_16_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2075, + "NORMAL": 2072, + "POSITION": 2070, + "TANGENT": 2071, + "TEXCOORD_0": 2073, + "TEXCOORD_1": 2074 + }, + "indices": 2076, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 380, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_15_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2082, + "NORMAL": 2079, + "POSITION": 2077, + "TANGENT": 2078, + "TEXCOORD_0": 2080, + "TEXCOORD_1": 2081 + }, + "indices": 2083, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2089, + "NORMAL": 2086, + "POSITION": 2084, + "TANGENT": 2085, + "TEXCOORD_0": 2087, + "TEXCOORD_1": 2088 + }, + "indices": 2090, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2096, + "NORMAL": 2093, + "POSITION": 2091, + "TANGENT": 2092, + "TEXCOORD_0": 2094, + "TEXCOORD_1": 2095 + }, + "indices": 2097, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_03_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2103, + "NORMAL": 2100, + "POSITION": 2098, + "TANGENT": 2099, + "TEXCOORD_0": 2101, + "TEXCOORD_1": 2102 + }, + "indices": 2104, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2110, + "NORMAL": 2107, + "POSITION": 2105, + "TANGENT": 2106, + "TEXCOORD_0": 2108, + "TEXCOORD_1": 2109 + }, + "indices": 2111, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_05_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2117, + "NORMAL": 2114, + "POSITION": 2112, + "TANGENT": 2113, + "TEXCOORD_0": 2115, + "TEXCOORD_1": 2116 + }, + "indices": 2118, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_06_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2124, + "NORMAL": 2121, + "POSITION": 2119, + "TANGENT": 2120, + "TEXCOORD_0": 2122, + "TEXCOORD_1": 2123 + }, + "indices": 2125, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_18_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2131, + "NORMAL": 2128, + "POSITION": 2126, + "TANGENT": 2127, + "TEXCOORD_0": 2129, + "TEXCOORD_1": 2130 + }, + "indices": 2132, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_09_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2138, + "NORMAL": 2135, + "POSITION": 2133, + "TANGENT": 2134, + "TEXCOORD_0": 2136, + "TEXCOORD_1": 2137 + }, + "indices": 2139, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 830, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2138, + "NORMAL": 2135, + "POSITION": 2133, + "TANGENT": 2134, + "TEXCOORD_0": 2136, + "TEXCOORD_1": 2137 + }, + "indices": 2139, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 342, + "StartIndex": 2490, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_1_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2145, + "NORMAL": 2142, + "POSITION": 2140, + "TANGENT": 2141, + "TEXCOORD_0": 2143, + "TEXCOORD_1": 2144 + }, + "indices": 2146, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_07_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2152, + "NORMAL": 2149, + "POSITION": 2147, + "TANGENT": 2148, + "TEXCOORD_0": 2150, + "TEXCOORD_1": 2151 + }, + "indices": 2153, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_08_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2159, + "NORMAL": 2156, + "POSITION": 2154, + "TANGENT": 2155, + "TEXCOORD_0": 2157, + "TEXCOORD_1": 2158 + }, + "indices": 2160, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_10_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2166, + "NORMAL": 2163, + "POSITION": 2161, + "TANGENT": 2162, + "TEXCOORD_0": 2164, + "TEXCOORD_1": 2165 + }, + "indices": 2167, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_19_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2173, + "NORMAL": 2170, + "POSITION": 2168, + "TANGENT": 2169, + "TEXCOORD_0": 2171, + "TEXCOORD_1": 2172 + }, + "indices": 2174, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_11_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2180, + "NORMAL": 2177, + "POSITION": 2175, + "TANGENT": 2176, + "TEXCOORD_0": 2178, + "TEXCOORD_1": 2179 + }, + "indices": 2181, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_13_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2187, + "NORMAL": 2184, + "POSITION": 2182, + "TANGENT": 2183, + "TEXCOORD_0": 2185, + "TEXCOORD_1": 2186 + }, + "indices": 2188, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_15_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2194, + "NORMAL": 2191, + "POSITION": 2189, + "TANGENT": 2190, + "TEXCOORD_0": 2192, + "TEXCOORD_1": 2193 + }, + "indices": 2195, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_12_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2201, + "NORMAL": 2198, + "POSITION": 2196, + "TANGENT": 2197, + "TEXCOORD_0": 2199, + "TEXCOORD_1": 2200 + }, + "indices": 2202, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_14_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2208, + "NORMAL": 2205, + "POSITION": 2203, + "TANGENT": 2204, + "TEXCOORD_0": 2206, + "TEXCOORD_1": 2207 + }, + "indices": 2209, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_flap_hydrolics_16_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2215, + "NORMAL": 2212, + "POSITION": 2210, + "TANGENT": 2211, + "TEXCOORD_0": 2213, + "TEXCOORD_1": 2214 + }, + "indices": 2216, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2222, + "NORMAL": 2219, + "POSITION": 2217, + "TANGENT": 2218, + "TEXCOORD_0": 2220, + "TEXCOORD_1": 2221 + }, + "indices": 2223, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2229, + "NORMAL": 2226, + "POSITION": 2224, + "TANGENT": 2225, + "TEXCOORD_0": 2227, + "TEXCOORD_1": 2228 + }, + "indices": 2230, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2236, + "NORMAL": 2233, + "POSITION": 2231, + "TANGENT": 2232, + "TEXCOORD_0": 2234, + "TEXCOORD_1": 2235 + }, + "indices": 2237, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 154, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2879, + "JOINTS_0": 2877, + "NORMAL": 2874, + "POSITION": 2872, + "TANGENT": 2873, + "TEXCOORD_0": 2875, + "TEXCOORD_1": 2876, + "WEIGHTS_0": 2878 + }, + "indices": 2880, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1546, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_2_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2243, + "NORMAL": 2240, + "POSITION": 2238, + "TANGENT": 2239, + "TEXCOORD_0": 2241, + "TEXCOORD_1": 2242 + }, + "indices": 2244, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 826, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2243, + "NORMAL": 2240, + "POSITION": 2238, + "TANGENT": 2239, + "TEXCOORD_0": 2241, + "TEXCOORD_1": 2242 + }, + "indices": 2244, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 114, + "StartIndex": 2478, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2250, + "NORMAL": 2247, + "POSITION": 2245, + "TANGENT": 2246, + "TEXCOORD_0": 2248, + "TEXCOORD_1": 2249 + }, + "indices": 2251, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 644, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_07_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2257, + "NORMAL": 2254, + "POSITION": 2252, + "TANGENT": 2253, + "TEXCOORD_0": 2255, + "TEXCOORD_1": 2256 + }, + "indices": 2258, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 628, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_08_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2264, + "NORMAL": 2261, + "POSITION": 2259, + "TANGENT": 2260, + "TEXCOORD_0": 2262, + "TEXCOORD_1": 2263 + }, + "indices": 2265, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_37_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2271, + "NORMAL": 2268, + "POSITION": 2266, + "TANGENT": 2267, + "TEXCOORD_0": 2269, + "TEXCOORD_1": 2270 + }, + "indices": 2272, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_35_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2278, + "NORMAL": 2275, + "POSITION": 2273, + "TANGENT": 2274, + "TEXCOORD_0": 2276, + "TEXCOORD_1": 2277 + }, + "indices": 2279, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 308, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_36_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2285, + "NORMAL": 2282, + "POSITION": 2280, + "TANGENT": 2281, + "TEXCOORD_0": 2283, + "TEXCOORD_1": 2284 + }, + "indices": 2286, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7640, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_RWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2292, + "NORMAL": 2289, + "POSITION": 2287, + "TANGENT": 2288, + "TEXCOORD_0": 2290, + "TEXCOORD_1": 2291 + }, + "indices": 2293, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_RWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2299, + "NORMAL": 2296, + "POSITION": 2294, + "TANGENT": 2295, + "TEXCOORD_0": 2297, + "TEXCOORD_1": 2298 + }, + "indices": 2300, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7640, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_RWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2306, + "NORMAL": 2303, + "POSITION": 2301, + "TANGENT": 2302, + "TEXCOORD_0": 2304, + "TEXCOORD_1": 2305 + }, + "indices": 2307, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2992, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_RWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2313, + "NORMAL": 2310, + "POSITION": 2308, + "TANGENT": 2309, + "TEXCOORD_0": 2311, + "TEXCOORD_1": 2312 + }, + "indices": 2314, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 21937, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_09_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2320, + "NORMAL": 2317, + "POSITION": 2315, + "TANGENT": 2316, + "TEXCOORD_0": 2318, + "TEXCOORD_1": 2319 + }, + "indices": 2321, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1494, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_10_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2327, + "NORMAL": 2324, + "POSITION": 2322, + "TANGENT": 2323, + "TEXCOORD_0": 2325, + "TEXCOORD_1": 2326 + }, + "indices": 2328, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 248, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part19_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2334, + "NORMAL": 2331, + "POSITION": 2329, + "TANGENT": 2330, + "TEXCOORD_0": 2332, + "TEXCOORD_1": 2333 + }, + "indices": 2335, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part18_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2341, + "NORMAL": 2338, + "POSITION": 2336, + "TANGENT": 2337, + "TEXCOORD_0": 2339, + "TEXCOORD_1": 2340 + }, + "indices": 2342, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_21_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2348, + "NORMAL": 2345, + "POSITION": 2343, + "TANGENT": 2344, + "TEXCOORD_0": 2346, + "TEXCOORD_1": 2347 + }, + "indices": 2349, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_Part17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2355, + "NORMAL": 2352, + "POSITION": 2350, + "TANGENT": 2351, + "TEXCOORD_0": 2353, + "TEXCOORD_1": 2354 + }, + "indices": 2356, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2362, + "NORMAL": 2359, + "POSITION": 2357, + "TANGENT": 2358, + "TEXCOORD_0": 2360, + "TEXCOORD_1": 2361 + }, + "indices": 2363, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 708, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_31_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2369, + "NORMAL": 2366, + "POSITION": 2364, + "TANGENT": 2365, + "TEXCOORD_0": 2367, + "TEXCOORD_1": 2368 + }, + "indices": 2370, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_33_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2376, + "NORMAL": 2373, + "POSITION": 2371, + "TANGENT": 2372, + "TEXCOORD_0": 2374, + "TEXCOORD_1": 2375 + }, + "indices": 2377, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_28_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2383, + "NORMAL": 2380, + "POSITION": 2378, + "TANGENT": 2379, + "TEXCOORD_0": 2381, + "TEXCOORD_1": 2382 + }, + "indices": 2384, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 444, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_27_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2390, + "NORMAL": 2387, + "POSITION": 2385, + "TANGENT": 2386, + "TEXCOORD_0": 2388, + "TEXCOORD_1": 2389 + }, + "indices": 2391, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 362, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_29_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2397, + "NORMAL": 2394, + "POSITION": 2392, + "TANGENT": 2393, + "TEXCOORD_0": 2395, + "TEXCOORD_1": 2396 + }, + "indices": 2398, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 818, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_30_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2404, + "NORMAL": 2401, + "POSITION": 2399, + "TANGENT": 2400, + "TEXCOORD_0": 2402, + "TEXCOORD_1": 2403 + }, + "indices": 2405, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 508, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_32_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2411, + "NORMAL": 2408, + "POSITION": 2406, + "TANGENT": 2407, + "TEXCOORD_0": 2409, + "TEXCOORD_1": 2410 + }, + "indices": 2412, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_34_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2418, + "NORMAL": 2415, + "POSITION": 2413, + "TANGENT": 2414, + "TEXCOORD_0": 2416, + "TEXCOORD_1": 2417 + }, + "indices": 2419, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4483, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2418, + "NORMAL": 2415, + "POSITION": 2413, + "TANGENT": 2414, + "TEXCOORD_0": 2416, + "TEXCOORD_1": 2417 + }, + "indices": 2419, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 13449, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_gear_Root_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2425, + "NORMAL": 2422, + "POSITION": 2420, + "TANGENT": 2421, + "TEXCOORD_0": 2423, + "TEXCOORD_1": 2424 + }, + "indices": 2426, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 272, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2432, + "NORMAL": 2429, + "POSITION": 2427, + "TANGENT": 2428, + "TEXCOORD_0": 2430, + "TEXCOORD_1": 2431 + }, + "indices": 2433, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2432, + "NORMAL": 2429, + "POSITION": 2427, + "TANGENT": 2428, + "TEXCOORD_0": 2430, + "TEXCOORD_1": 2431 + }, + "indices": 2433, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "StartIndex": 2112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2439, + "NORMAL": 2436, + "POSITION": 2434, + "TANGENT": 2435, + "TEXCOORD_0": 2437, + "TEXCOORD_1": 2438 + }, + "indices": 2440, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 450, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Glass_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2446, + "NORMAL": 2443, + "POSITION": 2441, + "TANGENT": 2442, + "TEXCOORD_0": 2444, + "TEXCOORD_1": 2445 + }, + "indices": 2447, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1086, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Undercarriage_Front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2453, + "NORMAL": 2450, + "POSITION": 2448, + "TANGENT": 2449, + "TEXCOORD_0": 2451, + "TEXCOORD_1": 2452 + }, + "indices": 2454, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 958, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_lightpods_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14460, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14432, + "StartIndex": 43380, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 9351, + "StartIndex": 86676, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13967, + "StartIndex": 114729, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 65530, + "PrimitiveCount": 32791, + "StartIndex": 156630, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131059, + "PrimitiveCount": 6104, + "StartIndex": 255003, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131059, + "PrimitiveCount": 656, + "StartIndex": 273315, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131059, + "PrimitiveCount": 221, + "StartIndex": 275283, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131059, + "PrimitiveCount": 404, + "StartIndex": 275946, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2460, + "NORMAL": 2457, + "POSITION": 2455, + "TANGENT": 2456, + "TEXCOORD_0": 2458, + "TEXCOORD_1": 2459 + }, + "indices": 2461, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "BaseVertexIndex": 131059, + "PrimitiveCount": 612, + "StartIndex": 277158, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Body_front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2467, + "NORMAL": 2464, + "POSITION": 2462, + "TANGENT": 2463, + "TEXCOORD_0": 2465, + "TEXCOORD_1": 2466 + }, + "indices": 2468, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2652, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_windowGlass_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2474, + "NORMAL": 2471, + "POSITION": 2469, + "TANGENT": 2470, + "TEXCOORD_0": 2472, + "TEXCOORD_1": 2473 + }, + "indices": 2475, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_2_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 118, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 230, + "StartIndex": 354, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 20, + "StartIndex": 1044, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 438, + "StartIndex": 1104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "StartIndex": 2418, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 2448, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2481, + "NORMAL": 2478, + "POSITION": 2476, + "TANGENT": 2477, + "TEXCOORD_0": 2479, + "TEXCOORD_1": 2480 + }, + "indices": 2482, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 128, + "StartIndex": 2628, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_2_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2488, + "NORMAL": 2485, + "POSITION": 2483, + "TANGENT": 2484, + "TEXCOORD_0": 2486, + "TEXCOORD_1": 2487 + }, + "indices": 2489, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4165, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2488, + "NORMAL": 2485, + "POSITION": 2483, + "TANGENT": 2484, + "TEXCOORD_0": 2486, + "TEXCOORD_1": 2487 + }, + "indices": 2489, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2019, + "StartIndex": 12495, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2488, + "NORMAL": 2485, + "POSITION": 2483, + "TANGENT": 2484, + "TEXCOORD_0": 2486, + "TEXCOORD_1": 2487 + }, + "indices": 2489, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "StartIndex": 18552, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2495, + "NORMAL": 2492, + "POSITION": 2490, + "TANGENT": 2491, + "TEXCOORD_0": 2493, + "TEXCOORD_1": 2494 + }, + "indices": 2496, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_DoorB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2502, + "NORMAL": 2499, + "POSITION": 2497, + "TANGENT": 2498, + "TEXCOORD_0": 2500, + "TEXCOORD_1": 2501 + }, + "indices": 2503, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 648, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_2_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2509, + "NORMAL": 2506, + "POSITION": 2504, + "TANGENT": 2505, + "TEXCOORD_0": 2507, + "TEXCOORD_1": 2508 + }, + "indices": 2510, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2509, + "NORMAL": 2506, + "POSITION": 2504, + "TANGENT": 2505, + "TEXCOORD_0": 2507, + "TEXCOORD_1": 2508 + }, + "indices": 2510, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7034, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_INTERIOR2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2516, + "NORMAL": 2513, + "POSITION": 2511, + "TANGENT": 2512, + "TEXCOORD_0": 2514, + "TEXCOORD_1": 2515 + }, + "indices": 2517, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6682, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2516, + "NORMAL": 2513, + "POSITION": 2511, + "TANGENT": 2512, + "TEXCOORD_0": 2514, + "TEXCOORD_1": 2515 + }, + "indices": 2517, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 372, + "StartIndex": 20046, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_CARGO_DOOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2523, + "NORMAL": 2520, + "POSITION": 2518, + "TANGENT": 2519, + "TEXCOORD_0": 2521, + "TEXCOORD_1": 2522 + }, + "indices": 2524, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 481, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2523, + "NORMAL": 2520, + "POSITION": 2518, + "TANGENT": 2519, + "TEXCOORD_0": 2521, + "TEXCOORD_1": 2522 + }, + "indices": 2524, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 438, + "StartIndex": 1443, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2523, + "NORMAL": 2520, + "POSITION": 2518, + "TANGENT": 2519, + "TEXCOORD_0": 2521, + "TEXCOORD_1": 2522 + }, + "indices": 2524, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 2757, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_CARGO_DOOR_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2530, + "NORMAL": 2527, + "POSITION": 2525, + "TANGENT": 2526, + "TEXCOORD_0": 2528, + "TEXCOORD_1": 2529 + }, + "indices": 2531, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_CARGO_PISTON_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2537, + "NORMAL": 2534, + "POSITION": 2532, + "TANGENT": 2533, + "TEXCOORD_0": 2535, + "TEXCOORD_1": 2536 + }, + "indices": 2538, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 322, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_Cargo" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2544, + "NORMAL": 2541, + "POSITION": 2539, + "TANGENT": 2540, + "TEXCOORD_0": 2542, + "TEXCOORD_1": 2543 + }, + "indices": 2545, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 252, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_CARGO_PISTON_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2551, + "NORMAL": 2548, + "POSITION": 2546, + "TANGENT": 2547, + "TEXCOORD_0": 2549, + "TEXCOORD_1": 2550 + }, + "indices": 2552, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3578, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2551, + "NORMAL": 2548, + "POSITION": 2546, + "TANGENT": 2547, + "TEXCOORD_0": 2549, + "TEXCOORD_1": 2550 + }, + "indices": 2552, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1711, + "StartIndex": 10734, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2551, + "NORMAL": 2548, + "POSITION": 2546, + "TANGENT": 2547, + "TEXCOORD_0": 2549, + "TEXCOORD_1": 2550 + }, + "indices": 2552, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "StartIndex": 15867, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2558, + "NORMAL": 2555, + "POSITION": 2553, + "TANGENT": 2554, + "TEXCOORD_0": 2556, + "TEXCOORD_1": 2557 + }, + "indices": 2559, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_1_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22, + "StartIndex": 1032, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 378, + "StartIndex": 1098, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 2232, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 64, + "StartIndex": 2256, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2565, + "NORMAL": 2562, + "POSITION": 2560, + "TANGENT": 2561, + "TEXCOORD_0": 2563, + "TEXCOORD_1": 2564 + }, + "indices": 2566, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 108, + "StartIndex": 2448, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_1_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2572, + "NORMAL": 2569, + "POSITION": 2567, + "TANGENT": 2568, + "TEXCOORD_0": 2570, + "TEXCOORD_1": 2571 + }, + "indices": 2573, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_1_GASKET" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2579, + "NORMAL": 2576, + "POSITION": 2574, + "TANGENT": 2575, + "TEXCOORD_0": 2577, + "TEXCOORD_1": 2578 + }, + "indices": 2580, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 342, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_DoorA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2586, + "NORMAL": 2583, + "POSITION": 2581, + "TANGENT": 2582, + "TEXCOORD_0": 2584, + "TEXCOORD_1": 2585 + }, + "indices": 2587, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 648, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_PASSENGER_DOOR_1_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2593, + "NORMAL": 2590, + "POSITION": 2588, + "TANGENT": 2589, + "TEXCOORD_0": 2591, + "TEXCOORD_1": 2592 + }, + "indices": 2594, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2593, + "NORMAL": 2590, + "POSITION": 2588, + "TANGENT": 2589, + "TEXCOORD_0": 2591, + "TEXCOORD_1": 2592 + }, + "indices": 2594, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 11618, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_INTERIOR1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2888, + "JOINTS_0": 2886, + "NORMAL": 2883, + "POSITION": 2881, + "TANGENT": 2882, + "TEXCOORD_0": 2884, + "TEXCOORD_1": 2885, + "WEIGHTS_0": 2887 + }, + "indices": 2889, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_22_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2897, + "JOINTS_0": 2895, + "NORMAL": 2892, + "POSITION": 2890, + "TANGENT": 2891, + "TEXCOORD_0": 2893, + "TEXCOORD_1": 2894, + "WEIGHTS_0": 2896 + }, + "indices": 2898, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 412, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_Right02_hydraulic01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2906, + "JOINTS_0": 2904, + "NORMAL": 2901, + "POSITION": 2899, + "TANGENT": 2900, + "TEXCOORD_0": 2902, + "TEXCOORD_1": 2903, + "WEIGHTS_0": 2905 + }, + "indices": 2907, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 412, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Door_left02_hydraulic01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2915, + "JOINTS_0": 2913, + "NORMAL": 2910, + "POSITION": 2908, + "TANGENT": 2909, + "TEXCOORD_0": 2911, + "TEXCOORD_1": 2912, + "WEIGHTS_0": 2914 + }, + "indices": 2916, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 672, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2924, + "JOINTS_0": 2922, + "NORMAL": 2919, + "POSITION": 2917, + "TANGENT": 2918, + "TEXCOORD_0": 2920, + "TEXCOORD_1": 2921, + "WEIGHTS_0": 2923 + }, + "indices": 2925, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 472, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Aileron_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2933, + "JOINTS_0": 2931, + "NORMAL": 2928, + "POSITION": 2926, + "TANGENT": 2927, + "TEXCOORD_0": 2929, + "TEXCOORD_1": 2930, + "WEIGHTS_0": 2932 + }, + "indices": 2934, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1628, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2942, + "JOINTS_0": 2940, + "NORMAL": 2937, + "POSITION": 2935, + "TANGENT": 2936, + "TEXCOORD_0": 2938, + "TEXCOORD_1": 2939, + "WEIGHTS_0": 2941 + }, + "indices": 2943, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 892, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_FlapsKrueger_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2951, + "JOINTS_0": 2949, + "NORMAL": 2946, + "POSITION": 2944, + "TANGENT": 2945, + "TEXCOORD_0": 2947, + "TEXCOORD_1": 2948, + "WEIGHTS_0": 2950 + }, + "indices": 2952, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1508, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2960, + "JOINTS_0": 2958, + "NORMAL": 2955, + "POSITION": 2953, + "TANGENT": 2954, + "TEXCOORD_0": 2956, + "TEXCOORD_1": 2957, + "WEIGHTS_0": 2959 + }, + "indices": 2961, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1866, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2969, + "JOINTS_0": 2967, + "NORMAL": 2964, + "POSITION": 2962, + "TANGENT": 2963, + "TEXCOORD_0": 2965, + "TEXCOORD_1": 2966, + "WEIGHTS_0": 2968 + }, + "indices": 2970, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 762, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Flaps_Details_Spoiler_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2978, + "JOINTS_0": 2976, + "NORMAL": 2973, + "POSITION": 2971, + "TANGENT": 2972, + "TEXCOORD_0": 2974, + "TEXCOORD_1": 2975, + "WEIGHTS_0": 2977 + }, + "indices": 2979, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_22_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2987, + "JOINTS_0": 2985, + "NORMAL": 2982, + "POSITION": 2980, + "TANGENT": 2981, + "TEXCOORD_0": 2983, + "TEXCOORD_1": 2984, + "WEIGHTS_0": 2986 + }, + "indices": 2988, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1226, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Spoiler_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2996, + "JOINTS_0": 2994, + "NORMAL": 2991, + "POSITION": 2989, + "TANGENT": 2990, + "TEXCOORD_0": 2992, + "TEXCOORD_1": 2993, + "WEIGHTS_0": 2995 + }, + "indices": 2997, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1550, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3005, + "JOINTS_0": 3003, + "NORMAL": 3000, + "POSITION": 2998, + "TANGENT": 2999, + "TEXCOORD_0": 3001, + "TEXCOORD_1": 3002, + "WEIGHTS_0": 3004 + }, + "indices": 3006, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1550, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Landing_Gear_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3014, + "JOINTS_0": 3012, + "NORMAL": 3009, + "POSITION": 3007, + "TANGENT": 3008, + "TEXCOORD_0": 3010, + "TEXCOORD_1": 3011, + "WEIGHTS_0": 3013 + }, + "indices": 3015, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1035, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Undercarriage_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2600, + "NORMAL": 2597, + "POSITION": 2595, + "TANGENT": 2596, + "TEXCOORD_0": 2598, + "TEXCOORD_1": 2599 + }, + "indices": 2601, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 150, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2607, + "NORMAL": 2604, + "POSITION": 2602, + "TANGENT": 2603, + "TEXCOORD_0": 2605, + "TEXCOORD_1": 2606 + }, + "indices": 2608, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2614, + "NORMAL": 2611, + "POSITION": 2609, + "TANGENT": 2610, + "TEXCOORD_0": 2612, + "TEXCOORD_1": 2613 + }, + "indices": 2615, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2621, + "NORMAL": 2618, + "POSITION": 2616, + "TANGENT": 2617, + "TEXCOORD_0": 2619, + "TEXCOORD_1": 2620 + }, + "indices": 2622, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 28, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2628, + "NORMAL": 2625, + "POSITION": 2623, + "TANGENT": 2624, + "TEXCOORD_0": 2626, + "TEXCOORD_1": 2627 + }, + "indices": 2629, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2635, + "NORMAL": 2632, + "POSITION": 2630, + "TANGENT": 2631, + "TEXCOORD_0": 2633, + "TEXCOORD_1": 2634 + }, + "indices": 2636, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2642, + "NORMAL": 2639, + "POSITION": 2637, + "TANGENT": 2638, + "TEXCOORD_0": 2640, + "TEXCOORD_1": 2641 + }, + "indices": 2643, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 268, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Porthole_Blocker_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2649, + "NORMAL": 2646, + "POSITION": 2644, + "TANGENT": 2645, + "TEXCOORD_0": 2647, + "TEXCOORD_1": 2648 + }, + "indices": 2650, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2656, + "NORMAL": 2653, + "POSITION": 2651, + "TANGENT": 2652, + "TEXCOORD_0": 2654, + "TEXCOORD_1": 2655 + }, + "indices": 2657, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2663, + "NORMAL": 2660, + "POSITION": 2658, + "TANGENT": 2659, + "TEXCOORD_0": 2661, + "TEXCOORD_1": 2662 + }, + "indices": 2664, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2670, + "NORMAL": 2667, + "POSITION": 2665, + "TANGENT": 2666, + "TEXCOORD_0": 2668, + "TEXCOORD_1": 2669 + }, + "indices": 2671, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2677, + "NORMAL": 2674, + "POSITION": 2672, + "TANGENT": 2673, + "TEXCOORD_0": 2675, + "TEXCOORD_1": 2676 + }, + "indices": 2678, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 9362, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2677, + "NORMAL": 2674, + "POSITION": 2672, + "TANGENT": 2673, + "TEXCOORD_0": 2675, + "TEXCOORD_1": 2676 + }, + "indices": 2678, + "material": 30, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 706, + "StartIndex": 28086, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2677, + "NORMAL": 2674, + "POSITION": 2672, + "TANGENT": 2673, + "TEXCOORD_0": 2675, + "TEXCOORD_1": 2676 + }, + "indices": 2678, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1044, + "StartIndex": 30204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_CARGO_INTERIOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2684, + "NORMAL": 2681, + "POSITION": 2679, + "TANGENT": 2680, + "TEXCOORD_0": 2682, + "TEXCOORD_1": 2683 + }, + "indices": 2685, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5558, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_FUSELAGE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3023, + "JOINTS_0": 3021, + "NORMAL": 3018, + "POSITION": 3016, + "TANGENT": 3017, + "TEXCOORD_0": 3019, + "TEXCOORD_1": 3020, + "WEIGHTS_0": 3022 + }, + "indices": 3024, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3032, + "JOINTS_0": 3030, + "NORMAL": 3027, + "POSITION": 3025, + "TANGENT": 3026, + "TEXCOORD_0": 3028, + "TEXCOORD_1": 3029, + "WEIGHTS_0": 3031 + }, + "indices": 3033, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 216, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3041, + "JOINTS_0": 3039, + "NORMAL": 3036, + "POSITION": 3034, + "TANGENT": 3035, + "TEXCOORD_0": 3037, + "TEXCOORD_1": 3038, + "WEIGHTS_0": 3040 + }, + "indices": 3042, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 218, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3050, + "JOINTS_0": 3048, + "NORMAL": 3045, + "POSITION": 3043, + "TANGENT": 3044, + "TEXCOORD_0": 3046, + "TEXCOORD_1": 3047, + "WEIGHTS_0": 3049 + }, + "indices": 3051, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3059, + "JOINTS_0": 3057, + "NORMAL": 3054, + "POSITION": 3052, + "TANGENT": 3053, + "TEXCOORD_0": 3055, + "TEXCOORD_1": 3056, + "WEIGHTS_0": 3058 + }, + "indices": 3060, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 884, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_wiper" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2691, + "NORMAL": 2688, + "POSITION": 2686, + "TANGENT": 2687, + "TEXCOORD_0": 2689, + "TEXCOORD_1": 2690 + }, + "indices": 2692, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 298, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_GROUND_GPUPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2698, + "NORMAL": 2695, + "POSITION": 2693, + "TANGENT": 2694, + "TEXCOORD_0": 2696, + "TEXCOORD_1": 2697 + }, + "indices": 2699, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 648, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_GROUND_FuelPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2705, + "NORMAL": 2702, + "POSITION": 2700, + "TANGENT": 2701, + "TEXCOORD_0": 2703, + "TEXCOORD_1": 2704 + }, + "indices": 2706, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 534, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_WINDSHIELD" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2712, + "NORMAL": 2709, + "POSITION": 2707, + "TANGENT": 2708, + "TEXCOORD_0": 2710, + "TEXCOORD_1": 2711 + }, + "indices": 2713, + "material": 31, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_RegNumber" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2719, + "NORMAL": 2716, + "POSITION": 2714, + "TANGENT": 2715, + "TEXCOORD_0": 2717, + "TEXCOORD_1": 2718 + }, + "indices": 2720, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7509, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_FuselageB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2726, + "NORMAL": 2723, + "POSITION": 2721, + "TANGENT": 2722, + "TEXCOORD_0": 2724, + "TEXCOORD_1": 2725 + }, + "indices": 2727, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 20203, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_KLM_FuselageA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3068, + "JOINTS_0": 3066, + "NORMAL": 3063, + "POSITION": 3061, + "TANGENT": 3062, + "TEXCOORD_0": 3064, + "TEXCOORD_1": 3065, + "WEIGHTS_0": 3067 + }, + "indices": 3069, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 468, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3077, + "JOINTS_0": 3075, + "NORMAL": 3072, + "POSITION": 3070, + "TANGENT": 3071, + "TEXCOORD_0": 3073, + "TEXCOORD_1": 3074, + "WEIGHTS_0": 3076 + }, + "indices": 3078, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 9418, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3086, + "JOINTS_0": 3084, + "NORMAL": 3081, + "POSITION": 3079, + "TANGENT": 3080, + "TEXCOORD_0": 3082, + "TEXCOORD_1": 3083, + "WEIGHTS_0": 3085 + }, + "indices": 3087, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 231, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3095, + "JOINTS_0": 3093, + "NORMAL": 3090, + "POSITION": 3088, + "TANGENT": 3089, + "TEXCOORD_0": 3091, + "TEXCOORD_1": 3092, + "WEIGHTS_0": 3094 + }, + "indices": 3096, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13800, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3104, + "JOINTS_0": 3102, + "NORMAL": 3099, + "POSITION": 3097, + "TANGENT": 3098, + "TEXCOORD_0": 3100, + "TEXCOORD_1": 3101, + "WEIGHTS_0": 3103 + }, + "indices": 3105, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3113, + "JOINTS_0": 3111, + "NORMAL": 3108, + "POSITION": 3106, + "TANGENT": 3107, + "TEXCOORD_0": 3109, + "TEXCOORD_1": 3110, + "WEIGHTS_0": 3112 + }, + "indices": 3114, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Wing_body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3122, + "JOINTS_0": 3120, + "NORMAL": 3117, + "POSITION": 3115, + "TANGENT": 3116, + "TEXCOORD_0": 3118, + "TEXCOORD_1": 3119, + "WEIGHTS_0": 3121 + }, + "indices": 3123, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 288, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3131, + "JOINTS_0": 3129, + "NORMAL": 3126, + "POSITION": 3124, + "TANGENT": 3125, + "TEXCOORD_0": 3127, + "TEXCOORD_1": 3128, + "WEIGHTS_0": 3130 + }, + "indices": 3132, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 9276, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3140, + "JOINTS_0": 3138, + "NORMAL": 3135, + "POSITION": 3133, + "TANGENT": 3134, + "TEXCOORD_0": 3136, + "TEXCOORD_1": 3137, + "WEIGHTS_0": 3139 + }, + "indices": 3141, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 231, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3149, + "JOINTS_0": 3147, + "NORMAL": 3144, + "POSITION": 3142, + "TANGENT": 3143, + "TEXCOORD_0": 3145, + "TEXCOORD_1": 3146, + "WEIGHTS_0": 3148 + }, + "indices": 3150, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13226, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 3158, + "JOINTS_0": 3156, + "NORMAL": 3153, + "POSITION": 3151, + "TANGENT": 3152, + "TEXCOORD_0": 3154, + "TEXCOORD_1": 3155, + "WEIGHTS_0": 3157 + }, + "indices": 3159, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Wing_body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3160, + "NORMAL": 3161, + "POSITION": 3162, + "TANGENT": 3163, + "TEXCOORD_0": 3164, + "TEXCOORD_1": 3165 + }, + "indices": 3166, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1820, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Rudder_center.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3167, + "NORMAL": 3168, + "POSITION": 3169, + "TANGENT": 3170, + "TEXCOORD_0": 3171, + "TEXCOORD_1": 3172 + }, + "indices": 3173, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_Left.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3174, + "NORMAL": 3175, + "POSITION": 3176, + "TANGENT": 3177, + "TEXCOORD_0": 3178, + "TEXCOORD_1": 3179 + }, + "indices": 3180, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_right.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3181, + "NORMAL": 3182, + "POSITION": 3183, + "TANGENT": 3184, + "TEXCOORD_0": 3185, + "TEXCOORD_1": 3186 + }, + "indices": 3187, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 302, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorB.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3188, + "NORMAL": 3189, + "POSITION": 3190, + "TEXCOORD_0": 3191, + "TEXCOORD_1": 3192 + }, + "indices": 3193, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 21, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageA.005" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3194, + "NORMAL": 3195, + "POSITION": 3196, + "TANGENT": 3197, + "TEXCOORD_0": 3198, + "TEXCOORD_1": 3199 + }, + "indices": 3200, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door01_left.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3201, + "NORMAL": 3202, + "POSITION": 3203, + "TANGENT": 3204, + "TEXCOORD_0": 3205, + "TEXCOORD_1": 3206 + }, + "indices": 3207, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door01_right.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3208, + "NORMAL": 3209, + "POSITION": 3210, + "TANGENT": 3211, + "TEXCOORD_0": 3212, + "TEXCOORD_1": 3213 + }, + "indices": 3214, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "livery_vstab" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3215, + "NORMAL": 3216, + "POSITION": 3217, + "TANGENT": 3218, + "TEXCOORD_0": 3219, + "TEXCOORD_1": 3220 + }, + "indices": 3221, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Cargo_Door_LIVERYDECAL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3222, + "NORMAL": 3223, + "POSITION": 3224, + "TEXCOORD_0": 3225, + "TEXCOORD_1": 3226 + }, + "indices": 3227, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 306, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3228, + "NORMAL": 3229, + "POSITION": 3230, + "TANGENT": 3231, + "TEXCOORD_0": 3232, + "TEXCOORD_1": 3233 + }, + "indices": 3234, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2812, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.004" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3235, + "NORMAL": 3236, + "POSITION": 3237, + "TEXCOORD_0": 3238, + "TEXCOORD_1": 3239 + }, + "indices": 3240, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13128, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3241, + "NORMAL": 3242, + "POSITION": 3243, + "TANGENT": 3244, + "TEXCOORD_0": 3245, + "TEXCOORD_1": 3246 + }, + "indices": 3247, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.003" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 3248, + "NORMAL": 3249, + "POSITION": 3250, + "TANGENT": 3251, + "TEXCOORD_0": 3252, + "TEXCOORD_1": 3253 + }, + "indices": 3254, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3832, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.008" + } + ], + "nodes": [ + { + "translation": [ + 23.0969028, 2.07969546, -12.9645138 + ], + "rotation": [ + 0.013866799, 0.241395965, 0.05564798, 0.9687306 + ], + "mesh": 0, + "skin": 0, + "name": "Aileron_left" + }, { + "translation": [ + 17.0303764, 0.9264157, -9.990757 + ], + "rotation": [ + 0.0151424631, 0.227483839, 0.06466881, 0.971514165 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "mesh": 1, + "skin": 1, + "name": "Flaps_2_left" + }, { + "translation": [ + 6.70049763, 0.205205679, -6.499737 + ], + "rotation": [ + 0.00116067717, 0.0128166247, 0.09018376, 0.99584204 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 2, + "skin": 2, + "name": "Spoiler_1_left" + }, { + "translation": [ + 18.74164, 1.6507802, -8.431368 + ], + "rotation": [ + 0.0150541766, 0.2984709, 0.0480715521, 0.953088462 + ], + "scale": [ + 0.99999994, 0.99999994, 0.99999994 + ], + "mesh": 3, + "skin": 3, + "name": "FlapsKrueger_2_left" + }, { + "mesh": 4, + "skin": 4, + "name": "Undercarriage_left" + }, { + "translation": [ + -4.76837158e-7, 0, -9.536743e-7 + ], + "mesh": 5, + "skin": 5, + "name": "Flaps_Details_Spoiler_left" + }, { + "name": "HIPS", + "children": [ + 7, + 10, + 16, + 22, + 26, + 32, + 201, + 244, + 252, + 421, + 422, + 423, + 424, + 425, + 426, + 435, + 441, + 443, + 444, + 454, + 456 + ] + }, { + "translation": [ + 0.00000191479921, 9.241079, -36.3505249 + ], + "rotation": [ + 0.351553828, 0.6135225, 0.351553649, 0.6135227 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "Tail_Rudder_center", + "children": [8, 9] + }, { + "translation": [ + 0, 0.00000190734863, -0.00000381469681 + ], + "rotation": [ + -1.63282408e-7, 2.35215055e-7, -1.639128e-7, 1 + ], + "scale": [ + 1, 0.999999762, 0.999999762 + ], + "mesh": 6, + "name": "Rudder_center" + }, { + "translation": [ + -3.4365387, -0.537023544, -0.00000381469681 + ], + "rotation": [ + -0.3515538, -0.6135225, -0.351553679, 0.6135227 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "mesh": 7, + "name": "Livery_KLM_Rudder" + }, { + "translation": [ + -0.726416945, -1.95301223, 23.6319084 + ], + "rotation": [ + 0.427315861, 0.516586959, -0.473471433, 0.5712827 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "name": "Door_Right02_center", + "children": [11, 13, 14, 15] + }, { + "translation": [ + -0.00000190734863, 1.1920929e-7, 0 + ], + "rotation": [ + -3.72529074e-9, 0, -4.65661343e-10, 1 + ], + "scale": [ + 1, 0.9999999, 1 + ], + "name": "C_Door_02_right", + "children": [12] + }, { + "translation": [ + 23.3295879, 1.10008311, -4.1627574 + ], + "rotation": [ + -0.42731604, -0.5165873, 0.4734711, 0.5712825 + ], + "scale": [ + 1.00000072, 1.0000006, 0.9999998 + ], + "mesh": 8, + "name": "Door_Right02_Livery_center" + }, { + "translation": [ + 0.458667755, -0.0267460346, 0.552114964 + ], + "rotation": [ + 0.512122333, -0.626890063, -0.3186886, -0.49313 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "name": "Door_Right03_center" + }, { + "translation": [ + -0.000005722046, 0.00000262260437, -0.00000381469727 + ], + "rotation": [ + 2.793966e-7, 1.11758645e-7, -1.21537667e-7, 1 + ], + "scale": [ + 0.999999642, 1.0000006, 1.0000006 + ], + "mesh": 9, + "name": "C_Door_right" + }, { + "translation": [ + 0.114679337, -0.11825192, 0.424622059 + ], + "rotation": [ + -0.427315861, -0.5165871, 0.473471284, 0.571282744 + ], + "scale": [ + 0.9999999, 0.99999994, 1 + ], + "mesh": 10, + "name": "Livery_KLM_RGDoor" + }, { + "translation": [ + -0.731975853, -1.761568, 25.1424141 + ], + "rotation": [ + -0.0471240319, 0.7069722, -0.06672683, 0.7025078 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "name": "Door_Right01_center", + "children": [17, 19, 21] + }, { + "translation": [ + 0.00000190734863, 4.76837158e-7, 0.00000190734863 + ], + "rotation": [ + 4.65661232e-10, -2.32830671e-10, 3.72529074e-9, 1 + ], + "scale": [ + 0.9999999, 1, 1.00000012 + ], + "name": "C_Door_01_right", + "children": [18] + }, { + "translation": [ + 0.9317913, -0.06278181, 0.19834137 + ], + "rotation": [ + 0.07456254, 0.7141568, 0.07628633, 0.691809833 + ], + "scale": [ + 1.00000024, 1.00000072, 0.9999993 + ], + "mesh": 11, + "name": "Door_Right01_Decals_center" + }, { + "translation": [ + -0.7503414, -0.0338468552, 0.414570749 + ], + "rotation": [ + -0.396525681, -0.50923115, 0.5034293, 0.574465036 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Right03_hydraulic01_center", + "children": [20] + }, { + "translation": [ + -0.0169906616, -0.005390644, -0.0000152587891 + ], + "rotation": [ + 0.00701062568, -0.0995506, -0.7892379, 0.6059242 + ], + "scale": [ + 1.00000083, 1.00000048, 1.0000025 + ], + "mesh": 12, + "name": "C_Door_3_hydraulic01_right" + }, { + "translation": [ + 0.0000152587891, 0, 0.0000153183937 + ], + "rotation": [ + -0.0000194106142, 0.00000117137029, 2.08616214e-7, 1 + ], + "scale": [ + 1.00000036, 1.00000012, 1.000001 + ], + "mesh": 13, + "name": "C_DOOR_01_RIGHT_1" + }, { + "translation": [ + 0.723948359, -1.95345688, 23.5944271 + ], + "rotation": [ + 0.00493113929, 0.705479443, -0.0346209928, 0.707867146 + ], + "scale": [ + 0.9999999, 0.99999994, 0.99999994 + ], + "name": "Door_Left02_center", + "children": [23, 24, 25] + }, { + "translation": [ + 0.3847618, -0.58023, -0.0432002544 + ], + "rotation": [ + 0.7827109, 0.116333261, 0.33318314, 0.5126591 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "Door_Left03_center" + }, { + "translation": [ + -0.0374679565, -0.0009829998, 0.00260835886 + ], + "rotation": [ + 0.0256656017, 0.658943355, 0.751574039, 0.016473908 + ], + "scale": [ + 0.9999999, 1.00000024, 1.00000012 + ], + "mesh": 14, + "name": "C_Door_left" + }, { + "translation": [ + 0.05247307, -0.443425417, 0.06258595 + ], + "rotation": [ + -0.004931191, -0.7054795, 0.03462106, 0.7078671 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 15, + "name": "Livery_KLM_LGDoor" + }, { + "translation": [ + 0.7319975, -1.76198089, 25.1398849 + ], + "rotation": [ + -0.0667134, 0.7025059, -0.0471375138, 0.7069745 + ], + "scale": [ + 0.9999999, 1.00000012, 0.9999999 + ], + "name": "Door_Left01_center", + "children": [27, 29, 31] + }, { + "translation": [ + 0.00000190734863, 0, 0 + ], + "rotation": [ + -4.65661454e-10, 3.49245965e-10, -3.72529074e-9, 1 + ], + "scale": [ + 0.9999999, 0.9999997, 1.00000012 + ], + "name": "C_Door_01_left", + "children": [28] + }, { + "translation": [ + 0.9292221, -0.0627961159, -0.198352814 + ], + "rotation": [ + -0.07631371, 0.6918082, -0.074589476, 0.7141527 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "mesh": 16, + "name": "Door_Left01_Decals_center" + }, { + "translation": [ + -0.7485962, -0.05103779, -0.416645736 + ], + "rotation": [ + -0.00976675749, -0.791484535, 0.164192423, 0.58864063 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Left03_hydraulic01_center", + "children": [30] + }, { + "translation": [ + 0.0008330345, 0.0000643730164, 0.00287055969 + ], + "rotation": [ + -0.0109974416, 0.08394133, -0.02724418, 0.9960375 + ], + "scale": [ + 1.00000048, 1.00000072, 1.00000036 + ], + "mesh": 17, + "name": "C_Door_03_hydraulic01_left" + }, { + "translation": [ + 0.000009536743, -0.00000381469727, 0.00000947713852 + ], + "rotation": [ + -1.65775191e-7, 1.15257137e-8, -3.72523346e-9, 1 + ], + "scale": [ + 0.999999642, 0.9999999, 1.00000119 + ], + "mesh": 18, + "name": "C_DOOR_01_LEFT_1" + }, { + "name": "Wing_left", + "children": [33, 40, 195, 197] + }, { + "translation": [ + 1.450443, 1.40532589, -32.1805077 + ], + "rotation": [ + -0.699695766, 0.021218136, 0.08916643, 0.7085372 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "Trim_Elevator_left", + "children": [34, 36, 37, 38, 39] + }, { + "translation": [ + 4.46584272, 4.07697868, 0.00621420145 + ], + "rotation": [ + 0.7352894, 0.102221251, 0.101580471, 0.662255049 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "name": "Elevator_left", + "children": [35] + }, { + "translation": [ + 1.37752342, 0.07313466, 0.0150775909 + ], + "rotation": [ + -0.03903282, 0.00639575953, -0.0045935805, 0.99920696 + ], + "scale": [ + 0.99999994, 1.00000012, 1.00000012 + ], + "mesh": 19, + "name": "ELEVATOR_LEFT_1" + }, { + "translation": [ + 0.000002861023, -0.000005722046, -0.00000381469727 + ], + "rotation": [ + 0.699695766, -0.0212180838, -0.08916639, 0.7085372 + ], + "scale": [ + 1, 1.00000012, 0.99999994 + ], + "mesh": 20, + "name": "TRIM_ELEVATOR_LEFT_1" + }, { + "translation": [ + 2.06527, 1.33728981, 0.291667283 + ], + "rotation": [ + -0.08916645, -0.7085372, -0.699695766, -0.021218054 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "mesh": 21, + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "translation": [ + -6.54495144, -31.5664921, -0.6193118 + ], + "rotation": [ + 0.699695766, -0.021218149, -0.08916643, 0.7085372 + ], + "scale": [ + 0.99999994, 1, 0.9999998 + ], + "mesh": 22, + "name": "FROST_ELEVATORL" + }, { + "translation": [ + -0.0295944214, 0.0199012756, -0.0831717849 + ], + "rotation": [ + 0.699695766, -0.0212181453, -0.08916643, 0.7085372 + ], + "scale": [ + 1, 0.99999994, 0.9999999 + ], + "mesh": 23, + "name": "Livery_KLM_ElevatorTrimL" + }, { + "translation": [ + 3.348375, -0.123601377, -1.04428136 + ], + "rotation": [ + 0.00473341, 0.2594188, 0.0519678928, 0.964354157 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000024 + ], + "name": "WING_BONE_LEFT_00", + "children": [ + 41, + 90, + 93, + 97, + 157, + 161, + 165, + 167, + 169, + 171, + 183, + 184, + 185, + 186, + 190, + 194 + ] + }, { + "translation": [ + 8.314296, -0.00000137090683, -5.364418e-7 + ], + "rotation": [ + -8.754432e-8, 1.20198811e-8, -3.7252903e-9, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "name": "WING_BONE_LEFT_01", + "children": [ + 42, + 72, + 74, + 77, + 79, + 85, + 87, + 89 + ] + }, { + "translation": [ + 6.33785439, -0.03361386, -0.00021648407 + ], + "rotation": [ + 7.636845e-8, 8.58562856e-8, -3.72529e-9, 1 + ], + "scale": [ + 1.00000024, 0.99999994, 1.00000012 + ], + "name": "WING_BONE_LEFT_02", + "children": [ + 43, + 53, + 54, + 55, + 58, + 60, + 62, + 64, + 66, + 68, + 70, + 71 + ] + }, { + "translation": [ + 6.566532, -0.00651597977, 0.002133131 + ], + "rotation": [ + 7.497147e-8, 6.48724452e-8, -1.63912773e-7, 1 + ], + "scale": [ + 0.9999999, 1, 0.9999999 + ], + "name": "WING_BONE_LEFT_03", + "children": [44, 49, 50, 51, 52] + }, { + "translation": [ + 5.34786224, 0.0235242844, -0.00155836344 + ], + "rotation": [ + -5.220064e-7, -2.883608e-7, 3.72529065e-8, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 0.999999762 + ], + "name": "WING_BONE_LEFT_04", + "children": [45, 46, 47, 48] + }, { + "translation": [ + 5.1418705, 0.203219891, -1.33749044 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 24, + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "translation": [ + 1.00637817, 0.0480079651, 1.13949251 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 25, + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "translation": [ + 0.660989761, 0.0385291576, 1.23135138 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 26, + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "translation": [ + -0.04543686, 0.288306952, 1.03098464 + ], + "rotation": [ + 0.682595, 0.02664601, -0.03207462, 0.7296063 + ], + "scale": [ + 1.00000072, 1.00000083, 1.00000048 + ], + "name": "FlapsKrueger_5_left" + }, { + "translation": [ + -0.2617283, 0.11290288, 0.0147028565 + ], + "rotation": [ + 0.009747561, -0.0007136329, 0.9998518, 0.0141735217 + ], + "scale": [ + 1.00000024, 1.00000048, 0.99999994 + ], + "name": "Wing_Spoiler_2_5_left" + }, { + "translation": [ + -0.004673004, -0.00971519947, -0.461001784 + ], + "rotation": [ + 0.008513641, -0.0145073226, 0.00494640833, 0.9998463 + ], + "scale": [ + 1.00000083, 0.9999997, 1.00000012 + ], + "name": "Aileron_1_left" + }, { + "translation": [ + 3.998932, 0.0289180279, -0.344465554 + ], + "rotation": [ + 0.008513387, -0.0145070786, 0.00494640134, 0.999846339 + ], + "scale": [ + 1.00000072, 0.9999997, 1.00000012 + ], + "name": "Aileron_2_left" + }, { + "translation": [ + 0.03655243, 0.36692667, 1.46626389 + ], + "rotation": [ + 0.682594657, 0.026645815, -0.0320744365, 0.729606569 + ], + "scale": [ + 1.000001, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_4_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Wing_Spoiler_2_3_left" + }, { + "translation": [ + 0.214468, 0.01886487, -0.6683294 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Wing_Spoiler_2_2_left" + }, { + "translation": [ + 6.303793, -0.008411646, -0.6237762 + ], + "rotation": [ + -0.00684345234, 0.6832026, 0.0139844446, 0.730062962 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000024 + ], + "name": "Flaps_3_left", + "children": [56] + }, { + "translation": [ + -0.111465216, -0.127858162, -2.3174572 + ], + "rotation": [ + 0.703286, -0.0672622249, -0.0638457462, 0.704832137 + ], + "scale": [ + 0.999999464, 0.999998331, 0.999998868 + ], + "name": "flap_hydrolics_19_left", + "children": [57] + }, { + "translation": [ + 0.0153001547, 0.0232906342, -0.008199096 + ], + "rotation": [ + -0.000507709745, -0.0210990068, -0.00375087513, 0.9997702 + ], + "scale": [ + 0.9999993, 1.00000048, 0.99999994 + ], + "mesh": 27, + "name": "FLAP_HYDROLICS_19_LEFT_1" + }, { + "translation": [ + 0.214487076, 0.019739747, -0.6686902 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_2_left", + "children": [59] + }, { + "translation": [ + 0.0147925019, 0.00008714199, -2.45054913 + ], + "rotation": [ + 0.646681, 0.2757257, 0.286153734, 0.651072264 + ], + "scale": [ + 1.00000024, 0.9999973, 1.00000048 + ], + "mesh": 28, + "name": "flap_hydrolics_11_left" + }, { + "translation": [ + 0.204582214, -0.17100656, -0.421413481 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_2_left", + "children": [61] + }, { + "translation": [ + -0.001513958, -0.00104188919, 0.0128517151 + ], + "rotation": [ + 0.670056, 0.217436329, 0.228743762, 0.67188 + ], + "scale": [ + 1.00000024, 0.9999979, 1.00000012 + ], + "mesh": 29, + "name": "flap_hydrolics_12_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_3_left", + "children": [63] + }, { + "translation": [ + 0.000710487366, 0.0001436472, 0.009151459 + ], + "rotation": [ + 0.6933912, 0.128251716, 0.1392013, 0.6952576 + ], + "scale": [ + 1, 0.9999978, 1.00000024 + ], + "mesh": 30, + "name": "flap_hydrolics_13_left" + }, { + "translation": [ + 2.60530663, -0.109168291, -0.32803908 + ], + "rotation": [ + 0.00760348374, 0.6947899, 0.00263366452, 0.719167769 + ], + "scale": [ + 0.9999992, 0.999999344, 1.00000107 + ], + "name": "Hydrolic2_SPOILER_2_3_left", + "children": [65] + }, { + "translation": [ + -0.0005912781, 0.0001180172, 0.0129165649 + ], + "rotation": [ + 0.6939637, 0.128385171, 0.140233874, 0.6944538 + ], + "scale": [ + 1.00000024, 0.999997735, 0.99999994 + ], + "mesh": 31, + "name": "flap_hydrolics_14_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506818056 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_4_left", + "children": [67] + }, { + "translation": [ + -0.000372886658, 0.000455856323, 0.00738716125 + ], + "rotation": [ + 0.7028646, 0.06744854, 0.07868144, 0.703733861 + ], + "scale": [ + 1.00000072, 0.9999983, 0.9999999 + ], + "mesh": 32, + "name": "flap_hydrolics_15_left" + }, { + "translation": [ + 4.92433929, -0.07270765, -0.265460849 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_4_left", + "children": [69] + }, { + "translation": [ + -0.001408577, 0.000199437141, 0.0114135742 + ], + "rotation": [ + 0.7035866, 0.0670059, 0.07907146, 0.703010559 + ], + "scale": [ + 1.0000006, 0.9999979, 0.99999994 + ], + "mesh": 33, + "name": "flap_hydrolics_16_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506819963 + ], + "rotation": [ + 0.00760329235, 0.6947918, 0.00263375067, 0.719166 + ], + "scale": [ + 0.999999046, 0.9999996, 1.000001 + ], + "name": "Wing_Spoiler_2_4_left" + }, { + "translation": [ + -0.2762127, 0.432390571, 2.03908443 + ], + "rotation": [ + 0.682594657, 0.0266456641, -0.0320743136, 0.729606569 + ], + "scale": [ + 1.00000131, 0.9999998, 1 + ], + "name": "FlapsKrueger_3_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Wing_Spoiler_2_1_left", + "children": [73] + }, { + "translation": [ + -0.004470825, 0.128246546, 3.35858059 + ], + "rotation": [ + 0.0002453411, -0.7072614, -0.0002866963, 0.706952155 + ], + "scale": [ + 0.9999994, 1, 1.0000006 + ], + "mesh": 34, + "skin": 6, + "name": "Spoiler_2_1_left" + }, { + "translation": [ + 2.86842632, -0.255201161, -1.31981921 + ], + "rotation": [ + -0.00684322044, 0.6832027, 0.0139845619, 0.730062842 + ], + "scale": [ + 0.9999999, 0.999999762, 1.00000012 + ], + "name": "FLAPS_2_LEFT_1", + "children": [75] + }, { + "translation": [ + -0.08635807, -0.170148611, 2.576231 + ], + "rotation": [ + 0.729701459, -0.14941819, -0.107722856, 0.6584875 + ], + "scale": [ + 0.999999762, 0.999998748, 0.999999464 + ], + "name": "flap_hydrolics_18_left", + "children": [76] + }, { + "translation": [ + -0.0000109672546, 0, 0.000004053116 + ], + "rotation": [ + 9.31322e-9, 8.195633e-8, -8.26548359e-8, 1 + ], + "scale": [ + 1.0000006, 1.0000006, 1.00000024 + ], + "mesh": 35, + "name": "FLAP_HYDROLICS_18_LEFT_1" + }, { + "translation": [ + 1.75635815, 0.1111089, -1.07744527 + ], + "rotation": [ + -0.00158689881, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 0.999999166, 0.999999166, 0.9999998 + ], + "name": "Wing_Spoiler_1_4_left", + "children": [78] + }, { + "translation": [ + 0, 0, 4.76837158e-7 + ], + "rotation": [ + 3.0622283e-7, 4.01306721e-8, 4.284011e-8, 1 + ], + "scale": [ + 1.00002778, 1.00000024, 0.9999723 + ], + "mesh": 36, + "name": "Spoiler_2_left" + }, { + "translation": [ + 1.266262, -0.357050836, -0.87978965 + ], + "rotation": [ + 0.0357552953, -0.105803363, 0.0137958294, 0.9936483 + ], + "scale": [ + 0.999999, 0.9999991, 0.9999996 + ], + "name": "Hydrolic2_Flaps_1_1_left", + "children": [80, 82, 84] + }, { + "translation": [ + -0.002585411, 0.30455035, -0.6518159 + ], + "rotation": [ + -0.0045641847, -0.004072023, -0.000149001367, 0.9999813 + ], + "scale": [ + 1.00000012, 0.99999994, 0.99999994 + ], + "name": "Flaps_1_1_left", + "children": [81] + }, { + "translation": [ + 0.523469, -0.5627987, -0.07737923 + ], + "rotation": [ + -0.03284918, 0.0177827682, 0.00322128274, 0.999296963 + ], + "scale": [ + 1.00000048, 1.00000072, 1.00000072 + ], + "mesh": 37, + "name": "FLAPS_1_1_LEFT_1" + }, { + "translation": [ + -0.0025844574, 0.304550469, -0.651815653 + ], + "rotation": [ + 0.00173283485, -0.0000230509668, -0.000235040134, 0.9999985 + ], + "scale": [ + 1.00000024, 0.999999642, 1 + ], + "name": "Hydrolic1_Flaps_1_1_left", + "children": [83] + }, { + "translation": [ + 0.6360626, -0.04079473, -0.041585207 + ], + "rotation": [ + -0.03863465, 0.0177982952, 0.00283285324, 0.9990909 + ], + "scale": [ + 0.9999998, 1.00000024, 1.00000012 + ], + "mesh": 38, + "name": "flap_hydrolics_07_left" + }, { + "translation": [ + -0.0536785126, 0.00131106377, 0.00219249725 + ], + "rotation": [ + -0.0368924662, 0.0178085864, 0.00286287675, 0.9991565 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999998 + ], + "mesh": 39, + "name": "flap_hydrolics_08_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic1_SPOILER_2_1_left", + "children": [86] + }, { + "translation": [ + -0.0002374649, 0.00002503395, -0.000346183777 + ], + "rotation": [ + 0.634095, 0.3029134, 0.3136548, 0.6385825 + ], + "scale": [ + 0.999999464, 0.9999992, 1.00000072 + ], + "mesh": 40, + "name": "flap_hydrolics_09_left" + }, { + "translation": [ + 4.08401966, -0.29387182, -0.499293 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic2_SPOILER_2_1_left", + "children": [88] + }, { + "translation": [ + -0.0008596778, 0.00188809633, 0.0116519928 + ], + "rotation": [ + 0.647216439, 0.2763276, 0.287694246, 0.6496045 + ], + "scale": [ + 1.0000006, 0.9999995, 1.00000072 + ], + "mesh": 41, + "name": "flap_hydrolics_10_left" + }, { + "translation": [ + -1.92368126, 0.48232764, 2.70130849 + ], + "rotation": [ + 0.6825947, 0.0266455319, -0.0320741422, 0.729606569 + ], + "scale": [ + 1.00000143, 1.00000024, 1.00000024 + ], + "name": "FLAPSKRUEGER_2_LEFT_1" + }, { + "translation": [ + 1.22019815, 0.462972224, 3.0046103 + ], + "rotation": [ + 0.682609856, 0.0262488779, -0.031650465, 0.7296253 + ], + "scale": [ + 0.9999991, 0.999999464, 0.9999997 + ], + "name": "FlapsKrueger_1_left", + "children": [91, 92] + }, { + "translation": [ + -0.0539937019, -0.430570126, 0.539565444 + ], + "rotation": [ + -0.673679233, 0.0101103038, 0.0123357642, 0.7388517 + ], + "scale": [ + 0.9999997, 0.9999995, 1.00000072 + ], + "mesh": 42, + "name": "FLAPSKRUEGER_1_LEFT_1" + }, { + "translation": [ + -4.2860055, -4.131102, -0.2542407 + ], + "rotation": [ + -0.652156353, -0.250215173, 0.169562742, 0.6952215 + ], + "scale": [ + 1.00000036, 0.9999996, 1.00000036 + ], + "mesh": 43, + "name": "FROST_KRUEGER_L_1" + }, { + "translation": [ + 5.42593765, -0.5243263, -3.44257951 + ], + "rotation": [ + -0.047746323, 0.516863644, 0.00933413, 0.854684234 + ], + "scale": [ + 0.999999046, 0.9999994, 0.999999642 + ], + "name": "Flaps_1_left", + "children": [94, 96] + }, { + "translation": [ + 0.00532531738, -0.341880441, 2.4792347 + ], + "rotation": [ + 0.723513842, 0.00672937743, 0.05795717, 0.6878397 + ], + "scale": [ + 1.0000006, 0.999999642, 1 + ], + "name": "flap_hydrolics_17_left", + "children": [95] + }, { + "translation": [ + 0.00171327591, 0.059969902, 0.008609772 + ], + "rotation": [ + -0.01973867, 0.016000133, 0.008083922, 0.999644458 + ], + "scale": [ + 1.00000036, 1.000001, 0.999999642 + ], + "mesh": 44, + "name": "FLAP_HYDROLICS_17_LEFT_1" + }, { + "translation": [ + 0.0536632538, -0.5436183, -0.022418499 + ], + "rotation": [ + 0.007425616, -0.7111071, -0.00804647, 0.702998459 + ], + "scale": [ + 1.00000036, 0.9999992, 1.00000012 + ], + "mesh": 45, + "name": "FLAPS_1_LEFT_1" + }, { + "translation": [ + 3.86463928, -0.591216445, -3.30302334 + ], + "rotation": [ + 0.4957455, -0.06434884, 0.8660403, -0.008359094 + ], + "scale": [ + 0.9999995, 0.9999992, 0.9999999 + ], + "name": "Wheel_Base_left", + "children": [ + 98, + 100, + 107, + 120, + 127, + 131, + 132, + 155, + 156 + ] + }, { + "translation": [ + 0.238498211, 0.6228665, -0.060988903 + ], + "rotation": [ + -0.7381156, -0.653139, 0.109995052, 0.128436789 + ], + "scale": [ + 0.999999762, 0.9999995, 1.0000006 + ], + "name": "Landing_Gear_18_left", + "children": [99] + }, { + "translation": [ + 0.00000190734863, 0.00000190734863, 0.00000166893 + ], + "rotation": [ + 0.000003450439, 5.44823457e-8, -1.03143933e-7, 1 + ], + "scale": [ + 1.00000036, 1.00000048, 0.999999 + ], + "mesh": 46, + "name": "Landing_Gear_Part19_left" + }, { + "translation": [ + 0.3341503, 2.01456714, -0.263353348 + ], + "rotation": [ + -0.7060459, 0.0425602868, -0.7058247, -0.0387211032 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999997 + ], + "name": "Landing_Gear_33_left", + "children": [101, 106] + }, { + "translation": [ + -0.117916107, 0.148765087, -0.04537821 + ], + "rotation": [ + -0.984737754, 0.008130156, -0.173853, 0.0007824776 + ], + "scale": [ + 0.9999992, 1.00000107, 0.9999999 + ], + "name": "Landing_Gear_37_left", + "children": [102, 104, 105] + }, { + "translation": [ + -0.667953968, -0.574824452, -0.007077217 + ], + "rotation": [ + -0.508839, -0.4962332, 0.4942222, 0.5005796 + ], + "scale": [ + 0.9999965, 1.00000238, 1.00000072 + ], + "name": "Landing_Gear_17_left", + "children": [103] + }, { + "translation": [ + -0.0272221565, 0.002465725, -0.408620954 + ], + "rotation": [ + 0.5143786, -0.5180429, 0.4851442, -0.481332958 + ], + "scale": [ + 0.9999987, 1.00000012, 1.000001 + ], + "mesh": 47, + "name": "LANDING_GEAR_17_LEFT_1" + }, { + "translation": [ + -0.220382929, 2.38418579e-7, -0.112304211 + ], + "rotation": [ + -4.22581365e-8, -4.030838e-8, 3.632154e-8, 1 + ], + "scale": [ + 0.9999999, 1.00000083, 0.9999992 + ], + "name": "Landing_Gear_31_left" + }, { + "translation": [ + 0.0101299286, 0.00364518166, 0.00000238418579 + ], + "rotation": [ + 1.22614921e-7, -0.173648015, 7.93907361e-7, 0.9848078 + ], + "scale": [ + 1.000001, 0.9999976, 1.0000025 + ], + "mesh": 48, + "name": "LANDING_GEAR_31_LEFT_1" + }, { + "translation": [ + 0.006790161, -0.00124406815, -0.0103011131 + ], + "rotation": [ + -3.725284e-8, -1.09896568e-7, 3.35275672e-7, 1 + ], + "scale": [ + 0.9999994, 0.9999993, 1.000001 + ], + "mesh": 49, + "name": "LANDING_GEAR_33_LEFT_1" + }, { + "translation": [ + 0.66707325, 2.00849175, -0.241577148 + ], + "rotation": [ + -0.7096821, -0.09555769, -0.696978, 0.0379722454 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999998 + ], + "name": "Landing_Gear_34_left", + "children": [108, 119] + }, { + "translation": [ + -0.09678888, 0.1311264, 0.0691962242 + ], + "rotation": [ + -0.8397728, -0.406130165, 0.352002054, 0.07703619 + ], + "scale": [ + 0.999999046, 1.00000119, 0.9999998 + ], + "name": "Landing_Gear_38_left", + "children": [109, 118] + }, { + "translation": [ + -0.006328702, -0.943199158, 0.00322252512 + ], + "rotation": [ + -0.7569836, -0.6488944, 0.07686616, 0.001832599 + ], + "scale": [ + 0.9999984, 1.00000346, 0.9999983 + ], + "name": "Landing_Gear_32_left", + "children": [110, 115, 117] + }, { + "translation": [ + 0, -2.38418579e-7, 4.76837158e-7 + ], + "rotation": [ + -1.71364093e-7, -3.35274137e-8, 5.960465e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999995, 1.00000036 + ], + "name": "Landing_Gear_27_left", + "children": [111, 113, 114] + }, { + "translation": [ + -0.161371708, 0.885039, -0.0548084974 + ], + "rotation": [ + 0.0121803228, -0.607089639, 0.0937830061, 0.7889858 + ], + "scale": [ + 0.999996841, 0.9999983, 1.00000453 + ], + "name": "Landing_Gear_28_left", + "children": [112] + }, { + "translation": [ + 0.00000256299973, 0.4443332, 0.00737190247 + ], + "rotation": [ + 0.00000261374657, -0.4681256, 0.0000024261667, 0.8836619 + ], + "scale": [ + 0.9999967, 0.9999975, 1.00000632 + ], + "mesh": 50, + "name": "LANDING_GEAR_28_LEFT_1" + }, { + "translation": [ + 0.0539302826, 0.152822375, -0.0107142925 + ], + "rotation": [ + -0.04510645, 0.07957641, 0.09312738, 0.9914436 + ], + "scale": [ + 0.9999985, 0.9999958, 1.00000453 + ], + "name": "Landing_Gear_23_left" + }, { + "translation": [ + -0.07389498, 0.454004765, -0.0186923742 + ], + "rotation": [ + -0.1835608, 0.381385475, -0.104945131, 0.8999095 + ], + "scale": [ + 0.9999988, 1.00000024, 1.00000668 + ], + "mesh": 51, + "name": "Landing_Gear_27_right001" + }, { + "translation": [ + -1.28527832, 0.0296032429, 0.135627866 + ], + "rotation": [ + -0.0498267226, 0.05795893, -0.0002607252, 0.9970747 + ], + "scale": [ + 0.99999404, 1.00000179, 1.00000525 + ], + "name": "Landing_Gear_29_left", + "children": [116] + }, { + "translation": [ + -0.447705269, -0.06923795, 0.05178225 + ], + "rotation": [ + -0.6097395, -0.338335365, 0.63166225, -0.338747263 + ], + "scale": [ + 0.999999046, 1.0000006, 0.999998868 + ], + "mesh": 52, + "name": "LANDING_GEAR_29_LEFT_1" + }, { + "translation": [ + 0.0160899162, 0.0256969929, -0.00000512599945 + ], + "rotation": [ + 3.76317445e-7, 0.01775, 4.247506e-7, 0.999842465 + ], + "scale": [ + 0.999998748, 0.999995947, 1.000003 + ], + "mesh": 53, + "name": "Landing_Gear_30_left" + }, { + "translation": [ + 0.00585496426, -0.0052781105, 0.0000017285347 + ], + "rotation": [ + 6.43079659e-7, -0.396177, 0.00000111980921, 0.9181742 + ], + "scale": [ + 1.00000131, 0.9999988, 1.000001 + ], + "mesh": 54, + "name": "LANDING_GEAR_32_LEFT_1" + }, { + "translation": [ + 0.00686788559, -0.00369477272, -0.009638786 + ], + "rotation": [ + -0.00000101327885, -9.778888e-8, -5.51343e-7, 1 + ], + "scale": [ + 1.00000012, 0.9999997, 1.00000036 + ], + "mesh": 55, + "name": "LANDING_GEAR_34_LEFT_1" + }, { + "translation": [ + 0.276956558, 1.2843008, -0.173484325 + ], + "rotation": [ + -0.708400846, -0.000837276748, -0.70367527, -0.0548514463 + ], + "scale": [ + 0.9999982, 1.00000179, 1 + ], + "name": "Landing_Gear_20_left", + "children": [121, 126] + }, { + "translation": [ + -0.008528233, 0.0648286343, -0.0042090416 + ], + "rotation": [ + 0.5267732, 0.43828246, -0.377283126, 0.6229574 + ], + "scale": [ + 1, 1, 0.999999464 + ], + "name": "Landing_Gear_21_left", + "children": [122, 124, 125] + }, { + "translation": [ + -0.00144147873, -0.162924767, -0.0667929649 + ], + "rotation": [ + 0.5143717, -0.5180526, 0.4851355, 0.4813385 + ], + "scale": [ + 0.99999845, 1.00000036, 1.00000072 + ], + "name": "Landing_Gear_19_left", + "children": [123] + }, { + "translation": [ + -0.5397191, -0.00603055954, -0.291377544 + ], + "rotation": [ + 0.004267429, 0.490773618, -0.173197985, 0.8538885 + ], + "scale": [ + 1.00000346, 0.9999982, 0.9999986 + ], + "mesh": 56, + "name": "Landing_Gear_Part18_left" + }, { + "translation": [ + -9.536743e-7, -0.13403368, -0.00518023968 + ], + "rotation": [ + 4.84279781e-8, -9.413213e-8, 3.74281157e-8, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000048 + ], + "name": "Landing_Gear_41_left" + }, { + "translation": [ + -0.000002861023, 0, 4.76837158e-7 + ], + "rotation": [ + -1.24800067e-7, -5.26737153e-7, -5.51843755e-7, 1 + ], + "scale": [ + 0.999999166, 1.00000143, 0.999999 + ], + "mesh": 57, + "name": "LANDING_GEAR_21_LEFT_1" + }, { + "translation": [ + 0.00686883926, -0.00106394291, -0.0102648735 + ], + "rotation": [ + -2.32821549e-8, -0.0000010428472, 5.792848e-7, 1 + ], + "scale": [ + 1.00000155, 0.999998033, 0.9999999 + ], + "mesh": 58, + "name": "Landing_Gear_Part17_left" + }, { + "translation": [ + 0.2054596, 2.51543021, 0.0104985237 + ], + "rotation": [ + 0.05778034, 0.701247156, 0.707739532, 0.06339251 + ], + "scale": [ + 1.00000048, 1.0000006, 0.9999989 + ], + "name": "Landing_Gear_07_left", + "children": [128, 129, 130] + }, { + "translation": [ + 0.713954, -0.125073433, 0.177424431 + ], + "rotation": [ + -0.444532126, -0.450933218, 0.5486535, 0.5459211 + ], + "scale": [ + 1.000001, 1.00000107, 0.999999046 + ], + "name": "landing_gear08_left" + }, { + "translation": [ + 0.302407265, -0.1270957, -0.1663909 + ], + "rotation": [ + -0.4445324, -0.450934261, 0.548653364, 0.545920134 + ], + "scale": [ + 0.999999642, 1.00000262, 0.999999166 + ], + "name": "landing_gear01_left" + }, { + "translation": [ + 0.00425291061, 0.00234031677, -0.005068302 + ], + "rotation": [ + 0.00184090692, 0.09832058, 0.004563279, 0.9951427 + ], + "scale": [ + 0.999999642, 0.9999991, 1.000001 + ], + "mesh": 59, + "name": "LANDING_GEAR_07_LEFT_1" + }, { + "translation": [ + 0.2576151, 2.26505852, -0.121347904 + ], + "rotation": [ + -0.7060459, 0.0425600223, -0.705824733, -0.0387208536 + ], + "scale": [ + 1.00000036, 1.00000167, 1.00000012 + ], + "name": "landing_gear07_left" + }, { + "translation": [ + 0.37328434, 3.202888, -0.0094332695 + ], + "rotation": [ + -0.001716404, -0.707084954, -0.00556211546, 0.7071046 + ], + "scale": [ + 0.9999992, 1.00000048, 0.99999994 + ], + "name": "Landing_Gear_10_left", + "children": [ + 133, + 135, + 136, + 152, + 153, + 154 + ] + }, { + "translation": [ + 0.02512598, -0.339024067, 0.11894083 + ], + "rotation": [ + -0.53749454, -0.5397919, -0.461148649, 0.455045432 + ], + "scale": [ + 0.9999951, 0.999999046, 1.00000632 + ], + "name": "Landing_Gear_08_left", + "children": [134] + }, { + "translation": [ + 0.506958961, -0.05496788, -0.228200436 + ], + "rotation": [ + 0.00223838841, -0.0008782044, 0.00402347045, 0.999989033 + ], + "scale": [ + 1.00000525, 1.00000179, 0.9999936 + ], + "mesh": 60, + "name": "LANDING_GEAR_08_LEFT_1" + }, { + "translation": [ + -0.106812954, -0.1869855, 0.245285511 + ], + "rotation": [ + -0.99862957, -4.82746259e-7, 4.917588e-7, -0.05233586 + ], + "scale": [ + 1.00000107, 1.00000143, 0.9999998 + ], + "name": "landing_gear05_left" + }, { + "translation": [ + 0, 0.00338745117, -0.0809435844 + ], + "rotation": [ + -0.99862957, -1.53951171e-10, -6.803354e-11, -0.0523355044 + ], + "scale": [ + 0.99999994, 0.999999762, 1 + ], + "name": "Landing_Gear_09_left", + "children": [ + 137, + 139, + 141, + 145, + 148, + 151 + ] + }, { + "translation": [ + 0.04093027, -0.241693735, -0.0619039536 + ], + "rotation": [ + -0.500420034, -0.500418, 0.499581784, -0.499579519 + ], + "scale": [ + 0.9999992, 1.000001, 1 + ], + "name": "Landing_Gear_35_left", + "children": [138] + }, { + "translation": [ + -0.00000429153442, 0.00000476837158, 4.76837158e-7 + ], + "rotation": [ + -4.8733348e-8, 1.25524792e-7, 1.252752e-7, 1 + ], + "scale": [ + 1.000001, 0.999999642, 0.9999998 + ], + "mesh": 61, + "name": "LANDING_GEAR_35_LEFT_1" + }, { + "translation": [ + 0.0474247932, -0.24166441, 0.0612587929 + ], + "rotation": [ + -0.5004198, -0.500417769, 0.499582082, -0.499579728 + ], + "scale": [ + 0.9999991, 1.000001, 0.9999999 + ], + "name": "Landing_Gear_36_left", + "children": [140] + }, { + "translation": [ + -0.00000667572, 9.536743e-7, 0.00000190734863 + ], + "rotation": [ + -2.105719e-7, 2.05880411e-7, -1.02073642e-7, 1 + ], + "scale": [ + 1.00000155, 0.9999993, 0.9999996 + ], + "mesh": 62, + "name": "LANDING_GEAR_36_LEFT_1" + }, { + "translation": [ + 0.09416151, 0.312451124, 0.243170738 + ], + "rotation": [ + 0.5010935, -0.499796718, 0.49570924, 0.50336957 + ], + "scale": [ + 1.00000036, 1.00000036, 1.00000012 + ], + "name": "Landing_Gear_06_left", + "children": [142, 143, 144] + }, { + "translation": [ + 0.414316177, 0.08274412, -0.02635479 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear03_left" + }, { + "translation": [ + 0.217025757, 0.08245802, -0.258730173 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear02_left" + }, { + "translation": [ + 0.001385212, -0.004263401, -0.0006480217 + ], + "rotation": [ + -0.5010937, 0.499796867, -0.49570927, 0.5033693 + ], + "scale": [ + 1.00000036, 1, 0.9999999 + ], + "mesh": 63, + "name": "LANDING_GEAR_37_LEFT_1" + }, { + "translation": [ + 0.0517382622, -0.00169229507, 0.681097031 + ], + "rotation": [ + -8.662515e-7, 9.862437e-15, 7.1051156500000006e-15, 1 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_01_key_left", + "children": [146, 147] + }, { + "translation": [ + 4.76837158e-7, 0, -0.00000190734863 + ], + "rotation": [ + 2.03230229e-7, -4.57464466e-9, 1.16597221e-8, 1 + ], + "scale": [ + 1.00000966, 0.999988139, 1.000002 + ], + "mesh": 64, + "name": "LWheel_01_still" + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, 0 + ], + "rotation": [ + 8.026786e-7, -8.105201e-15, 0, 1 + ], + "scale": [ + 0.999952137, 1.000008, 1.0000416 + ], + "mesh": 65, + "name": "LWheel_01_blurred" + }, { + "translation": [ + 0.03893137, -0.00159454346, -0.7607932 + ], + "rotation": [ + -1, -3.5525578200000003e-15, 1.26194213e-14, 1.19248815e-8 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_02_key_left", + "children": [149, 150] + }, { + "translation": [ + -4.76837158e-7, 2.38418579e-7, 9.536743e-7 + ], + "rotation": [ + -1, 4.19458956e-9, 9.397331e-8, -8.636363e-8 + ], + "scale": [ + 1.00000989, 0.9999879, 1.000002 + ], + "mesh": 66, + "name": "LWheel_02_still" + }, { + "translation": [ + 0, -2.38418579e-7, 0 + ], + "rotation": [ + -1, -2.421439e-8, 9.313227e-8, 1.19248869e-8 + ], + "scale": [ + 1.00001, 0.9999903, 1.00000131 + ], + "mesh": 67, + "name": "LWheel_02_blurred" + }, { + "translation": [ + 0.0457148552, -0.0004107952, 0.00207710266 + ], + "rotation": [ + 0.0009058531, 0.00443709036, -0.00318521913, 0.9999847 + ], + "scale": [ + 1.00000048, 1.00000012, 1.00000083 + ], + "mesh": 68, + "name": "LANDING_GEAR_09_LEFT_1" + }, { + "translation": [ + 0.0153021812, -0.474268675, -0.275248051 + ], + "rotation": [ + -0.9986295, -5.223288e-7, 0.00000105891706, -0.05233606 + ], + "scale": [ + 1.000003, 0.999992669, 1.00000656 + ], + "name": "landing_gear06_left" + }, { + "translation": [ + -0.106812, -0.491230726, -0.296488762 + ], + "rotation": [ + -0.9992415, -2.31640115e-7, -0.00000165028121, -0.0389420353 + ], + "scale": [ + 0.9999983, 1.00000632, 0.9999982 + ], + "name": "landing_gear04_left" + }, { + "translation": [ + -0.0005788803, -0.809247255, -0.0569825172 + ], + "rotation": [ + -0.0553977527, 4.78036952e-7, -8.406143e-9, 0.998464346 + ], + "scale": [ + 1.00000238, 1, 0.9999996 + ], + "mesh": 69, + "name": "LANDING_GEAR_10_LEFT_1" + }, { + "translation": [ + 1.22382164, -0.348029673, -0.153943539 + ], + "rotation": [ + 0.00730145676, -0.7070985, 0.00345581421, 0.707069039 + ], + "scale": [ + 0.999999464, 1.00000012, 1 + ], + "name": "Landing_Gear_14_left" + }, { + "translation": [ + -0.00000143051147, 1.1920929e-7, -0.00000143051147 + ], + "rotation": [ + 4.764878e-7, 3.57205778e-7, -5.997716e-7, 1 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000024 + ], + "mesh": 70, + "name": "Landing_gear_Root_left" + }, { + "translation": [ + 7.87326145, -0.4715016, -1.4636035 + ], + "rotation": [ + -0.04368639, 0.5110596, 0.006458442, 0.85841006 + ], + "scale": [ + 1.0000267, 0.9999997, 0.9999734 + ], + "name": "Spoiler_hydrolics_06_left", + "children": [158, 160] + }, { + "translation": [ + 0.30559063, 0.37230444, 0.0004930496 + ], + "rotation": [ + -0.00121602661, 0.0246534385, -0.364978939, 0.93068856 + ], + "scale": [ + 0.999999, 0.999998868, 1.00000012 + ], + "name": "Spoiler_hydrolics_05_left", + "children": [159] + }, { + "translation": [ + 0.0000376701355, 0.0000147819519, -0.0010433197 + ], + "rotation": [ + 0.7149413, -0.00608872669, 0.0374087878, 0.6981564 + ], + "scale": [ + 0.999979854, 1.00002944, 0.999990344 + ], + "mesh": 71, + "name": "flap_hydrolics_05_left" + }, { + "translation": [ + 0.00003671646, 0.00152552128, 0.0145664215 + ], + "rotation": [ + 0.6659422, -0.239492759, -0.237719357, 0.6653223 + ], + "scale": [ + 0.999983132, 1.00002623, 0.9999892 + ], + "mesh": 72, + "name": "flap_hydrolics_06_left" + }, { + "translation": [ + 2.3125658, -0.8711244, -4.775808 + ], + "rotation": [ + 0.6289141, 0.328698784, -0.377832532, 0.594698846 + ], + "scale": [ + 0.999999, 1.00000024, 0.9999997 + ], + "name": "Landing_Gear_15_left", + "children": [162, 164] + }, { + "translation": [ + -0.107633591, 0.367097139, 0.221658289 + ], + "rotation": [ + -0.579571843, 0.415744662, -0.575418234, -0.400183469 + ], + "scale": [ + 0.9999995, 1.000001, 0.9999995 + ], + "name": "Landing_Gear_16_left", + "children": [163] + }, { + "translation": [ + 0.6249037, -0.004712105, -0.7102189 + ], + "rotation": [ + -0.296005577, 0.308045536, -0.6393893, 0.639273 + ], + "scale": [ + 1, 1.00000036, 1.00000143 + ], + "mesh": 73, + "name": "LANDING_GEAR_16_LEFT_1" + }, { + "translation": [ + 0.0102796555, 0.006780863, 0.0013923645 + ], + "rotation": [ + 5.085027e-7, 0.00000134401807, -5.152547e-7, 1 + ], + "scale": [ + 1.00000072, 0.9999988, 0.9999991 + ], + "mesh": 74, + "name": "LANDING_GEAR_15_LEFT_1" + }, { + "translation": [ + 1.24259949, -1.15350151, -2.95930552 + ], + "rotation": [ + 0.479384363, -0.257725239, 0.833346248, 0.09644882 + ], + "scale": [ + 0.9999996, 0.999999344, 0.9999994 + ], + "name": "Door02_left", + "children": [166] + }, { + "translation": [ + 0.02654028, 0.0114119649, 0.0213627815 + ], + "rotation": [ + -1.49026427e-8, -1.1177006e-8, -0.0141202239, 0.999900341 + ], + "scale": [ + 0.9999995, 0.9999997, 1 + ], + "mesh": 75, + "name": "DOOR02_LEFT_1" + }, { + "translation": [ + 3.96934652, -0.816748261, -2.69679284 + ], + "rotation": [ + 0.538764954, -0.0777338743, 0.838860333, -0.00181733642 + ], + "scale": [ + 0.9999999, 0.9999993, 0.9999994 + ], + "name": "Door03_left", + "children": [168] + }, { + "translation": [ + 0.0025601387, -0.02516359, 0.003338337 + ], + "rotation": [ + 2.80328379e-7, 3.83181145e-7, -9.872014e-7, 1 + ], + "scale": [ + 1.00000119, 1, 0.999998152 + ], + "mesh": 76, + "name": "DOOR03_LEFT_1" + }, { + "translation": [ + 3.8755126, -0.573711038, -3.31409645 + ], + "rotation": [ + -0.96442163, 0.05358719, -0.258697569, -0.009747672 + ], + "scale": [ + 1, 0.9999997, 1 + ], + "name": "WING_DOOR02_left", + "children": [170] + }, { + "translation": [ + 0.058608532, 0.0118765831, -0.009229183 + ], + "rotation": [ + -0.0207277965, -0.0226739179, -0.0009644232, 0.9995276 + ], + "scale": [ + 0.999999344, 1.00000048, 1.00000036 + ], + "mesh": 77, + "name": "Door04_left" + }, { + "translation": [ + 5.868531, -0.6075288, 2.41399121 + ], + "rotation": [ + 0.007325325, -0.259887159, -0.06454417, 0.9634517 + ], + "scale": [ + 0.9999994, 0.999999344, 0.999999642 + ], + "name": "Engine_PIVOT_LEFT_1", + "children": [ + 172, + 176, + 179, + 180, + 181, + 182 + ] + }, { + "translation": [ + 0.187080383, -1.39431429, 7.75744867 + ], + "rotation": [ + -0.706999362, -0.004892461, 0.7069988, -0.0167527739 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Reactor_Prop_Still_left", + "children": [173, 174, 175] + }, { + "translation": [ + 2.09179735, -5.96046448e-7, -0.000002861023 + ], + "rotation": [ + -0.570607, -0.417621344, 0.570607245, 0.417621285 + ], + "scale": [ + 1.00000036, 1.0000006, 1.00000036 + ], + "mesh": 78, + "name": "1_still_left" + }, { + "translation": [ + 2.09180021, 0, -0.000005722046 + ], + "rotation": [ + 1.12611218e-7, -0.7071068, -8.231805e-8, 0.7071067 + ], + "scale": [ + 0.9999999, 0.9999998, 0.999998569 + ], + "mesh": 79, + "name": "1_slow_left" + }, { + "translation": [ + 2.09180021, 0, -0.000005722046 + ], + "rotation": [ + 1.12611218e-7, -0.7071068, -8.231805e-8, 0.7071067 + ], + "scale": [ + 0.9999999, 0.9999998, 0.999998569 + ], + "mesh": 80, + "name": "1_blurred_left" + }, { + "translation": [ + 0.185770988, -1.42669415, 2.07120037 + ], + "rotation": [ + -0.00841917, -0.000007856129, 0.0153245768, 0.9998472 + ], + "scale": [ + 0.997038, 1.00016522, 1.00284588 + ], + "name": "Reactor_Back_left", + "children": [177, 178] + }, { + "translation": [ + -9.805232, 1.54839826, 0.7013677 + ], + "rotation": [ + 1.27329267e-8, 2.38411957e-8, -1.09866932e-7, 1 + ], + "scale": [ + 1.00000024, 1.00000024, 0.9999999 + ], + "mesh": 81, + "name": "Engine_Duct_left" + }, { + "translation": [ + 0.000841140747, -0.06300306, 0.8666706 + ], + "rotation": [ + -1, -7.674675e-8, 1.70852331e-7, -1.26456158e-7 + ], + "scale": [ + 0.999999762, 1.0000006, 1 + ], + "mesh": 82, + "name": "Engine_Details04_left" + }, { + "translation": [ + -9.662218, -0.181626678, 1.91145933 + ], + "rotation": [ + -0.008386433, -3.84061735e-7, 0.0153054595, 0.9998477 + ], + "scale": [ + 1.00000072, 1.00000012, 0.9999996 + ], + "mesh": 83, + "skin": 7, + "name": "Engine_Body_left" + }, { + "translation": [ + 0.188099861, -1.456358, 4.35355 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 84, + "name": "FX_EXHAUST_LEFT" + }, { + "translation": [ + -9.66222, -0.1816263, 1.91145885 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 85, + "name": "FROST_ENGINEL" + }, { + "translation": [ + 0.1700716, -1.13339233, 4.487426 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 86, + "name": "Livery_KLM_EngA" + }, { + "translation": [ + 3.62843657, -0.5176573, -4.124836 + ], + "rotation": [ + -0.0436866172, 0.511059642, 0.00645813253, 0.8584101 + ], + "scale": [ + 0.999999642, 0.999999046, 0.9999993 + ], + "name": "Spoiler_1_1_left" + }, { + "translation": [ + 7.982996, -0.0362906456, -1.76054883 + ], + "rotation": [ + -0.0436880365, 0.511059463, 0.006455744, 0.8584102 + ], + "scale": [ + 1.00002742, 0.9999997, 0.999972761 + ], + "name": "Spoiler_1_3_left" + }, { + "translation": [ + 5.91475, -0.2239846, -2.897406 + ], + "rotation": [ + -0.0452547148, 0.504299164, 0.005931459, 0.862322 + ], + "scale": [ + 1.000028, 0.9999999, 0.9999706 + ], + "name": "Spoiler_1_2_left" + }, { + "translation": [ + 5.84781456, -0.608062744, -2.62398887 + ], + "rotation": [ + -0.043685995, 0.5110597, 0.006459456, 0.85841006 + ], + "scale": [ + 0.9999993, 0.999998748, 0.9999998 + ], + "name": "Spoiler_hydrolics_04_left", + "children": [187, 189] + }, { + "translation": [ + 0.266388416, 0.3188628, -0.007379055 + ], + "rotation": [ + -0.00605567638, 0.0124739613, 0.4357108, 0.899979949 + ], + "scale": [ + 1.00000525, 1.00001335, 0.9999815 + ], + "name": "Spoiler_hydrolics_03_left", + "children": [188] + }, { + "translation": [ + 0.00000166893, -0.00000238418579, 0.00000429153442 + ], + "rotation": [ + 0.636156, 0.0000268497988, 0.00002964402, 0.771560431 + ], + "scale": [ + 0.999997735, 1.00004709, 0.999956548 + ], + "mesh": 87, + "name": "flap_hydrolics_03_left" + }, { + "translation": [ + 0.00217676163, 0.00169038773, 0.0149145126 + ], + "rotation": [ + 0.6338134, 0.3134134, 0.303551435, 0.638677657 + ], + "scale": [ + 1.00000167, 0.999998868, 1.00000083 + ], + "mesh": 88, + "name": "flap_hydrolics_04_left" + }, { + "translation": [ + 3.50820732, -0.7972355, -3.85419559 + ], + "rotation": [ + -0.04368655, 0.511059642, 0.006458112, 0.8584101 + ], + "scale": [ + 0.9999995, 0.999999, 0.9999994 + ], + "name": "Spoiler_hydrolics_01_left", + "children": [191, 193] + }, { + "translation": [ + 0.2856431, 0.290298223, 0.00000190734863 + ], + "rotation": [ + 0.6595856, 0.287899733, 0.275730371, 0.637207448 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000012 + ], + "name": "Spoiler_hydrolics_02_left", + "children": [192] + }, { + "translation": [ + -0.00575137138, 0.008098125, -0.0113773346 + ], + "rotation": [ + -0.0199170541, 0.000381270453, 0.00180420093, 0.999799967 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999997 + ], + "mesh": 89, + "name": "flap_hydrolics_02_left" + }, { + "translation": [ + 0.00109243393, -0.0003077984, 0.01602459 + ], + "rotation": [ + 0.6477004, 0.281892449, 0.283828348, 0.6484306 + ], + "scale": [ + 1.00000083, 1.00000072, 1.000001 + ], + "mesh": 90, + "name": "flap_hydrolics_01_left" + }, { + "translation": [ + 12.9740458, -1.4153657, 6.55199146 + ], + "rotation": [ + 0.00732529536, -0.2598874, -0.06454403, 0.963451564 + ], + "scale": [ + 1.00000036, 1.00000012, 1.00000107 + ], + "name": "Engine_PIVOT_LEFT_2" + }, { + "translation": [ + 0.317629337, -0.32808125, -5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 2.86940356e-8, -1.9079441e-7 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "name": "Door03_Hydraulic01_left", + "children": [196] + }, { + "translation": [ + -1.1920929e-7, -8.940697e-8, 0 + ], + "rotation": [ + 2.13163024e-14, 7.26885652e-12, 7.450586e-9, 1 + ], + "scale": [ + 0.999999344, 1.00000048, 0.999999464 + ], + "mesh": 91, + "name": "Landing_Gear_02_left" + }, { + "translation": [ + 0.6497253, -2.102611, -5.016356 + ], + "rotation": [ + 0.490909845, 0.490909845, -0.508927763, 0.508927941 + ], + "name": "WING_DOOR03_left", + "children": [198, 200] + }, { + "translation": [ + 0.07994127, 0.32234937, -0.158693552 + ], + "name": "Door03_Hydraulic02_left", + "children": [199] + }, { + "translation": [ + -0.00000238418579, -3.57627869e-7, -4.76837158e-7 + ], + "rotation": [ + 0.472544938, 0.5420785, 0.454038471, 0.526024163 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000072 + ], + "mesh": 92, + "name": "Landing_Gear_01_left" + }, { + "translation": [ + -9.536743e-7, 2.38418579e-7, 0.00000190734863 + ], + "rotation": [ + 0.00565281929, 0.719710231, 0.005452775, 0.694230139 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 93, + "name": "Door01_left" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "rotation": [ + 0.0270323772, 0, 0, 0.999634564 + ], + "name": "Landing_Gear_NosePart16_center", + "children": [ + 202, + 206, + 210, + 225, + 228, + 230, + 234, + 237, + 238, + 239, + 240, + 241, + 242, + 243 + ] + }, { + "translation": [ + 0.226090789, -0.9272857, 0.305862427 + ], + "rotation": [ + -0.0270318538, 0.00418857532, -0.00003651558, 0.9996258 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Landing_Gear_NosePart10_center", + "children": [203, 204] + }, { + "translation": [ + -1.63912773e-7, 2.38418579e-7, 0.00000190734863 + ], + "rotation": [ + 0.02703253, -0.00000138185567, -0.00007671616, 0.999634564 + ], + "scale": [ + 1.00000048, 1, 1.00000119 + ], + "mesh": 94, + "name": "LANDING_GEAR_NOSEPART10_CENTER_1" + }, { + "translation": [ + -0.0236788, 0.00500941277, -0.220270157 + ], + "rotation": [ + 0.0352128372, 0.09999999, -0.00323027675, 0.994358957 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Landing_Gear_NosePart10_center001", + "children": [205] + }, { + "translation": [ + -0.00000381469727, 0.0185222626, -0.000305175781 + ], + "rotation": [ + -0.00810365, -0.26956287, 0.00226858282, 0.962946057 + ], + "scale": [ + 1.0000006, 1.00000024, 1.00000072 + ], + "mesh": 95, + "name": "Landing_Gear_NosePart11_center" + }, { + "translation": [ + -0.229184151, -0.9398352, 0.313922882 + ], + "rotation": [ + -0.0270323772, -4.13823678e-8, -1.43921968e-8, 0.999634564 + ], + "scale": [ + 1.00000012, 1.00000024, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center", + "children": [207, 208] + }, { + "translation": [ + -3.27825546e-7, 0.114622593, 0.00000190734863 + ], + "rotation": [ + 0.0270324629, 1.30312552e-8, -3.523957e-10, 0.999634564 + ], + "scale": [ + 1.00000012, 0.9999994, 0.9999998 + ], + "mesh": 96, + "name": "LANDING_GEAR_NOSEPART09_CENTER_1" + }, { + "translation": [ + 0.0319646746, 0.0176465511, -0.229705811 + ], + "rotation": [ + 0.0384532958, -0.0858134, -0.00141277455, 0.995567858 + ], + "scale": [ + 1.00000012, 0.9999998, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center001", + "children": [209] + }, { + "translation": [ + 0, 0.0190068483, -0.000453948975 + ], + "rotation": [ + -0.0120299952, -0.08268228, 0.0009981699, 0.9965029 + ], + "scale": [ + 0.9999997, 0.999998331, 0.999999464 + ], + "mesh": 97, + "name": "Landing_Gear_NosePart12_center" + }, { + "translation": [ + -3.14321369e-9, -0.9186151, -0.05517769 + ], + "rotation": [ + -2.33349866e-7, -0.1679142, -4.27881552e-8, 0.985801637 + ], + "scale": [ + 1.00000012, 1.00000012, 0.9999998 + ], + "name": "Gear_Wheel_center", + "children": [211, 212, 221] + }, { + "translation": [ + -0.00000143051147, -4.76837158e-7, 0 + ], + "rotation": [ + 4.656611e-8, 5.26778576e-9, -9.918585e-8, 1 + ], + "scale": [ + 0.99999994, 1.00000024, 1.0000006 + ], + "mesh": 98, + "name": "GEAR_WHEEL_CENTER_1" + }, { + "translation": [ + 0.025592804, -0.410430431, 0.0496406555 + ], + "rotation": [ + 0.000342083629, 0.205400854, 0.009056285, 0.978636 + ], + "scale": [ + 1.00000012, 0.9999996, 0.9999997 + ], + "name": "Landing_Gear_NosePart13_center", + "children": [213, 217, 220] + }, { + "translation": [ + -0.005656481, -0.0457814932, -0.172786713 + ], + "rotation": [ + 0.7665125, -1.98397316e-7, 1.3196258e-7, 0.6422294 + ], + "scale": [ + 0.9999999, 1.00000072, 1.00000024 + ], + "name": "Landing_Gear_NosePart14_center", + "children": [214, 215, 216] + }, { + "translation": [ + 0.008430719, -0.368497849, -0.329550982 + ], + "rotation": [ + -0.7748584, -0.00707002264, -0.005481687, 0.632071555 + ], + "scale": [ + 0.99999994, 0.999999464, 1.00000048 + ], + "name": "gear_pipe_point_3_center" + }, { + "translation": [ + 0.152873755, -0.407253265, -0.544180155 + ], + "rotation": [ + -0.239663631, -0.3107777, -0.5303443, 0.751474261 + ], + "scale": [ + 1.00000179, 1.00000072, 1.00000072 + ], + "mesh": 99, + "name": "LANDING_GEAR_NOSEPART14_CENTER_1" + }, { + "translation": [ + 0.002431035, 0.0204620361, -0.0752792358 + ], + "rotation": [ + -0.7826159, -0.00700203935, -0.00556876557, 0.6224405 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "gear_pipe_point_4_center" + }, { + "translation": [ + -0.00845921, -0.307320476, -0.00150299072 + ], + "rotation": [ + 0.000004078425, -0.0004563113, -0.008934856, 0.99996 + ], + "scale": [ + 0.9999999, 1.00000012, 0.99999994 + ], + "name": "Wheel_center", + "children": [218, 219] + }, { + "translation": [ + -4.76837158e-7, 0.00402164459, 0.0326004028 + ], + "rotation": [ + -0.03619078, -4.34149428e-8, 8.65532641e-8, 0.999344945 + ], + "scale": [ + 1.00000024, 1.00000048, 1.000001 + ], + "mesh": 100, + "name": "Wheel_Nose_center" + }, { + "translation": [ + -1.1920929e-7, -0.00000143051147, -0.00000762939453 + ], + "rotation": [ + -2.51456868e-7, 2.706654e-9, 1.16415141e-10, 1 + ], + "scale": [ + 1.00000155, 1.00000215, 0.9999995 + ], + "mesh": 101, + "name": "Wheel_Nose_blurred" + }, { + "translation": [ + 0.023517251, 1.46494114, 0.03237343 + ], + "rotation": [ + 0.00152149913, -0.000469868537, -0.008934152, 0.9999589 + ], + "scale": [ + 0.999999642, 0.9999999, 1.00000119 + ], + "mesh": 102, + "name": "LANDING_GEAR_NOSEPART13_CENTER_1" + }, { + "translation": [ + -0.0414872169, 0.002967, -0.12130928 + ], + "rotation": [ + -0.5139819, -0.64576596, 0.48561582, -0.2880733 + ], + "scale": [ + 1.00000072, 1.00000012, 0.999999762 + ], + "name": "Landing_Gear_NosePart15_center", + "children": [222, 223, 224] + }, { + "translation": [ + 0.289751053, 0.00052285206, -0.0499343872 + ], + "rotation": [ + -0.5000002, -0.500000358, 0.499999583, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_1_center" + }, { + "translation": [ + 0.212629318, 0.0005228169, -0.05453205 + ], + "rotation": [ + -0.500000238, -0.5000002, 0.499999732, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_5_center" + }, { + "translation": [ + 0.00269889832, 0.0456213951, 0.000205516815 + ], + "rotation": [ + 0.00264596264, 0.05184801, 0.163293138, 0.9852107 + ], + "scale": [ + 1, 1, 1.00000131 + ], + "mesh": 103, + "name": "LANDING_GEAR_NOSEPART15_CENTER_1" + }, { + "translation": [ + 0.2793044, -0.5019189, -0.021528244 + ], + "rotation": [ + 0.63214463, -0.3321479, -0.34455055, 0.609389842 + ], + "scale": [ + 1.00000024, 0.99999994, 0.9999997 + ], + "name": "Door_Left02_hydraulic02_center", + "children": [226, 227] + }, { + "translation": [ + 0.021283865, 0.03582573, -0.04520595 + ], + "rotation": [ + 0.0583817624, 0.4792682, -0.534093261, 0.6940015 + ], + "scale": [ + 1.00000012, 1.00000024, 0.99999994 + ], + "name": "Door_Left02_hydraulic01_center" + }, { + "translation": [ + -0.7160956, -23.2311268, -0.128610775 + ], + "rotation": [ + -0.03177691, 0.478265047, 0.0173201021, 0.87746954 + ], + "scale": [ + 1.00000119, 1.00000036, 0.9999988 + ], + "mesh": 104, + "name": "DOOR_LEFT02_HYDRAULIC02_CENTER_1" + }, { + "translation": [ + -0.000778198242, -0.671867967, 0.21672821 + ], + "rotation": [ + -0.00007376257, -0.8692236, 0.494419247, 0.0000236660471 + ], + "name": "Landing_Gear_NosePart07_center", + "children": [229] + }, { + "translation": [ + 0.001102281, -0.0000705719, 0.000005722046 + ], + "rotation": [ + 0.205769673, -0.205759555, 0.676484, 0.6765288 + ], + "scale": [ + 1.00000024, 0.9999999, 1.00000024 + ], + "mesh": 105, + "name": "LANDING_GEAR_NOSEPART07_CENTER_1" + }, { + "translation": [ + -0.5013134, -0.144065619, 0.170331955 + ], + "rotation": [ + 0.429701567, 0.4297139, -0.5615561, 0.56156677 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart04_center", + "children": [231, 233] + }, { + "translation": [ + 0.00000190734863, 1.1920929e-7, -1.76764107 + ], + "rotation": [ + 0, 0, 2.27373675e-13, 1 + ], + "name": "Landing_Gear_NosePart05_center", + "children": [232] + }, { + "translation": [ + 0.0594539642, 1.03389919, -0.09794426 + ], + "rotation": [ + 5.275856e-8, -0.0256937686, -9.250723e-7, 0.9996699 + ], + "mesh": 106, + "name": "LANDING_GEAR_NOSEPART05_CENTER_1" + }, { + "translation": [ + 0.0221004486, 1.00975037, -1.06558466 + ], + "rotation": [ + 0.00000110255019, -0.0256935041, -0.00000113028636, 0.9996699 + ], + "scale": [ + 1, 0.999999464, 1.00000048 + ], + "mesh": 107, + "name": "LANDING_GEAR_NOSEPART04_CENTER_1" + }, { + "translation": [ + -0.2793044, -0.501918554, -0.02152443 + ], + "rotation": [ + -0.593563855, -0.336227626, 0.3405706, 0.647027552 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "name": "Door_Right02_hydraulic02_center", + "children": [235, 236] + }, { + "translation": [ + -0.021283865, -0.0358276367, 0.0452079773 + ], + "rotation": [ + 0.04388803, 0.429552048, -0.5823844, 0.6887579 + ], + "scale": [ + 0.99999994, 1.00000048, 0.99999994 + ], + "name": "Door_Right02_hydraulic01_center" + }, { + "translation": [ + 0.711719632, 23.1657619, -1.01514959 + ], + "rotation": [ + -0.05347659, 0.4785471, 0.005482652, 0.876414835 + ], + "scale": [ + 1, 1.00000083, 1.00000155 + ], + "mesh": 108, + "name": "DOOR_RIGHT02_HYDRAULIC02_CENTER_1" + }, { + "translation": [ + -0.27957353, -0.480545521, 0.166381836 + ], + "rotation": [ + 0.486302555, -0.5133354, -0.486299068, 0.513332069 + ], + "mesh": 109, + "name": "Landing_Gear_NosePart16_Decals_center" + }, { + "translation": [ + 0.0015354983, -1.42278039, 0.146409988 + ], + "rotation": [ + -0.0270324219, 0, 0, 0.999634564 + ], + "mesh": 110, + "name": "cgear_landinglight_center" + }, { + "translation": [ + -0.169818163, -0.327804923, 0.138235092 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 111, + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "translation": [ + 0, -3.57627869e-7, 0 + ], + "rotation": [ + 7.450581e-9, 0, 0, 1 + ], + "mesh": 112, + "name": "LANDING_GEAR_NOSEPART16_CENTER_1" + }, { + "translation": [ + 0.174989372, -0.328628778, 0.1374855 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 113, + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "translation": [ + -0.306189775, -0.196983218, 0.138235092 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 114, + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "translation": [ + 0.312226921, -0.197624326, 0.1374836 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 115, + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "translation": [ + 0.007133007, -0.478288829, 23.7857571 + ], + "rotation": [ + 0.00000354928, -0.7505983, 0.6607588, -0.0000114836384 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart06_center", + "children": [245, 251] + }, { + "translation": [ + 0, -0.09894562, 1.36242163 + ], + "rotation": [ + 0.009296398, -4.547671e-13, 5.11612942e-13, 0.9999568 + ], + "name": "Landing_Gear_NosePart02_center", + "children": [246, 248, 250] + }, { + "translation": [ + 0, 0.27699852, 0.04716277 + ], + "rotation": [ + 0.1933725, 0, -1.158739e-13, 0.9811255 + ], + "name": "Landing_Gear_NosePart01_center", + "children": [247] + }, { + "translation": [ + 0.0160449371, -0.060836792, 0.01735878 + ], + "rotation": [ + -0.17340219, 0.167300239, 0.679301739, 0.693175 + ], + "scale": [ + 1.00000083, 1.00000012, 1.00000036 + ], + "mesh": 116, + "name": "LANDING_GEAR_NOSEPART01_CENTER_1" + }, { + "translation": [ + 1.49011612e-8, 0.07812691, -0.0590516329 + ], + "rotation": [ + 0.0038900394, -0.00000305861067, 0.0000105023964, 0.99999243 + ], + "scale": [ + 0.9999999, 0.9999996, 1.00000036 + ], + "name": "Landing_Gear_NosePart03_center", + "children": [249] + }, { + "translation": [ + 0.00877857, -0.07200813, 0.002490878 + ], + "rotation": [ + -0.707086563, 0.00641556876, -0.707067668, 0.006538429 + ], + "scale": [ + 0.9999999, 1.00000036, 0.999999762 + ], + "mesh": 117, + "name": "LANDING_GEAR_NOSEPART03_CENTER_1" + }, { + "translation": [ + 0.000221985858, -0.07459831, -0.00764238834 + ], + "rotation": [ + 0.0383453444, -0.0383694321, 0.706078, 0.7060533 + ], + "scale": [ + 1.00000119, 0.999999762, 1.00000024 + ], + "mesh": 118, + "name": "LANDING_GEAR_NOSEPART02_CENTER_1" + }, { + "translation": [ + 0.00474187545, -0.00036239624, -0.000593423843 + ], + "rotation": [ + 0.044926744, -0.0449127778, 0.7056745, 0.7056826 + ], + "scale": [ + 1.00000083, 1.00000048, 1.0000006 + ], + "mesh": 119, + "name": "LANDING_GEAR_NOSEPART06_CENTER_1" + }, { + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "name": "Wing_right", + "children": [253, 255, 262, 417] + }, { + "translation": [ + -0.317629337, 0.32808125, 5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 1.94817673e-8, -1.84558758e-7 + ], + "scale": [ + 0.9999999, 1.00000024, 0.9999999 + ], + "name": "Door03_Hydraulic01_right", + "children": [254] + }, { + "translation": [ + -2.98023224e-8, 2.98023224e-8, 0 + ], + "rotation": [ + 1.62920685e-7, -4.37114167e-8, -1.63912773e-7, 1 + ], + "mesh": 120, + "name": "Landing_Gear_02_right" + }, { + "translation": [ + -1.450443, -1.40532589, 32.1805077 + ], + "rotation": [ + -0.6996959, 0.02121799, 0.08916648, 0.7085371 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Trim_Elevator_right", + "children": [256, 258, 259, 260, 261] + }, { + "translation": [ + -4.46584368, -4.07698631, -0.00621521473 + ], + "rotation": [ + 0.7352896, 0.102219775, 0.1015787, 0.662255347 + ], + "scale": [ + 1.0000006, 1.00000024, 1.0000006 + ], + "name": "Elevator_right", + "children": [257] + }, { + "translation": [ + -1.37752151, -0.07314253, -0.0150871277 + ], + "rotation": [ + -0.0390324965, 0.00639819959, -0.004593635, 0.99920696 + ], + "scale": [ + 0.9999998, 1, 0.99999994 + ], + "mesh": 121, + "name": "ELEVATOR_RIGHT_1" + }, { + "translation": [ + -2.0646615, -1.33726311, -0.2853936 + ], + "rotation": [ + -0.0212182011, -0.699696064, 0.7085369, 0.08916638 + ], + "scale": [ + 0.999999464, 1.00000024, 0.99999994 + ], + "mesh": 122, + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "translation": [ + 6.54495764, 31.5664921, 0.619330764 + ], + "rotation": [ + -0.708536863, 0.08916645, -0.0212180633, 0.6996961 + ], + "scale": [ + 0.9999995, 1.00000024, 0.999999762 + ], + "mesh": 123, + "name": "FROST_ELEVATORR" + }, { + "translation": [ + -0.000006198883, 0.0000114440918, -0.00000381469727 + ], + "rotation": [ + -0.708537, 0.0891663954, -0.0212181248, 0.699696 + ], + "scale": [ + 0.9999994, 1.00000036, 0.99999994 + ], + "mesh": 124, + "name": "TRIM_ELEVATOR_RIGHT_1" + }, { + "translation": [ + 0.0295910835, -0.0198898315, 0.08316809 + ], + "rotation": [ + -0.708537042, 0.08916648, -0.02121799, 0.699695945 + ], + "scale": [ + 0.999999642, 1.00000024, 0.9999998 + ], + "mesh": 125, + "name": "Livery_KLM_ElevatorTrimR" + }, { + "translation": [ + -3.348375, 0.123601377, 1.04428136 + ], + "rotation": [ + 0.004733401, 0.259418637, 0.0519678779, 0.964354157 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "WING_BONE_RIGHT_00", + "children": [ + 263, + 265, + 267, + 279, + 282, + 286, + 290, + 291, + 292, + 293, + 297, + 301, + 305, + 354, + 356, + 416 + ] + }, { + "translation": [ + -1.24259973, 1.15350306, 2.95930767 + ], + "rotation": [ + 0.479384154, -0.2577262, 0.833346, 0.09644934 + ], + "scale": [ + 1.0000006, 1.00000012, 0.99999994 + ], + "name": "Door02_right", + "children": [264] + }, { + "translation": [ + 4.76837158e-7, 0.0000022649765, 0.00000429153442 + ], + "rotation": [ + 0.00000122934489, -6.239862e-8, 6.891781e-8, 1 + ], + "scale": [ + 0.999999762, 1.0000006, 1.000001 + ], + "mesh": 126, + "name": "DOOR02_RIGHT_1" + }, { + "translation": [ + -3.96934962, 0.816749454, 2.69679642 + ], + "rotation": [ + 0.538764834, -0.07773489, 0.8388602, -0.001816788 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000012 + ], + "name": "Door03_right", + "children": [266] + }, { + "translation": [ + -0.008354187, 0.0303759575, -0.0125937462 + ], + "rotation": [ + 0.001130274, 0.0145843672, -0.00100580836, 0.999892533 + ], + "scale": [ + 0.99999994, 0.999999642, 0.9999997 + ], + "mesh": 127, + "name": "DOOR03_RIGHT_1" + }, { + "translation": [ + -5.868534, 0.60752964, -2.41399217 + ], + "rotation": [ + 0.00732532656, -0.259887159, -0.064544186, 0.9634517 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "name": "Engine_PIVOT_RIGHT_1", + "children": [ + 268, + 271, + 275, + 276, + 277, + 278 + ] + }, { + "translation": [ + -0.1857748, 1.42669618, -2.070343 + ], + "rotation": [ + -0.00838642847, -3.57871585e-7, 0.0153054669, 0.9998477 + ], + "scale": [ + 0.999999762, 1.00000048, 1 + ], + "name": "Reactor_Back_right", + "children": [269, 270] + }, { + "translation": [ + -0.00083732605, 0.06301534, -0.867526233 + ], + "rotation": [ + -1, 2.98021838e-8, 1.86264543e-7, 6.705517e-8 + ], + "scale": [ + 1.00000024, 0.999999762, 1.00000024 + ], + "mesh": 128, + "name": "Engine_Details04_right" + }, { + "translation": [ + 0.00000762939453, -0.00000166893, 0.000005841255 + ], + "rotation": [ + -8.881797e-16, 1.68754e-14, 7.993631e-15, 1 + ], + "scale": [ + 0.999996543, 0.999998569, 1.00000513 + ], + "mesh": 129, + "name": "Engine_Duct_right" + }, { + "translation": [ + -0.187087059, 1.39431691, -7.757461 + ], + "rotation": [ + -0.70699966, -0.004893535, 0.7069985, -0.0167538542 + ], + "scale": [ + 1.00000036, 0.9999999, 0.9999994 + ], + "name": "Reactor_Prop_Still_right", + "children": [272, 273, 274] + }, { + "translation": [ + -2.09181356, 0.00000262260437, 0.000002861023 + ], + "rotation": [ + 0.707106352, -0.00000134672428, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000072, 1.00000012, 0.9999983 + ], + "mesh": 130, + "name": "2_blurred_right" + }, { + "translation": [ + -2.09181356, 0.00000262260437, 0.000002861023 + ], + "rotation": [ + 0.707106352, -0.00000134672428, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000072, 1.00000012, 0.9999983 + ], + "mesh": 131, + "name": "2_slow_right" + }, { + "translation": [ + -2.0918107, 0.00000321865082, 0.00000667572 + ], + "rotation": [ + -0.417619973, 0.5706075, -0.41762054, 0.570608258 + ], + "scale": [ + 1.00000191, 1.00000119, 0.999999166 + ], + "mesh": 132, + "name": "2_still_right" + }, { + "translation": [ + 9.662217, 0.18162635, -1.91146028 + ], + "rotation": [ + -0.008387379, -2.46197715e-7, 0.0153057016, 0.9998477 + ], + "scale": [ + 1.00000036, 0.99999994, 1 + ], + "mesh": 133, + "skin": 8, + "name": "Engine_Body_right" + }, { + "translation": [ + -0.188096046, 1.45635879, -4.35354853 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 134, + "name": "FX_EXHAUST_RIGHT" + }, { + "translation": [ + 9.662219, 0.181626022, -1.91145992 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 135, + "name": "FROST_ENGINER" + }, { + "translation": [ + -0.172908783, 1.13330376, -4.48742437 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 136, + "name": "Livery_KLM_EngB" + }, { + "translation": [ + -1.22019887, -0.462972879, -3.0046134 + ], + "rotation": [ + 0.682610035, 0.0262489542, -0.0316506177, 0.7296251 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "FlapsKrueger_1_right", + "children": [280, 281] + }, { + "translation": [ + 0.05399227, 0.430570364, -0.539564967 + ], + "rotation": [ + -0.673679531, 0.0101104192, 0.0123356963, 0.7388515 + ], + "scale": [ + 0.9999989, 1, 0.99999994 + ], + "mesh": 137, + "name": "FLAPSKRUEGER_1_RIGHT_1" + }, { + "translation": [ + 4.28600359, 4.1310997, 0.2542377 + ], + "rotation": [ + 0.695221364, 0.16956304, 0.250215232, 0.6521565 + ], + "scale": [ + 0.9999997, 0.9999996, 0.9999996 + ], + "mesh": 138, + "name": "FROST_KRUEGER_R_1" + }, { + "translation": [ + -5.42594433, 0.5245416, 3.44597554 + ], + "rotation": [ + -0.04774639, 0.5168637, 0.00933412, 0.854684234 + ], + "scale": [ + 1.00000024, 1.0000006, 1.0000006 + ], + "name": "Flaps_1_right", + "children": [283, 285] + }, { + "translation": [ + -0.005323887, 0.341879964, -2.47923374 + ], + "rotation": [ + 0.7235138, 0.006729279, 0.05795712, 0.687839746 + ], + "scale": [ + 0.9999998, 0.9999999, 1.00000012 + ], + "name": "flap_hydrolics_17_right", + "children": [284] + }, { + "translation": [ + 0.00115776062, -0.061750412, -0.008285403 + ], + "rotation": [ + 0.008083903, -0.999644458, 0.01973844, 0.016000405 + ], + "scale": [ + 0.9999997, -0.9999999, 0.9999992 + ], + "mesh": 139, + "name": "FLAP_HYDROLICS_17_RIGHT_1" + }, { + "translation": [ + -0.0536603928, 0.5436146, 0.0224204063 + ], + "rotation": [ + 0.00742581254, -0.7111071, -0.008046712, 0.702998459 + ], + "scale": [ + 1.00000048, 0.9999988, 0.9999987 + ], + "mesh": 140, + "name": "FLAPS_1_RIGHT_1" + }, { + "translation": [ + -2.31256652, 0.8711257, 4.775813 + ], + "rotation": [ + 0.6289141, 0.328698874, -0.377832651, 0.5946988 + ], + "scale": [ + 1.00000024, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_15_right", + "children": [287, 289] + }, { + "translation": [ + 0.107634544, -0.3670988, -0.2216587 + ], + "rotation": [ + -0.579570949, 0.415745556, -0.575418353, -0.400183737 + ], + "scale": [ + 1.00000083, 1.000002, 0.99999845 + ], + "name": "Landing_Gear_16_right", + "children": [288] + }, { + "translation": [ + -0.6249, 0.00471591949, 0.71022296 + ], + "rotation": [ + -0.296006382, 0.308045983, -0.63938874, 0.6392729 + ], + "scale": [ + 0.999999166, 0.9999999, 0.9999991 + ], + "mesh": 141, + "name": "LANDING_GEAR_16_RIGHT_1" + }, { + "translation": [ + -0.0102825165, -0.00678348541, -0.001392901 + ], + "rotation": [ + 2.1141e-7, 0.000001368144, -5.562065e-7, 1 + ], + "scale": [ + 0.9999993, 1.00000083, 1.00000036 + ], + "mesh": 142, + "name": "LANDING_GEAR_15_RIGHT_1" + }, { + "translation": [ + -3.62844014, 0.5168278, 4.12484026 + ], + "rotation": [ + -0.04368652, 0.5110595, 0.00645816652, 0.8584102 + ], + "scale": [ + 0.9999996, 1.0000006, 1.00000012 + ], + "name": "Spoiler_1_1_right" + }, { + "translation": [ + -5.914755, 0.223984957, 2.89741 + ], + "rotation": [ + -0.04528014, 0.5080569, 0.00573390163, 0.860113442 + ], + "scale": [ + 0.9999406, 1.00000036, 1.00005925 + ], + "name": "Spoiler_1_2_right" + }, { + "translation": [ + -7.98300171, 0.0362910032, 1.76055336 + ], + "rotation": [ + -0.0436879, 0.5110594, 0.00645576557, 0.8584102 + ], + "scale": [ + 0.999996543, 0.999997437, 1.00000763 + ], + "name": "Spoiler_1_3_right" + }, { + "translation": [ + -3.50821, 0.7972367, 3.85419965 + ], + "rotation": [ + -0.0436865352, 0.5110595, 0.00645813067, 0.8584102 + ], + "scale": [ + 1.0000006, 1.00000012, 1.00000024 + ], + "name": "Spoiler_hydrolics_01_right", + "children": [294, 296] + }, { + "translation": [ + -0.2856431, -0.2902993, 0.00000143051147 + ], + "rotation": [ + 0.659585953, 0.287899345, 0.27573052, 0.6372072 + ], + "scale": [ + 1.00000048, 1.00000048, 1.00000083 + ], + "name": "Spoiler_hydrolics_02_right", + "children": [295] + }, { + "translation": [ + 0.00574922562, -0.008095264, 0.0113787651 + ], + "rotation": [ + 0.00180345017, -0.999799967, 0.0199165847, 0.000381658523 + ], + "scale": [ + 0.999998569, -0.999998748, 0.9999978 + ], + "mesh": 143, + "name": "flap_hydrolics_02_right" + }, { + "translation": [ + -0.00109386444, 0.000306129456, -0.0160236359 + ], + "rotation": [ + 0.283828259, -0.648430169, -0.647700846, 0.281892866 + ], + "scale": [ + 0.9999999, -0.9999997, 0.999999464 + ], + "mesh": 144, + "name": "flap_hydrolics_01_right" + }, { + "translation": [ + -5.847822, 0.6080638, 2.62399244 + ], + "rotation": [ + -0.0436855778, 0.5110596, 0.006460557, 0.8584101 + ], + "scale": [ + 0.9999967, 0.9999998, 1.000003 + ], + "name": "Spoiler_hydrolics_04_right", + "children": [298, 300] + }, { + "translation": [ + -0.266388416, -0.318862677, 0.00736522675 + ], + "rotation": [ + -0.00608323934, 0.0124876853, 0.435711771, 0.8999791 + ], + "scale": [ + 0.9999625, 1.00002575, 1.00001311 + ], + "name": "Spoiler_hydrolics_03_right", + "children": [299] + }, { + "translation": [ + -0.000004053116, -0.00000238418579, 0.00002861023 + ], + "rotation": [ + 0.00006864372, -0.7715602, -0.6361563, 0.00005264744 + ], + "scale": [ + 1.00004339, -1.00006533, 0.9998908 + ], + "mesh": 145, + "name": "flap_hydrolics_03_right" + }, { + "translation": [ + -0.00217819214, -0.00169205666, -0.0149083138 + ], + "rotation": [ + 0.303572923, -0.63866055, -0.6338132, 0.3134279 + ], + "scale": [ + 1.00000381, -0.999995, 1.00000262 + ], + "mesh": 146, + "name": "flap_hydrolics_04_right" + }, { + "translation": [ + -7.873269, 0.471502423, 1.46360469 + ], + "rotation": [ + -0.043686796, 0.5110597, 0.00645971065, 0.85841006 + ], + "scale": [ + 1.00001478, 1, 0.9999853 + ], + "name": "Spoiler_hydrolics_06_right", + "children": [302, 304] + }, { + "translation": [ + -0.3056016, -0.3723048, -0.000500679 + ], + "rotation": [ + -0.00120041845, 0.0246579, -0.3649802, 0.9306879 + ], + "scale": [ + 0.999999464, 1.00000393, 0.999998748 + ], + "name": "Spoiler_hydrolics_05_right", + "children": [303] + }, { + "translation": [ + -0.00002670288, -0.0000112056732, 0.00106430054 + ], + "rotation": [ + -0.0373481959, 0.698151946, 0.714948237, 0.00616870355 + ], + "scale": [ + 0.99998033, -1.0000329, 0.999985933 + ], + "mesh": 147, + "name": "flap_hydrolics_05_right" + }, { + "translation": [ + -0.0000376701355, -0.001527667, -0.0145626068 + ], + "rotation": [ + 0.237748012, 0.6653187, 0.665919662, 0.239537075 + ], + "scale": [ + 0.999994, -1.000015, 0.9999922 + ], + "mesh": 148, + "name": "flap_hydrolics_06_right" + }, { + "translation": [ + -8.314303, 0.00000125169754, 0.00000160932541 + ], + "rotation": [ + -8.894129e-8, 1.06228981e-7, -5.58793456e-9, 1 + ], + "scale": [ + 1, 1.00000048, 1 + ], + "name": "WING_BONE_RIGHT_01", + "children": [ + 306, + 309, + 311, + 317, + 319, + 349, + 351, + 353 + ] + }, { + "translation": [ + -2.87029362, 0.254272521, 1.324141 + ], + "rotation": [ + -0.006843229, 0.6832025, 0.0139845656, 0.730062962 + ], + "scale": [ + 1.00000024, 0.99999994, 0.999999762 + ], + "name": "Flaps_2_right", + "children": [307] + }, { + "translation": [ + 0.08635962, 0.170149446, -2.57623672 + ], + "rotation": [ + 0.7297014, -0.149418682, -0.107723, 0.658487439 + ], + "scale": [ + 1.00000083, 0.999999, 1.00000119 + ], + "name": "flap_hydrolics_18_right", + "children": [308] + }, { + "translation": [ + 0.00390720367, 0.00119018555, -0.00252175331 + ], + "rotation": [ + -2.49594535e-7, -1, -3.410605e-13, 2.3096834e-7 + ], + "scale": [ + 0.9999989, -1.00000048, 0.999998152 + ], + "mesh": 149, + "name": "FLAP_HYDROLICS_18_RIGHT_1" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic1_SPOILER_2_1_right", + "children": [310] + }, { + "translation": [ + 0.00023317337, -0.0000277757645, 0.000351905823 + ], + "rotation": [ + 0.3136553, -0.638581932, -0.634095252, 0.3029137 + ], + "scale": [ + 0.9999997, -0.9999993, 1.0000006 + ], + "mesh": 150, + "name": "flap_hydrolics_09_right" + }, { + "translation": [ + -1.26626873, 0.35705173, 0.8797917 + ], + "rotation": [ + 0.0357553177, -0.105803348, 0.0137958387, 0.9936483 + ], + "scale": [ + 1.0000006, 1.00000012, 0.999999642 + ], + "name": "Hydrolic2_Flaps_1_1_right", + "children": [312, 314, 316] + }, { + "translation": [ + 0.00258350372, -0.3061065, 0.6527736 + ], + "rotation": [ + -0.00456417026, -0.004072003, -0.000149014391, 0.9999813 + ], + "scale": [ + 1.00000036, 0.99999994, 1.00000036 + ], + "name": "Flaps_1_1_right", + "children": [313] + }, { + "translation": [ + -0.523463249, 0.562795639, 0.07738614 + ], + "rotation": [ + -0.0328490622, 0.01778282, 0.00322129251, 0.999296963 + ], + "scale": [ + 1, 0.9999998, 1.000001 + ], + "mesh": 151, + "name": "FLAPS_1_1_RIGHT_1" + }, { + "translation": [ + 0.0025806427, -0.3045506, 0.651814461 + ], + "rotation": [ + 0.00173285324, -0.000023034203, -0.000235056825, 0.9999985 + ], + "scale": [ + 1.00000036, 1.00000012, 0.99999994 + ], + "name": "Hydrolic1_Flaps_1_1_right", + "children": [315] + }, { + "translation": [ + -0.6360464, 0.0407911539, 0.0415821075 + ], + "rotation": [ + -0.038634412, 0.0177982, 0.00283309584, 0.9990909 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "mesh": 152, + "name": "flap_hydrolics_07_right" + }, { + "translation": [ + 0.053689003, -0.00131309032, -0.00219392776 + ], + "rotation": [ + -0.107715167, -0.93759656, 0.0355973467, -0.328698963 + ], + "scale": [ + 0.9999998, -1, 1.0000006 + ], + "mesh": 153, + "name": "flap_hydrolics_08_right" + }, { + "translation": [ + -4.084032, 0.293872416, 0.4992954 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic2_SPOILER_2_1_right", + "children": [318] + }, { + "translation": [ + 0.000852555037, -0.00189226866, -0.0116500854 + ], + "rotation": [ + 0.2876946, -0.649604, -0.6472166, 0.276327729 + ], + "scale": [ + 1, -1.00000024, 0.9999999 + ], + "mesh": 154, + "name": "flap_hydrolics_10_right" + }, { + "translation": [ + -6.337867, 0.0336145163, 0.000215947628 + ], + "rotation": [ + 7.916242e-8, 9.260839e-8, -3.539026e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999999, 1.00000012 + ], + "name": "WING_BONE_RIGHT_02", + "children": [ + 320, + 323, + 325, + 327, + 329, + 331, + 333, + 335, + 345, + 346, + 347, + 348 + ] + }, { + "translation": [ + -6.30582237, 0.00921285152, 0.6295024 + ], + "rotation": [ + -0.006843452, 0.683202565, 0.0139844473, 0.730062962 + ], + "scale": [ + 1.00000012, 1.00000048, 1.0000006 + ], + "name": "Flaps_3_right", + "children": [321] + }, { + "translation": [ + 0.111464262, 0.127858639, 2.31747055 + ], + "rotation": [ + 0.703286, -0.06726212, -0.06384566, 0.704832137 + ], + "scale": [ + 1.00000191, 0.999998868, 0.999999642 + ], + "name": "flap_hydrolics_19_right", + "children": [322] + }, { + "translation": [ + -0.009386063, -0.0217151642, 0.008024812 + ], + "rotation": [ + -0.003751136, -0.9997702, 0.0005076986, -0.0210989844 + ], + "scale": [ + 0.9999998, -1.00000048, 0.9999997 + ], + "mesh": 155, + "name": "FLAP_HYDROLICS_19_RIGHT_1" + }, { + "translation": [ + -0.2144928, -0.019741416, 0.668693066 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic1_SPOILER_2_2_right", + "children": [324] + }, { + "translation": [ + -0.0148016214, -0.00008738041, 2.450573 + ], + "rotation": [ + 0.286154062, -0.651072145, -0.64668113, 0.2757255 + ], + "scale": [ + 1, -0.9999997, 0.999999762 + ], + "mesh": 156, + "name": "flap_hydrolics_11_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic1_SPOILER_2_3_right", + "children": [326] + }, { + "translation": [ + -0.0007276535, -0.000146627426, -0.009153366 + ], + "rotation": [ + 0.139201969, -0.695257545, -0.693391144, 0.1282517 + ], + "scale": [ + 0.9999994, -1, 0.9999995 + ], + "mesh": 157, + "name": "flap_hydrolics_13_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic1_SPOILER_2_4_right", + "children": [328] + }, { + "translation": [ + 0.000365257263, -0.000458478928, -0.007368088 + ], + "rotation": [ + 0.07868133, -0.7037338, -0.702864647, 0.06744804 + ], + "scale": [ + 1.00000012, -1.00000012, 0.9999999 + ], + "mesh": 158, + "name": "flap_hydrolics_15_right" + }, { + "translation": [ + -0.2045784, 0.171005368, 0.421416372 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic2_SPOILER_2_2_right", + "children": [330] + }, { + "translation": [ + 0.001511097, 0.0010393858, -0.01285553 + ], + "rotation": [ + 0.228744328, -0.6718799, -0.670056045, 0.21743609 + ], + "scale": [ + 0.99999994, -1, 0.999999762 + ], + "mesh": 159, + "name": "flap_hydrolics_12_right" + }, { + "translation": [ + -2.60531425, 0.109168172, 0.328037649 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic2_SPOILER_2_3_right", + "children": [332] + }, { + "translation": [ + 0.000577926636, -0.000122785568, -0.0129089355 + ], + "rotation": [ + 0.14023447, -0.6944538, -0.6939637, 0.1283847 + ], + "scale": [ + 0.9999991, -0.9999996, 0.9999997 + ], + "mesh": 160, + "name": "flap_hydrolics_14_right" + }, { + "translation": [ + -4.924349, 0.07270646, 0.26546222 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic2_SPOILER_2_4_right", + "children": [334] + }, { + "translation": [ + 0.0013961792, -0.00020301342, -0.0113925934 + ], + "rotation": [ + -0.07907142, 0.7030107, 0.7035865, -0.0670061558 + ], + "scale": [ + 1.00000012, -1.0000006, 0.99999994 + ], + "mesh": 161, + "name": "flap_hydrolics_16_right" + }, { + "translation": [ + -6.56654739, 0.00651466846, -0.00213181973 + ], + "rotation": [ + 7.636844e-8, -3.37604327e-8, -2.71946135e-7, 1 + ], + "scale": [ + 1.00000036, 1.00000024, 1.00000012 + ], + "name": "WING_BONE_RIGHT_03", + "children": [336, 337, 338, 343, 344] + }, { + "translation": [ + 0.00313949585, 0.007908225, 0.4665305 + ], + "rotation": [ + 0.00851354748, -0.0145073244, 0.00494639948, 0.999846339 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000072 + ], + "name": "Aileron_1_right" + }, { + "translation": [ + -3.99923325, -0.02995944, 0.348880529 + ], + "rotation": [ + 0.008513322, -0.0145071112, 0.004946362, 0.999846339 + ], + "scale": [ + 1.0000006, 0.9999998, 1.00000048 + ], + "name": "Aileron_2_right" + }, { + "translation": [ + -5.34786224, -0.0235247612, 0.00155442953 + ], + "rotation": [ + -5.206093e-7, -2.95578445e-7, 4.65661358e-8, 1 + ], + "scale": [ + 1.00000012, 0.999999762, 1.00000024 + ], + "name": "WING_BONE_RIGHT_04", + "children": [339, 340, 341, 342] + }, { + "translation": [ + -5.1413517, -0.203313112, 1.33965993 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 162, + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "translation": [ + -0.9967365, -0.0491733551, -1.130012 + ], + "rotation": [ + -0.2594183, 0.004733398, 0.9643543, 0.05196754 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999998 + ], + "mesh": 163, + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "translation": [ + -0.6659126, -0.038210392, -1.22074091 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 164, + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "translation": [ + 0.045425415, -0.2883048, -1.03098571 + ], + "rotation": [ + 0.682595, 0.0266460124, -0.0320746265, 0.7296063 + ], + "scale": [ + 0.9999999, 1.00000083, 1.0000006 + ], + "name": "FlapsKrueger_5_right" + }, { + "translation": [ + 0.2617283, -0.112903118, -0.0147076249 + ], + "rotation": [ + 0.009750019, -0.0007162161, 0.9998518, 0.0141735421 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000036 + ], + "name": "Wing_Spoiler_2_5_right" + }, { + "translation": [ + -0.0365695953, -0.3669269, -1.4662689 + ], + "rotation": [ + 0.682594657, 0.0266457219, -0.0320744, 0.7296066 + ], + "scale": [ + 0.99999994, 1.00000048, 1 + ], + "name": "FlapsKrueger_4_right" + }, { + "translation": [ + -0.214468, -0.018866539, 0.668332756 + ], + "rotation": [ + 0.00760329748, 0.6947902, 0.0026336154, 0.7191675 + ], + "scale": [ + 0.9999999, 1.00000107, 1.00000012 + ], + "name": "Wing_Spoiler_2_2_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.00760334125, 0.6947902, 0.00263350061, 0.7191675 + ], + "scale": [ + 0.9999999, 1.0000006, 0.9999999 + ], + "name": "Wing_Spoiler_2_3_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603228, 0.6947921, 0.00263381517, 0.7191656 + ], + "scale": [ + 0.9999999, 1.00000072, 0.9999999 + ], + "name": "Wing_Spoiler_2_4_right" + }, { + "translation": [ + 0.2762146, -0.432391644, -2.03908229 + ], + "rotation": [ + 0.6825947, 0.0266456585, -0.0320743, 0.729606569 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_3_right" + }, { + "translation": [ + -1.75636578, -0.111109138, 1.0774467 + ], + "rotation": [ + -0.00158696191, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 1.00002742, 0.999999762, 0.9999723 + ], + "name": "Wing_Spoiler_1_4_right", + "children": [350] + }, { + "translation": [ + 0.0000152587891, -0.00000274181366, 0.0000011920929 + ], + "rotation": [ + 5.52397637e-7, 8.824914e-8, 1.452863e-7, 1 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000143 + ], + "mesh": 165, + "name": "Spoiler_2_right" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.007352814, 0.694946051, 0.00291815167, 0.71901834 + ], + "scale": [ + 1.00000024, 1, 1.0000006 + ], + "name": "Wing_Spoiler_2_1_right", + "children": [352] + }, { + "translation": [ + 0.00446897745, -0.128250122, -3.358574 + ], + "rotation": [ + 0.000245485862, -0.707261562, -0.0002865527, 0.706952 + ], + "scale": [ + 0.9999997, 1.00000036, 1.00000048 + ], + "mesh": 166, + "skin": 9, + "name": "Spoiler_2_1_right" + }, { + "translation": [ + 1.923686, -0.482328415, -2.70131159 + ], + "rotation": [ + 0.6825947, 0.026645679, -0.03207439, 0.729606569 + ], + "scale": [ + 0.9999993, 1.00000012, 1.00000036 + ], + "name": "FlapsKrueger_2_right" + }, { + "translation": [ + -3.87551522, 0.573712, 3.3141005 + ], + "rotation": [ + -0.96442163, 0.0535871238, -0.258697569, -0.009747602 + ], + "scale": [ + 1.00000048, 0.9999999, 0.999999762 + ], + "name": "WING_DOOR02_right", + "children": [355] + }, { + "translation": [ + -0.142384052, -0.009114385, -0.0493211746 + ], + "rotation": [ + -0.0344319046, 0.00472003547, 0.0114177894, 0.99933064 + ], + "scale": [ + 1.0000006, 1.00000155, 1.000001 + ], + "mesh": 167, + "name": "Door04_right" + }, { + "translation": [ + -3.864641, 0.5912173, 3.303027 + ], + "rotation": [ + 0.4957456, -0.0643499047, 0.86604017, -0.008358427 + ], + "scale": [ + 1.00000072, 0.99999994, 0.9999998 + ], + "name": "Wheel_Base_right", + "children": [ + 357, + 361, + 384, + 385, + 387, + 394, + 401, + 414, + 415 + ] + }, { + "translation": [ + -0.205456257, -2.515431, -0.0104970932 + ], + "rotation": [ + 0.0577802733, 0.7012474, 0.7077393, 0.0633924752 + ], + "scale": [ + 1.00000012, 1.00000191, 0.99999845 + ], + "name": "Landing_Gear_07_right", + "children": [358, 359, 360] + }, { + "translation": [ + -0.302409172, 0.1270957, 0.16639185 + ], + "rotation": [ + -0.444534153, -0.450937033, 0.5486514, 0.545918345 + ], + "scale": [ + 1.0000006, 1.00000083, 0.999999166 + ], + "name": "landing_gear01_right" + }, { + "translation": [ + -0.7139559, 0.12507534, -0.177423239 + ], + "rotation": [ + -0.444530368, -0.45093137, 0.548656, 0.545921445 + ], + "scale": [ + 1.00000155, 1.00000143, 0.99999845 + ], + "name": "landing_gear08_right" + }, { + "translation": [ + -0.00424098969, -0.00235033035, 0.005069256 + ], + "rotation": [ + 0.00183976337, 0.0983207449, 0.004562922, 0.9951427 + ], + "scale": [ + 1, 0.9999998, 1.00000072 + ], + "mesh": 168, + "name": "LANDING_GEAR_07_RIGHT_1" + }, { + "translation": [ + -0.373281956, -3.21106887, 0.009433746 + ], + "rotation": [ + -0.00171652681, -0.707084954, -0.00556244049, 0.7071046 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000083 + ], + "name": "Landing_Gear_10_right", + "children": [ + 362, + 364, + 380, + 381, + 382, + 383 + ] + }, { + "translation": [ + -0.0251255035, 0.339024067, -0.118941784 + ], + "rotation": [ + -0.5374941, -0.539788663, -0.461154252, 0.4550439 + ], + "scale": [ + 0.999981344, 0.9999963, 1.00002265 + ], + "name": "Landing_Gear_08_right", + "children": [363] + }, { + "translation": [ + -0.5069699, 0.0549659729, 0.228192329 + ], + "rotation": [ + 0.00224471325, -0.0008815071, 0.00402767258, 0.999989 + ], + "scale": [ + 1.00001276, 1.00000262, 0.999983847 + ], + "mesh": 169, + "name": "LANDING_GEAR_08_RIGHT_1" + }, { + "translation": [ + 4.76837158e-7, -0.00338840485, 0.08094406 + ], + "rotation": [ + -0.99862957, -4.432793e-8, 3.406478e-7, -0.05233552 + ], + "scale": [ + 0.999999762, 1.00000036, 1.00000024 + ], + "name": "Landing_Gear_09_right", + "children": [ + 365, + 369, + 371, + 373, + 376, + 379 + ] + }, { + "translation": [ + -0.09416199, -0.312451124, -0.243170738 + ], + "rotation": [ + 0.501094043, -0.499797136, 0.495709479, 0.5033683 + ], + "scale": [ + 1.00000107, 1.0000006, 1.00000012 + ], + "name": "Landing_Gear_06_right", + "children": [366, 367, 368] + }, { + "translation": [ + -0.217030048, -0.08245611, 0.2587304 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear02_right" + }, { + "translation": [ + -0.414316177, -0.08274174, 0.0263545513 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear03_right" + }, { + "translation": [ + 0.0187153816, -0.000515460968, 0.00187277794 + ], + "rotation": [ + -5.820766e-10, 2.910383e-11, -3.61523866e-11, 1 + ], + "scale": [ + 1, 0.9999999, 1 + ], + "mesh": 170, + "name": "Landing_Gear_37_right" + }, { + "translation": [ + -0.04093027, 0.24169302, 0.0619034767 + ], + "rotation": [ + -0.5004197, -0.5004178, 0.4995824, -0.4995793 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000072 + ], + "name": "Landing_Gear_35_right", + "children": [370] + }, { + "translation": [ + 0.00000524520874, -0.000008583069, 0.00000381469727 + ], + "rotation": [ + -0.00000150583014, 8.05888e-8, -2.81249925e-7, 1 + ], + "scale": [ + 0.9999965, 1.00000048, 0.9999978 + ], + "mesh": 171, + "name": "LANDING_GEAR_35_RIGHT_1" + }, { + "translation": [ + -0.04742527, 0.2416637, -0.06125927 + ], + "rotation": [ + -0.5004193, -0.500418067, 0.499582171, -0.499579877 + ], + "scale": [ + 1.00000048, 0.99999845, 1.00000107 + ], + "name": "Landing_Gear_36_right", + "children": [372] + }, { + "translation": [ + 0.00000667572, -0.0000114440918, 4.76837158e-7 + ], + "rotation": [ + -0.000001685969, 1.10070765e-7, -6.11507744e-7, 1 + ], + "scale": [ + 0.9999963, 1.00000179, 0.999997735 + ], + "mesh": 172, + "name": "LANDING_GEAR_36_RIGHT_1" + }, { + "translation": [ + -0.0517377853, -0.00623846054, -0.681098 + ], + "rotation": [ + -8.662516e-7, -1.002765e-14, 2.13181821e-13, 1 + ], + "scale": [ + 1.00007963, 0.999921441, 0.999999166 + ], + "name": "tire_01_key_right", + "children": [374, 375] + }, { + "translation": [ + -0.0000128746033, -0.00000476837158, 9.536743e-7 + ], + "rotation": [ + -1, -0.0000012836299, 2.41690373e-7, 9.964331e-7 + ], + "scale": [ + 0.9999894, 1.00001383, 0.9999982 + ], + "mesh": 173, + "name": "RWheel_01_still" + }, { + "translation": [ + 4.76837158e-7, 4.76837158e-7, 4.76837158e-7 + ], + "rotation": [ + -1, -0.00000119209267, 2.69972418e-8, 9.655992e-7 + ], + "mesh": 174, + "name": "RWheel_01_blurred" + }, { + "translation": [ + -0.0389318466, -0.006542444, 0.759859562 + ], + "rotation": [ + -1, -9.94863236e-14, 9.66441757e-14, 1.19248815e-8 + ], + "scale": [ + 1.000081, 0.9999192, 0.999999642 + ], + "name": "tire_02_key_right", + "children": [377, 378] + }, { + "translation": [ + -0.00000762939453, 0.00000429153442, 0.00000333786 + ], + "rotation": [ + 4.17260935e-7, -2.35365633e-7, -0.00000126850136, 1 + ], + "scale": [ + 0.999991655, 1.00001, 0.999996 + ], + "mesh": 175, + "name": "RWheel_02_still" + }, { + "translation": [ + -4.76837158e-7, 2.38418579e-7, 0 + ], + "rotation": [ + 3.25841683e-7, -2.30968482e-7, -0.00000126240775, 1 + ], + "mesh": 176, + "name": "RWheel_02_blurred" + }, { + "translation": [ + -0.0457267761, 0.0004069805, -0.0020813942 + ], + "rotation": [ + 0.0009059836, 0.00443721, -0.00318386476, 0.9999847 + ], + "scale": [ + 1, 0.999998868, 0.9999982 + ], + "mesh": 177, + "name": "LANDING_GEAR_09_RIGHT_1" + }, { + "translation": [ + 0.106811047, 0.491230726, 0.296488762 + ], + "rotation": [ + -0.9992415, 0.00000166204075, -0.00000249417667, -0.0389420055 + ], + "scale": [ + 1.00004983, 0.9999272, 1.000025 + ], + "name": "landing_gear04_right" + }, { + "translation": [ + 0.106812477, 0.186984062, -0.245285988 + ], + "rotation": [ + -0.99862957, -5.59745729e-7, 9.06202558e-7, -0.0523358621 + ], + "scale": [ + 1.00000143, 1, 0.99999994 + ], + "name": "landing_gear05_right" + }, { + "translation": [ + -0.0153021812, 0.474267721, 0.275247574 + ], + "rotation": [ + -0.998629451, -4.54888777e-7, 0.000002030508, -0.0523382 + ], + "scale": [ + 1.00000143, 1.0000006, 0.9999997 + ], + "name": "landing_gear06_right" + }, { + "translation": [ + 0.0005736351, 0.8092518, 0.0569901466 + ], + "rotation": [ + -0.05539902, -4.096075e-7, -0.00000122490758, 0.998464346 + ], + "scale": [ + 1.0000062, 0.99999696, 0.9999944 + ], + "mesh": 178, + "name": "LANDING_GEAR_10_RIGHT_1" + }, { + "translation": [ + -1.22381783, 0.348030329, 0.153943539 + ], + "rotation": [ + 0.00730130542, -0.7070985, 0.00345573318, 0.707069039 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_14_right" + }, { + "translation": [ + -0.2384944, -0.622866631, 0.0609898567 + ], + "rotation": [ + -0.738115668, -0.6531392, 0.109994896, 0.128436044 + ], + "scale": [ + 1, 1.00000024, 1 + ], + "name": "Landing_Gear_18_right", + "children": [386] + }, { + "translation": [ + 4.172325e-7, -0.00000381469727, 0.00000381469727 + ], + "rotation": [ + 0.00000408237656, 0.0000012390658, -6.57281532e-7, 1 + ], + "scale": [ + 1.00000048, 0.9999987, 1.0000006 + ], + "mesh": 179, + "name": "Landing_Gear_Part19_right" + }, { + "translation": [ + -0.27695322, -1.28430152, 0.173485756 + ], + "rotation": [ + -0.708400846, -0.000836311956, -0.7036754, -0.05485084 + ], + "scale": [ + 1.00000143, 1, 0.9999993 + ], + "name": "Landing_Gear_20_right", + "children": [388, 393] + }, { + "translation": [ + 0.008528233, -0.06482935, 0.00420856476 + ], + "rotation": [ + 0.526773155, 0.4382799, -0.377282143, 0.622959852 + ], + "scale": [ + 1.0000037, 1.00000608, 0.9999915 + ], + "name": "Landing_Gear_21_right", + "children": [389, 391, 392] + }, { + "translation": [ + 0.00144290924, 0.1629262, 0.06679213 + ], + "rotation": [ + 0.5143709, -0.5180562, 0.4851327, 0.481338263 + ], + "scale": [ + 0.999991357, 1.00000036, 1.00000954 + ], + "name": "Landing_Gear_19_right", + "children": [390] + }, { + "translation": [ + 0.539729238, 0.00602722168, 0.291376829 + ], + "rotation": [ + 0.00426839432, 0.490773559, -0.173198491, 0.8538884 + ], + "scale": [ + 1.00000179, 0.9999909, 1.0000031 + ], + "mesh": 180, + "name": "Landing_Gear_Part18_right" + }, { + "translation": [ + 0.00000238418579, 0.134036064, 0.00517952442 + ], + "rotation": [ + 1.680337e-8, -3.11589247e-7, 3.5556468e-8, 1 + ], + "scale": [ + 0.9999948, 1.00000739, 0.9999984 + ], + "name": "Landing_Gear_41_right" + }, { + "translation": [ + -9.536743e-7, -0.00000762939453, -0.00000154972076 + ], + "rotation": [ + -0.00000339552412, 1.61779553e-7, -2.24417249e-7, 1 + ], + "scale": [ + 0.999994, 0.999993265, 1.00001109 + ], + "mesh": 181, + "name": "LANDING_GEAR_21_RIGHT_1" + }, { + "translation": [ + -0.00687456131, 0.00106167793, 0.010260582 + ], + "rotation": [ + 7.357437e-8, -9.245716e-7, 0.000001771376, 1 + ], + "scale": [ + 0.999998748, 0.9999999, 0.999999762 + ], + "mesh": 182, + "name": "Landing_Gear_Part17_right" + }, { + "translation": [ + -0.334146976, -2.01456738, 0.263353348 + ], + "rotation": [ + -0.7060457, 0.0425617956, -0.7058248, -0.03872242 + ], + "scale": [ + 1.000001, 1.00000024, 1.00000072 + ], + "name": "Landing_Gear_33_right", + "children": [395, 400] + }, { + "translation": [ + 0.117917061, -0.148765087, 0.04537964 + ], + "rotation": [ + -0.984737754, 0.008130239, -0.17385301, 0.0007825128 + ], + "scale": [ + 0.999999762, 0.9999993, 1.00000167 + ], + "name": "LANDING_GEAR_37_RIGHT_1", + "children": [396, 398, 399] + }, { + "translation": [ + 0.667953134, 0.5748277, 0.00707626343 + ], + "rotation": [ + -0.5088381, -0.496233046, 0.494221658, 0.5005811 + ], + "scale": [ + 0.999994457, 1.00000381, 1.00000322 + ], + "name": "Landing_Gear_17_right", + "children": [397] + }, { + "translation": [ + 0.02722466, -0.00247240067, 0.4086219 + ], + "rotation": [ + 0.5143792, -0.5180427, 0.485144973, -0.481331825 + ], + "scale": [ + 0.9999952, 0.99999845, 1.00000525 + ], + "mesh": 183, + "name": "LANDING_GEAR_17_RIGHT_1" + }, { + "translation": [ + 0.167813063, 0.00268483162, 0.00000238418579 + ], + "rotation": [ + -6.41455244e-8, -4.106647e-8, 4.51690951e-8, 1 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000107 + ], + "name": "Landing_Gear_31_right" + }, { + "translation": [ + -0.010137558, -0.00364327431, 0.00000143051147 + ], + "rotation": [ + 0.00000216417948, -0.173647642, -7.234492e-8, 0.984807849 + ], + "scale": [ + 0.9999995, 1.00000358, 0.9999973 + ], + "mesh": 184, + "name": "LANDING_GEAR_31_RIGHT_1" + }, { + "translation": [ + -0.00679731369, 0.00124144554, 0.0102968216 + ], + "rotation": [ + 0.00000175460752, -5.77418632e-7, 0.0000014975609, 1 + ], + "scale": [ + 0.999999762, 1.000001, 0.9999983 + ], + "mesh": 185, + "name": "LANDING_GEAR_33_RIGHT_1" + }, { + "translation": [ + -0.667070866, -2.00849319, 0.2415781 + ], + "rotation": [ + -0.709682167, -0.09555723, -0.6969779, 0.0379721373 + ], + "scale": [ + 1.00000048, 0.999999762, 1.00000131 + ], + "name": "Landing_Gear_34_right", + "children": [402, 413] + }, { + "translation": [ + 0.09678888, -0.131126165, -0.0691990852 + ], + "rotation": [ + -0.839773059, -0.406130224, 0.352001667, 0.07703543 + ], + "scale": [ + 1.00000072, 1.00000048, 0.9999989 + ], + "name": "Landing_Gear_38_right", + "children": [403, 412] + }, { + "translation": [ + 0.006328821, 0.9432006, -0.00322312117 + ], + "rotation": [ + -0.756983638, -0.64889437, 0.07686701, 0.00183209206 + ], + "scale": [ + 0.999998748, 1.000002, 1.00000048 + ], + "name": "Landing_Gear_32_right", + "children": [404, 409, 411] + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, -0.00000166893 + ], + "rotation": [ + -2.79384949e-7, -5.963352e-8, 5.96058953e-8, 1 + ], + "scale": [ + 1.000005, 1.00000274, 0.9999952 + ], + "name": "Landing_Gear_27_right", + "children": [405, 406, 408] + }, { + "translation": [ + -0.05392933, -0.152823448, 0.0107153654 + ], + "rotation": [ + -0.0451062471, 0.07957671, 0.0931274, 0.9914436 + ], + "scale": [ + 1.00000119, 1.00000083, 0.999998748 + ], + "name": "Landing_Gear_23_right" + }, { + "translation": [ + 0.161372185, -0.885045052, 0.0548145771 + ], + "rotation": [ + 0.0121787246, -0.607089758, 0.093779996, 0.788986 + ], + "scale": [ + 1.00000322, 1.00000012, 0.999995232 + ], + "name": "Landing_Gear_28_right", + "children": [407] + }, { + "translation": [ + -0.00001630187, -0.4443255, -0.007379055 + ], + "rotation": [ + 0.00000249571417, -0.4681221, 0.00000337469442, 0.883663833 + ], + "scale": [ + 0.99999994, 0.99999994, 0.99999994 + ], + "mesh": 186, + "name": "LANDING_GEAR_28_RIGHT_1" + }, { + "translation": [ + 0.0738940239, -0.45400703, 0.0186889172 + ], + "rotation": [ + -0.1835651, 0.381385028, -0.104942575, 0.899909139 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 187, + "name": "LANDING_GEAR_27_RIGHT_1" + }, { + "translation": [ + 1.28528214, -0.0296049118, -0.135630727 + ], + "rotation": [ + -0.0498265065, 0.05795823, -0.000260304631, 0.997074842 + ], + "scale": [ + 0.9999991, 1.00000632, 0.9999972 + ], + "name": "Landing_Gear_29_right", + "children": [410] + }, { + "translation": [ + 0.4476943, 0.06923854, -0.0517857671 + ], + "rotation": [ + -0.609738767, -0.3383346, 0.6316609, -0.3387519 + ], + "scale": [ + 1.00000679, 0.9999908, 0.9999971 + ], + "mesh": 188, + "name": "LANDING_GEAR_29_RIGHT_1" + }, { + "translation": [ + -0.01609087, -0.0257027149, -7.15255737e-7 + ], + "rotation": [ + -2.049173e-7, 0.0177512877, 0.00000140093186, 0.999842465 + ], + "scale": [ + 0.9999977, 0.9999984, 1.00000417 + ], + "mesh": 189, + "name": "Landing_Gear_30_right" + }, { + "translation": [ + -0.005862236, 0.00526857376, 0.000009059906 + ], + "rotation": [ + -3.89495426e-7, -0.396177948, -4.544166e-7, 0.9181738 + ], + "scale": [ + 0.9999979, 0.9999976, 1.00000286 + ], + "mesh": 190, + "name": "LANDING_GEAR_32_RIGHT_1" + }, { + "translation": [ + -0.00688266754, 0.00369215, 0.009636402 + ], + "rotation": [ + -9.0897106e-7, 2.81726727e-7, 4.395835e-7, 1 + ], + "scale": [ + 1, 1.000002, 0.999998 + ], + "mesh": 191, + "name": "LANDING_GEAR_34_RIGHT_1" + }, { + "translation": [ + -0.257612228, -2.26505971, 0.121347904 + ], + "rotation": [ + -0.706045747, 0.04255996, -0.7058249, -0.0387206227 + ], + "scale": [ + 1, 1.0000006, 1.000001 + ], + "name": "landing_gear07_right" + }, { + "translation": [ + 0.00000143051147, 0.000002503395, -0.00000190734863 + ], + "rotation": [ + 0.00000151735628, 1.319124e-7, -4.26545682e-7, 1 + ], + "scale": [ + 0.9999997, 1.00000024, 1.00000143 + ], + "mesh": 192, + "name": "Landing_gear_Root_right" + }, { + "translation": [ + -12.9740658, 1.4153682, -6.55199766 + ], + "rotation": [ + -0.9643542, 0.05196784, -0.259418547, -0.004733256 + ], + "scale": [ + 1.00000119, 1.00000036, 0.999999 + ], + "name": "Engine_PIVOT_RIGHT_2" + }, { + "translation": [ + -0.6497253, 2.102611, 5.016356 + ], + "rotation": [ + 0.4909097, 0.490909636, -0.508927763, 0.508928239 + ], + "scale": [ + 0.9999998, 1, 1.000001 + ], + "name": "WING_DOOR03_right", + "children": [418, 420] + }, { + "translation": [ + -0.07994223, -0.3223496, 0.15869379 + ], + "rotation": [ + 1.22518031e-7, 1.05239437e-7, -1.40098223e-7, 1 + ], + "scale": [ + 1.00000012, 0.9999995, 1.0000006 + ], + "name": "Door03_Hydraulic02_right", + "children": [419] + }, { + "translation": [ + 0, 0, -4.76837158e-7 + ], + "rotation": [ + 0.4725453, 0.542078257, 0.454039544, 0.526023149 + ], + "scale": [ + 0.9999999, 0.99999994, 1 + ], + "mesh": 193, + "name": "Landing_Gear_01_right" + }, { + "translation": [ + 0.008416653, -0.00402081, -0.0123558044 + ], + "rotation": [ + 0.00328002125, 0.7197253, 0.00316349161, 0.6942441 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 194, + "name": "Door01_right" + }, { + "mesh": 195, + "name": "Glass_center" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "rotation": [ + -0.009162774, 0, 0, 0.999958038 + ], + "mesh": 196, + "name": "Undercarriage_Front_center" + }, { + "mesh": 197, + "name": "lightpods_center" + }, { + "mesh": 198, + "name": "Body_front_center" + }, { + "mesh": 199, + "name": "windowGlass_center" + }, { + "translation": [ + -0.6216232, 1.38451254, -26.3910179 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "name": "BACK_DOOR", + "children": [427, 432, 434] + }, { + "translation": [ + 1.51670659, 0.0593546629, 0.09595871 + ], + "name": "Rear_door", + "children": [428, 429, 430, 431] + }, { + "translation": [ + 0.283971548, 0.07695341, 0.310956955 + ], + "rotation": [ + 1.16417265e-10, -1, 1.30385169e-8, 7.36134353e-8 + ], + "scale": [ + 1, 0.99999994, 1.00000024 + ], + "mesh": 200, + "name": "PASSENGER_DOOR_2_PORTHOLE" + }, { + "translation": [ + 0.23453021, -0.06347895, 0.005973816 + ], + "rotation": [ + 1.86264626e-9, -1, 9.31322752e-9, 7.561432e-8 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000024 + ], + "mesh": 201, + "name": "PASSENGER_DOOR_2_OUTSIDE" + }, { + "translation": [ + -0.02428627, -0.0504982471, -0.0693092346 + ], + "rotation": [ + -0.00356744439, -0.0385848545, -0.00107257918, 0.9992484 + ], + "scale": [ + 0.001646385, 0.00150018034, 0.001938484 + ], + "mesh": 202, + "name": "PASSENGER_DOOR_2" + }, { + "translation": [ + 0.213811874, -0.066890955, 0.00326156616 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 203, + "name": "Livery_KLM_DoorB" + }, { + "translation": [ + 1.66407359, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Rear_door_pivot", + "children": [433] + }, { + "translation": [ + -0.00184631348, -0.06628418, 0.00226974487 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 204, + "name": "PASSENGER_DOOR_2_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 205, + "name": "INTERIOR2" + }, { + "translation": [ + -2.802113, 0.120608084, 17.4044781 + ], + "rotation": [ + 0, 0, 0.9848078, 0.173648223 + ], + "scale": [ + 1.59984982, 1.59984982, 1.59984982 + ], + "name": "CARGO_DOOR", + "children": [436, 438, 440] + }, { + "translation": [ + 0, 5.96046448e-8, -0.00000190734863 + ], + "rotation": [ + 0, 0, 2.4572546e-7, 1 + ], + "scale": [ + 0.788339555, 0.788339555, 0.7883396 + ], + "mesh": 206, + "name": "CARGO_DOOR_1", + "children": [437] + }, { + "translation": [ + -2.12045884, -0.670018137, -13.7996645 + ], + "rotation": [ + 0, 0, 0.984807849, -0.17364791 + ], + "scale": [ + 0.792880058, 0.792880058, 0.7928802 + ], + "mesh": 207, + "name": "CARGO_DOOR_OUTSIDE" + }, { + "translation": [ + -0.07027137, -0.09023255, 0.115065575 + ], + "rotation": [ + 0.000002611794, 0.00000116849469, 0.9999597, -0.008979633 + ], + "scale": [ + 0.625058949, 0.625058949, 0.6250587 + ], + "name": "CARGO_DOOR_HINGE", + "children": [439] + }, { + "translation": [ + 0.5088334, 0.00215768814, 0.12950325 + ], + "rotation": [ + -6.760503e-14, 1.43660677e-13, -4.72593378e-8, 1 + ], + "scale": [ + 1.26122475, 1.26122475, 1.26122463 + ], + "mesh": 208, + "name": "CARGO_PISTON_2" + }, { + "translation": [ + -0.0810054541, 0.09783727, 0.0176887512 + ], + "rotation": [ + 0, 0, 0.9848078, -0.173648223 + ], + "scale": [ + 0.625058651, 0.625058651, 0.625058651 + ], + "mesh": 209, + "name": "Livery_KLM_Cargo" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + -0.164798126, -0.98632735, -4.44642041e-7, -0.000002661212 + ], + "scale": [ + 1.00000024, 1.00000024, 1 + ], + "name": "CARGO_PISTON", + "children": [442] + }, { + "translation": [ + 0.00350093842, 0.00215780735, -0.129508972 + ], + "rotation": [ + 0, -1, 4.76862922e-8, -2.82130117e-7 + ], + "scale": [ + 1.2612251, 1.2612251, 1.261225 + ], + "mesh": 210, + "name": "CARGO_PISTON_1" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + 0.7071068, 0, 0, 0.7071067 + ], + "scale": [ + 0.7524738, 0.752473652, 0.752473652 + ], + "name": "CARGO_PISTON001" + }, { + "translation": [ + 0.6120134, 1.38451254, 22.0964947 + ], + "name": "FRONT_DOOR", + "children": [445, 451, 453] + }, { + "translation": [ + 1.51670647, 0.0593546629, 0.09595871 + ], + "name": "Passenger_door", + "children": [446, 450] + }, { + "translation": [ + 0.0464611053, -0.0504982471, -0.0693092346 + ], + "mesh": 211, + "name": "PASSENGER_DOOR_1", + "children": [447, 448, 449] + }, { + "translation": [ + 0.3973899, -0.005719185, -0.225822449 + ], + "rotation": [ + 2.27373675e-12, -2.9103886e-11, -5.551115e-16, 1 + ], + "scale": [ + 0.999999642, 1, 1 + ], + "mesh": 212, + "name": "PASSENGER_DOOR_1_PORTHOLE" + }, { + "translation": [ + 0.171353817, 0.0248112679, 0.08783722 + ], + "rotation": [ + 1.7462301e-10, 2.815796e-9, 0, 1 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "mesh": 213, + "name": "PASSENGER_DOOR_1_OUTSIDE" + }, { + "translation": [ + 0.1309638, 0.0121479034, 0.08275986 + ], + "rotation": [ + 1.7462301e-10, 2.815796e-9, 0, 1 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "mesh": 214, + "name": "PASSENGER_DOOR_1_GASKET" + }, { + "translation": [ + 0.19907999, -0.0314147472, 0.0150756836 + ], + "mesh": 215, + "name": "Livery_KLM_DoorA" + }, { + "translation": [ + 1.66407371, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Passenger_door_pivot", + "children": [452] + }, { + "translation": [ + -0.00184440613, -0.06628418, 0.002272606 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 216, + "name": "PASSENGER_DOOR_1_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 217, + "name": "INTERIOR1" + }, { + "translation": [ + 0.190857127, 0.9710189, 27.28954 + ], + "rotation": [ + -0.5561995, 0.243252084, 0.728066444, -0.318417639 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000036 + ], + "name": "LeftWiper", + "children": [455] + }, { + "translation": [ + 0.00000190734863, -0.3225479, 0.09060097 + ], + "rotation": [ + 0.061628297, -0.7044163, -0.0616281778, 0.7044159 + ], + "scale": [ + 0.9999997, 0.999999762, 1 + ], + "name": "LeftWiper_Aux1" + }, { + "translation": [ + -0.190857157, 0.97101897, 27.28954 + ], + "rotation": [ + -0.318417519, -0.728066444, 0.243252143, 0.5561996 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "RightWiper", + "children": [457] + }, { + "translation": [ + -0.00000381469727, 0.322551727, -0.09060049 + ], + "rotation": [ + 0.06162833, -0.704416156, -0.06162816, 0.7044159 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "name": "RightWiper_Aux1" + }, { + "translation": [ + 4.76760626, -1.72082746, -5.891864 + ], + "rotation": [ + -0.0104314219, -0.05726826, 0.9821466, 0.1788842 + ], + "scale": [ + 1, 1.00000024, 0.99999994 + ], + "mesh": 218, + "skin": 10, + "name": "Landing_Gear_22_left" + }, { + "translation": [ + 0.665097535, -2.53030324, 23.1944962 + ], + "rotation": [ + 0.7254565, 0.04967562, 0.06742373, 0.6831539 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 219, + "skin": 11, + "name": "DOOR_RIGHT02_HYDRAULIC01_CENTER_1" + }, { + "translation": [ + 0.665097535, -2.53030324, 23.1944962 + ], + "rotation": [ + 0.7254565, 0.04967562, 0.06742373, 0.6831539 + ], + "scale": [ + 1, 0.99999994, 1.00000012 + ], + "mesh": 220, + "skin": 12, + "name": "DOOR_LEFT02_HYDRAULIC01_CENTER_1" + }, { + "translation": [ + -23.096899, 2.07969546, -12.9645128 + ], + "rotation": [ + -0.9687306, 0.055648, -0.2413961, 0.013866799 + ], + "scale": [ + 1, 1.00000024, 1.00000024 + ], + "mesh": 221, + "skin": 13, + "name": "Aileron_right" + }, { + "translation": [ + -18.7416363, 1.65078044, -8.43137 + ], + "rotation": [ + -0.9530885, 0.0480715446, -0.2984709, 0.0150541738 + ], + "scale": [ + 1, 1.00000036, 1.00000048 + ], + "mesh": 222, + "skin": 14, + "name": "FLAPSKRUEGER_2_RIGHT_1" + }, { + "translation": [ + -17.0303764, 0.9264152, -9.990758 + ], + "rotation": [ + -0.971514165, 0.06466882, -0.2274838, 0.015142465 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 223, + "skin": 15, + "name": "FLAPS_2_RIGHT_1" + }, { + "translation": [ + -4.76837158e-7, 0, -9.536743e-7 + ], + "rotation": [ + -1, 0, 0, -4.371139e-8 + ], + "mesh": 224, + "skin": 16, + "name": "Flaps_Details_Spoiler_right" + }, { + "translation": [ + -4.7676053, -1.72082818, -5.89186335 + ], + "rotation": [ + 0.1788842, -0.9821466, -0.0572682656, 0.0104314275 + ], + "mesh": 225, + "skin": 17, + "name": "Landing_Gear_22_right" + }, { + "translation": [ + -6.70049953, 0.205205679, -6.49973726 + ], + "rotation": [ + -0.995842, 0.09018378, -0.0128166266, 0.00116067694 + ], + "scale": [ + 1, 0.9999999, 0.99999994 + ], + "mesh": 226, + "skin": 18, + "name": "Spoiler_1_right" + }, { + "translation": [ + 5.083345, -0.373965651, -5.84260273 + ], + "rotation": [ + -0.706045747, 0.0425598659, -0.7058249, 0.0387208164 + ], + "scale": [ + 0.9999994, 1.00000048, 1.00000191 + ], + "mesh": 227, + "skin": 19, + "name": "Landing_Gear_04_left" + }, { + "translation": [ + -5.083345, -0.373965651, -5.84260273 + ], + "rotation": [ + 0.0387205742, 0.7058249, 0.0425596163, 0.7060458 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 228, + "skin": 20, + "name": "Landing_Gear_04_right" + }, { + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "mesh": 229, + "skin": 21, + "name": "Undercarriage_right" + }, { + "translation": [ + 0.0008451908, 3.87055969, -0.13583234 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 230, + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "translation": [ + 0.7143089, 1.52168274, -37.00236 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 231, + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "translation": [ + -0.7061607, 1.52168584, -37.0003777 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 232, + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "translation": [ + 3.16649675e-7, -2.545454, 1.60331059 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 233, + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "translation": [ + -3.42732048, -0.176593766, 3.17954969 + ], + "rotation": [ + -7.54979e-8, -1, -7.54979e-8, -5.6999333100000005e-15 + ], + "mesh": 234, + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "translation": [ + 3.424549, -0.176594272, 3.16573286 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 235, + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "translation": [ + 2.57077742, 1.38609684, 21.8967667 + ], + "scale": [ + 0.99999994, 1, 1.00000012 + ], + "mesh": 236, + "name": "Porthole_Blocker_center" + }, { + "translation": [ + 3.36336136, -0.176594272, 3.26802778 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 237, + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "translation": [ + -3.36571121, -0.176593781, 3.267181 + ], + "rotation": [ + 0, -1, 0, -4.371139e-8 + ], + "mesh": 238, + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "translation": [ + -2.73759484, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 239, + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "translation": [ + 2.73906183, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 240, + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "translation": [ + -1.85954881, -0.838579834, 17.40458 + ], + "scale": [ + 1.261225, 1.261225, 1.261225 + ], + "mesh": 241, + "name": "CARGO_INTERIOR" + }, { + "mesh": 242, + "name": "FROST_FUSELAGE" + }, { + "mesh": 243, + "skin": 22, + "name": "FROST_WINGR" + }, { + "translation": [ + 18.75111, 1.65194607, -8.437931 + ], + "rotation": [ + 0.0150541924, 0.2984709, 0.0480716079, 0.953088462 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 244, + "skin": 23, + "name": "FROST_KRUEGER_L_2" + }, { + "mesh": 245, + "skin": 24, + "name": "FROST_KRUEGER_R_2" + }, { + "mesh": 246, + "skin": 25, + "name": "FROST_WINGL" + }, { + "mesh": 247, + "skin": 26, + "name": "wiper" + }, { + "translation": [ + -0.316766739, -2.02013946, 23.8162861 + ], + "rotation": [ + -0.49999997, 6.53831e-8, 0.866025448, 3.77489471e-8 + ], + "mesh": 248, + "name": "GROUND_GPUPipe" + }, { + "translation": [ + 2.78484678, -0.623671055, -4.947361 + ], + "mesh": 249, + "name": "GROUND_FuelPipe" + }, { + "mesh": 250, + "name": "WINDSHIELD" + }, { + "translation": [ + 0.00197641877, 2.095257, -22.4388657 + ], + "mesh": 251, + "name": "Livery_KLM_RegNumber" + }, { + "translation": [ + 0, 3.23557115, -3.81252766 + ], + "mesh": 252, + "name": "Livery_KLM_FuselageB" + }, { + "translation": [ + 0, 3.52926064, -4.46892834 + ], + "mesh": 253, + "name": "Livery_KLM_FuselageA" + }, { + "translation": [ + -0.000002861023, 2.38418579e-7, 0 + ], + "mesh": 254, + "skin": 27, + "name": "Wing_body_left" + }, { + "translation": [ + 0.000002861023, 2.38418579e-7, 0 + ], + "rotation": [ + -1, 0, 0, -4.371139e-8 + ], + "mesh": 255, + "skin": 28, + "name": "Wing_body_right" + }, { + "translation": [ + -0.000002663216946530156, 9.241080284118652, -36.35052490234375 + ], + "rotation": [ + 0.28291264176368713, 0.5717583298683167, 0.4160439670085907, 0.6480435132980347 + ], + "mesh": 256, + "name": "Rudder_LIVERYDECAL" + }, { + "translation": [ + 0.7220770120620728, -1.9521019458770752, 23.631929397583008 + ], + "rotation": [ + 0.715813398361206, 0.03603672236204147, 0.6965124607086182, 0.034396108239889145 + ], + "mesh": 257, + "name": "C_Door_02_Left_LIVERYDECALS" + }, { + "translation": [ + -0.726417064666748, -1.9530106782913208, 23.631912231445312 + ], + "rotation": [ + -0.03489641100168228, 0.6998390555381775, -0.03553038462996483, 0.7125623822212219 + ], + "mesh": 258, + "name": "C_Door_02_right_LIVERYDECALS" + }, { + "translation": [ + -2.3514771461486816, 1.3771086931228638, -26.49029541015625 + ], + "mesh": 259, + "name": "DoorB_LIVERYDECAL" + }, { + "mesh": 260, + "name": "Livery_KLM_FuselageA.001" + }, { + "translation": [ + 0.6497254371643066, -2.1026113033294678, -5.016356945037842 + ], + "rotation": [ + 0.712636411190033, 0.7015312910079956, -0.0006685919361189008, 0.001663838280364871 + ], + "mesh": 261, + "name": "Door01_left_LIVERYDECAL" + }, { + "translation": [ + -0.6497254967689514, -2.102611780166626, -5.016357421875 + ], + "rotation": [ + -0.0016642240807414055, -0.0006689373985864222, -0.7015330791473389, 0.7126347422599792 + ], + "mesh": 262, + "name": "Door01_right_LIVERYDECAL" + }, { + "mesh": 263, + "name": "livery_vstab" + }, { + "translation": [ + -2.7386319637298584, -0.0703480988740921, 17.432857513427734 + ], + "mesh": 264, + "name": "Cargo_Door_LIVERYDECAL" + }, { + "mesh": 265, + "name": "Plane.001" + }, { + "mesh": 266, + "name": "Plane.002" + }, { + "mesh": 267, + "name": "Plane.005" + }, { + "mesh": 268, + "name": "Plane.006" + }, { + "scale": [ + 1.0019999742507935, 1, 1 + ], + "mesh": 269, + "name": "Plane.010" + } + ], + "scene": 0, + "scenes": [ + { + "nodes": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 0, + "joints": [ + 6, + 32, + 40, + 41, + 42, + 43, + 50, + 51 + ], + "skeleton": 6, + "name": "skeleton #0" + }, { + "inverseBindMatrices": 1, + "joints": [ + 6, + 32, + 40, + 41, + 42, + 55, + 74 + ], + "skeleton": 6, + "name": "skeleton #1" + }, { + "inverseBindMatrices": 2, + "joints": [ + 40, 183, 184, 185 + ], + "skeleton": 40, + "name": "skeleton #2" + }, { + "inverseBindMatrices": 3, + "joints": [ + 40, + 41, + 42, + 43, + 44, + 48, + 52, + 71, + 89, + 90 + ], + "skeleton": 40, + "name": "skeleton #3" + }, { + "inverseBindMatrices": 4, + "joints": [ + 32, 40 + ], + "skeleton": 32, + "name": "skeleton #4" + }, { + "inverseBindMatrices": 5, + "joints": [ + 6, + 32, + 40, + 41, + 42, + 43, + 44 + ], + "skeleton": 6, + "name": "skeleton #5" + }, { + "inverseBindMatrices": 6, + "joints": [ + 41, + 42, + 53, + 54, + 70, + 72 + ], + "skeleton": 41, + "name": "skeleton #6" + }, { + "inverseBindMatrices": 7, + "joints": [ + 40, 41, 171 + ], + "skeleton": 40, + "name": "skeleton #7" + }, { + "inverseBindMatrices": 8, + "joints": [ + 262, 267, 305 + ], + "skeleton": 262, + "name": "skeleton #8" + }, { + "inverseBindMatrices": 9, + "joints": [ + 305, + 319, + 345, + 346, + 347, + 351 + ], + "skeleton": 305, + "name": "skeleton #9" + }, { + "inverseBindMatrices": 10, + "joints": [ + 6, + 32, + 40, + 97, + 100, + 101, + 104, + 120, + 121, + 124 + ], + "skeleton": 6, + "name": "skeleton #10" + }, { + "inverseBindMatrices": 11, + "joints": [ + 6, + 10, + 13, + 201, + 234, + 235 + ], + "skeleton": 6, + "name": "skeleton #11" + }, { + "inverseBindMatrices": 12, + "joints": [ + 6, + 22, + 23, + 201, + 225, + 226 + ], + "skeleton": 6, + "name": "skeleton #12" + }, { + "inverseBindMatrices": 13, + "joints": [ + 6, + 252, + 262, + 305, + 319, + 335, + 336, + 337 + ], + "skeleton": 6, + "name": "skeleton #13" + }, { + "inverseBindMatrices": 14, + "joints": [ + 262, + 279, + 305, + 319, + 335, + 338, + 342, + 344, + 348, + 353 + ], + "skeleton": 262, + "name": "skeleton #14" + }, { + "inverseBindMatrices": 15, + "joints": [ + 6, + 252, + 262, + 305, + 306, + 319, + 320 + ], + "skeleton": 6, + "name": "skeleton #15" + }, { + "inverseBindMatrices": 16, + "joints": [ + 6, + 252, + 262, + 305, + 319, + 335, + 338 + ], + "skeleton": 6, + "name": "skeleton #16" + }, { + "inverseBindMatrices": 17, + "joints": [ + 6, + 252, + 262, + 356, + 387, + 388, + 391, + 394, + 395, + 398 + ], + "skeleton": 6, + "name": "skeleton #17" + }, { + "inverseBindMatrices": 18, + "joints": [ + 262, 290, 291, 292 + ], + "skeleton": 262, + "name": "skeleton #18" + }, { + "inverseBindMatrices": 19, + "joints": [ + 6, + 32, + 40, + 97, + 127, + 128, + 129, + 131, + 132, + 135, + 153 + ], + "skeleton": 6, + "name": "skeleton #19" + }, { + "inverseBindMatrices": 20, + "joints": [ + 6, + 252, + 262, + 356, + 357, + 358, + 359, + 361, + 380, + 381, + 414 + ], + "skeleton": 6, + "name": "skeleton #20" + }, { + "inverseBindMatrices": 21, + "joints": [ + 252, 262 + ], + "skeleton": 252, + "name": "skeleton #21" + }, { + "inverseBindMatrices": 22, + "joints": [ + 6, + 252, + 262, + 305, + 319, + 335, + 338 + ], + "skeleton": 6, + "name": "skeleton #16_1" + }, { + "inverseBindMatrices": 23, + "joints": [ + 40, + 41, + 42, + 43, + 44, + 48, + 52, + 71, + 89, + 90 + ], + "skeleton": 40, + "name": "skeleton #3_1" + }, { + "inverseBindMatrices": 24, + "joints": [ + 262, + 279, + 305, + 319, + 335, + 338, + 342, + 344, + 348, + 353 + ], + "skeleton": 262, + "name": "skeleton #14_1" + }, { + "inverseBindMatrices": 25, + "joints": [ + 6, + 32, + 40, + 41, + 42, + 43, + 44 + ], + "skeleton": 6, + "name": "skeleton #5_1" + }, { + "inverseBindMatrices": 26, + "joints": [ + 6, 454, 455, 456, 457 + ], + "skeleton": 6, + "name": "skeleton #22" + }, { + "inverseBindMatrices": 27, + "joints": [ + 6, + 32, + 40, + 41, + 42, + 43, + 44 + ], + "skeleton": 6, + "name": "skeleton #5_2" + }, { + "inverseBindMatrices": 28, + "joints": [ + 6, + 252, + 262, + 305, + 319, + 335, + 338 + ], + "skeleton": 6, + "name": "skeleton #16_2" + } + ], + "textures": [ + { + "extensions": { + "MSFT_texture_dds": { + "source": 0 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 1 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 2 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 3 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 4 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 5 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 6 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 7 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 8 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 9 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 10 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 11 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 12 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 13 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 14 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 15 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 16 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 12 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 17 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 18 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 19 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 20 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 21 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 22 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 23 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 24 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 22 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 23 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 24 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 25 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 26 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 27 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 28 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 29 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 30 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 31 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 32 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 33 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 34 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 35 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 36 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 37 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 38 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 39 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 40 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 41 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 42 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 43 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 44 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 45 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 46 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 47 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 48 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 13 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 49 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 50 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 51 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 52 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 53 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 54 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 55 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 56 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 57 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 58 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 59 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 60 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 61 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 62 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 63 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 64 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 65 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 66 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 67 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 68 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 69 + } + } + } + ], + "extensionsUsed": [ + "ASOBO_normal_map_convention", + "ASOBO_material_draw_order", + "ASOBO_material_blend_gbuffer", + "ASOBO_material_detail_map", + "ASOBO_material_windshield_v2", + "MSFT_texture_dds", + "ASOBO_asset_optimized" + ], + "buffers": [ + { + "byteLength": 31586524, + "uri": "B787_lod1.bin" + } + ], + "images": [ + { + "uri": "787_10_AIRFRAME_WINGS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "LIVERY_KLM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DEFAULTDIRT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP02_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP01_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_DETAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIGHTS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIREBLUR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSLOW_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGBLURRED_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_EMIS.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "RIVETS_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + } + ] +} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.bin new file mode 100644 index 00000000..6c9776ad Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.gltf new file mode 100644 index 00000000..344e1609 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod2.gltf @@ -0,0 +1,40327 @@ +{ + "accessors": [ + { + "bufferView": 0, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 384, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 576, + "componentType": 5126, + "count": 3, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 768, + "componentType": 5126, + "count": 6, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1152, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 1664, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2112, + "componentType": 5126, + "count": 4, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 2368, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3008, + "componentType": 5126, + "count": 8, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3520, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 3968, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4096, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4736, + "componentType": 5126, + "count": 4, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 4992, + "componentType": 5126, + "count": 2, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 5120, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 5824, + "componentType": 5126, + "count": 11, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 6528, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7168, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 7808, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 8256, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 8896, + "componentType": 5126, + "count": 10, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9536, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 9984, + "componentType": 5126, + "count": 5, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 10304, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 0, + "byteOffset": 10752, + "componentType": 5126, + "count": 7, + "type": "MAT4", + "name": "accessorInverseBindMatrices" + }, { + "bufferView": 1, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 1608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 2412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 3216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 4020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 4824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 5628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 6432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 7236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 8040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 8844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 9648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 10452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 11256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 12060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 12864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 13668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 14472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 15276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 16080, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 16884, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 17688, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 18492, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 19296, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 20100, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 20904, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 21708, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 22512, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 23316, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 24120, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 24924, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 25728, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 26532, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 27336, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 28140, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 28944, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 29748, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 30552, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 31356, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 32160, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 32964, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 33768, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 60300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 34572, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 35376, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 62712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 36180, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 57888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 36984, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 65124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 37788, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 38592, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 61104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 39396, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 69948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 40200, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 72360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 41004, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 64320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 41808, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 74772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 42612, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 43416, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 67536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 44220, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 79596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 45024, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 82008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 45828, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 70752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 46632, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 84420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 47436, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 86832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 48240, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 73968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 49044, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 89244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 49848, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 91656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 50652, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 77184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 51456, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 94068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 52260, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 96480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 53064, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 80400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 53868, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 98892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 54672, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 101304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 55476, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 83616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 56280, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 103716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 57084, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 86832, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 57488, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 106128, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 57892, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 88448, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 58296, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 107340, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 58700, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 108552, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 59104, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 90064, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 59508, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 109764, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 59912, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 110976, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 60316, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 91680, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 60720, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 112188, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 61124, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 113400, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 61528, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 93296, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 61932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 114612, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 62336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 115824, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 62740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 94912, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 63144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 117036, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 63548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 118248, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 63952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 96528, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 64356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 119460, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 64760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 120672, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 65164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 98144, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 65568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 121884, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 65972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 123096, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 66376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 99760, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 66780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 124308, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 67184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 125520, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 67588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 101376, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 67992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 126732, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 68396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 127944, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 68800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 102992, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 69204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 129156, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 69608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 104608, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 106224, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 70416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 130368, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 70820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 107840, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 71224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 131580, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 71628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 132792, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 72032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 109456, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 72436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 134004, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 72840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 111072, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 73244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 135216, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 73648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 112688, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 74052, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 136428, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 74456, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 137640, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 74860, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 114304, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 75264, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 138852, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 75668, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 140064, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 76072, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 115920, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 76476, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 141276, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 76880, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 142488, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 77284, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 117536, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 77688, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 143700, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 78092, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 144912, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 78496, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 119152, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 78900, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 146124, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 79304, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 147336, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 79708, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 120768, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 80112, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 148548, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 80516, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 149760, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 80920, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 122384, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 81324, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 150972, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 81728, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 152184, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 82132, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 124000, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 82536, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 153396, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 82940, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 154608, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 83344, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 125616, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 83748, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 155820, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 84152, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 157032, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 84556, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 127232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 84960, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 158244, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 85364, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 159456, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 85768, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 128848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 86172, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 160668, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 86576, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 161880, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 86980, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 130464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 87384, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 163092, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 87788, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 164304, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 88192, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 132080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 88596, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 165516, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 89000, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 166728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 89404, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 133696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 89808, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 167940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 90212, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 169152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 90616, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 135312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 91020, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 170364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 91424, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 171576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 91828, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 136928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 92232, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 172788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 92636, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 174000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 93040, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 138544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 93444, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 175212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 93848, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 176424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 94252, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 140160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 94656, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 177636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 95060, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 178848, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 95464, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 141776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 95868, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 180060, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 96272, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 181272, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 96676, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 143392, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 97080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 182484, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 97484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 183696, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 97888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 145008, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 98292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 184908, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 98696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 186120, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 99100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 146624, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 99504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 187332, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 99908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 188544, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 100312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 148240, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 100716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 189756, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 101120, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 190968, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 101524, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 149856, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 101928, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 192180, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 102332, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 193392, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 102736, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 151472, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 103140, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 194604, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 103544, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 195816, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 103948, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 153088, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 104352, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 197028, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 104756, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 198240, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 105560, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 154704, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 106364, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 200652, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 107168, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 203064, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 107972, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 157920, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 108776, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 205476, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 109580, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 207888, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 110384, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 161136, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 111188, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 210300, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 111992, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 212712, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 112796, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 164352, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 113600, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 215124, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 114404, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 217536, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 115208, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 167568, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 116012, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 219948, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 116816, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 222360, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 117620, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 170784, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 118424, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 224772, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 119228, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 227184, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 120032, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 174000, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 120836, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 229596, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 121640, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 232008, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 122444, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 177216, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 123248, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 234420, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 124052, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 236832, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 124856, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 180432, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 125660, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 239244, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 126464, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 241656, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 127268, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 183648, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 128072, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 244068, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 128876, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 246480, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 129680, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 186864, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 130484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 248892, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 131288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 251304, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 132092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 190080, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 132896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 253716, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 133700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 256128, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 134504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 193296, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 135308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 258540, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 136112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 260952, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 136916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 196512, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 137720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 263364, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 138524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 265776, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 139328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 199728, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 140132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 268188, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 140936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 270600, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 141740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 202944, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 142544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 273012, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 143348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 275424, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 144152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 206160, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 144956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 277836, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 145760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 280248, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 146564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 209376, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 147368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 282660, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 148172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 285072, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 148976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 212592, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 149780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 287484, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 150584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 289896, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 151388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 215808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 152192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 292308, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 152996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 294720, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 153800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 219024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 154604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 297132, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 155408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 299544, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 156212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 222240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 157016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 301956, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 157820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 304368, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 158624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 225456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 159428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 306780, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 160232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 309192, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 161036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 228672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 161840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 311604, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 162644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 314016, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 163448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 231888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 164252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 316428, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 165056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 318840, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 165860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 235104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 166664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 321252, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 167468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 323664, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 168272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 238320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 169076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 326076, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 169880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 328488, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 170684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 241536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 171488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 330900, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 172292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 333312, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 173096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 244752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 173900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 335724, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 174704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 338136, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 175508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 247968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 176312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 340548, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 177116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 342960, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 177920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 251184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 178724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 345372, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 179528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 347784, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 180332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 254400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 181136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 350196, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 181940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 352608, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 182744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 257616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 183548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 355020, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 184352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 357432, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 185156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 260832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 185960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 359844, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 186764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 362256, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 187568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 264048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 188372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 364668, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 189176, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 367080, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 189580, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 267264, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 189984, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 368292, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 190388, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 369504, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 190792, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 268880, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 191196, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 370716, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 191600, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 371928, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 192004, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 270496, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 192408, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 373140, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 192812, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 374352, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 193216, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 272112, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 193620, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 375564, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 194024, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 376776, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 194428, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 273728, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 194832, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 377988, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 195236, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 275344, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 195640, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 276960, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 196044, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 379200, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 196448, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 278576, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 196852, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 380412, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 197256, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 280192, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 197660, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 381624, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 198464, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 281808, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 199268, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 384036, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 200072, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 386448, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 200876, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 285024, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 201680, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 388860, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 202484, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 391272, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 203288, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 288240, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 204092, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 393684, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 204896, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 396096, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 205700, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 291456, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 206504, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 398508, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 207308, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 400920, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 208112, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 294672, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 208916, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 403332, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 209720, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 405744, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 210524, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 297888, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 211328, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 408156, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 212132, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 410568, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 212936, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 301104, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 213740, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 412980, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 214544, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 415392, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 215348, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 304320, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 216152, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 417804, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 216956, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 420216, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 217760, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 307536, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 218564, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 422628, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 219368, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 425040, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 220172, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 310752, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 220976, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 427452, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 221780, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 429864, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 222584, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 313968, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 223388, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 432276, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 224192, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 434688, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 224996, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 317184, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 225800, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 437100, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 226604, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 439512, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 227408, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 320400, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 228212, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 441924, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 229016, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 444336, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 229820, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 323616, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 230624, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 446748, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 231428, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 449160, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 232232, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 326832, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 233036, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 451572, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 233840, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 453984, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 234644, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 330048, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 235448, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 456396, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 236252, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 458808, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 237056, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 333264, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 237860, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 461220, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 238664, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 463632, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 239468, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 336480, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 240272, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 466044, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 241076, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 468456, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 241880, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 339696, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 242684, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 470868, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 243488, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 473280, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 244292, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 342912, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 245096, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 475692, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 245900, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 478104, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 246704, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 346128, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 247508, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 480516, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 248312, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 482928, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 249116, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 349344, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 249920, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 485340, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 250724, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 487752, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 251528, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 352560, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 252332, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 490164, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 253136, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 492576, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 253940, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 355776, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 254744, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 494988, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 255548, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 497400, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 256352, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 358992, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 257156, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 499812, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 257960, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 502224, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 258764, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 362208, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 259568, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 504636, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 260372, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 507048, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 261176, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 365424, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 261980, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 509460, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 262784, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 511872, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 263588, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 368640, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 264392, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 514284, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 265196, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 516696, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 266000, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 371856, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 266804, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 519108, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 267608, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 521520, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 268412, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 375072, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 269216, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 523932, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 270020, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 526344, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 270824, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 378288, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 271628, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 528756, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 272432, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 531168, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 273236, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 381504, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 274040, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 533580, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 274844, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 535992, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 275648, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 384720, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 276452, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 538404, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 277256, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 540816, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 278060, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 387936, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 278864, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 543228, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 279668, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 545640, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 280472, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 391152, + "componentType": 5126, + "count": 201, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 281276, + "componentType": 5126, + "count": 201, + "min": [0], + "max": [6.66666651], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 548052, + "componentType": 5126, + "count": 201, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 282080, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 550464, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 282484, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 394368, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 282888, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 551676, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 283292, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 552888, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 283696, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 395984, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 284100, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 554100, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 284504, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 555312, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 284908, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 397600, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 285312, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 556524, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 285716, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 557736, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 286120, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 399216, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 286524, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 558948, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 286928, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 560160, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 287332, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 400832, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 287736, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 561372, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 288140, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 562584, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 288544, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 402448, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 288948, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 563796, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 289352, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 565008, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 289756, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 404064, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 290160, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 566220, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 290564, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 567432, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 290968, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 405680, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 291372, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 568644, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 291776, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 569856, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 292180, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 407296, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 292584, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 571068, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 292988, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 572280, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 293392, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 408912, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 293796, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 573492, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 294200, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 574704, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 294604, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 410528, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 295008, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 575916, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 295412, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 577128, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 295816, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 412144, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 296220, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 578340, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 296624, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 579552, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 297028, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 413760, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 297432, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 580764, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 297836, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 581976, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 298240, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 415376, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 298644, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 583188, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 299048, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 416992, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 299452, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 584400, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 299856, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 418608, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 300260, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 420224, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 300664, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 585612, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 301068, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 421840, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 301472, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 423456, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 301876, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 586824, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 302280, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 425072, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 302684, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 426688, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 303088, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 588036, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 303492, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 428304, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 303896, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 589248, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 304300, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 429920, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 304704, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 590460, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 305108, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 591672, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 305512, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 431536, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 305916, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 592884, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 306320, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 594096, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 306724, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 433152, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 307128, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 595308, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 307532, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 596520, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 307936, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 434768, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 308340, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 597732, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 308744, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 598944, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 309148, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 436384, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 309552, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 600156, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 309956, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 601368, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 310360, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 438000, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 310764, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 602580, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 311168, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 603792, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 311572, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 439616, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 311976, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 605004, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 312380, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 606216, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 312784, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 441232, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 313188, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 607428, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 313592, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 608640, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 313996, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 442848, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 314400, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 609852, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 314804, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 611064, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 315208, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 444464, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 315612, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 612276, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 316016, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 613488, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 316420, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 446080, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 316824, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 614700, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 317228, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 615912, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 317632, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 447696, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 318036, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 617124, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 318440, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 449312, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 318844, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 618336, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 319248, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 450928, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 319652, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 619548, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 320056, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 620760, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 320460, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 452544, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 320864, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 621972, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 321268, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 623184, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 321672, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 454160, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322076, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 455776, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322480, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 624396, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 322884, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457392, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322896, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457440, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322908, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457488, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322920, + "componentType": 5126, + "count": 3, + "min": [0], + "max": [0.06666667], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457536, + "componentType": 5126, + "count": 3, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 322932, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 625608, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 323336, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 457584, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 323740, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 626820, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 324144, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 628032, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 324548, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 459200, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 324952, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 629244, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 325356, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 630456, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 325760, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 460816, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 326164, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 631668, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 326568, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 632880, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 326972, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 462432, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 327376, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 634092, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 327780, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 635304, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 328184, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 464048, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 328588, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 636516, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 328992, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 637728, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 329396, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 465664, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 329800, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 638940, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 330204, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 640152, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 330608, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 467280, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 331012, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 641364, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 331416, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 642576, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 331820, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 468896, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 332224, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 643788, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 332628, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 645000, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 333032, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 470512, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 333436, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 646212, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 1, + "byteOffset": 333840, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 647424, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationPositions" + }, { + "bufferView": 1, + "byteOffset": 334244, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 3, + "byteOffset": 472128, + "componentType": 5126, + "count": 101, + "type": "VEC4", + "name": "accessorAnimationRotations" + }, { + "bufferView": 1, + "byteOffset": 334648, + "componentType": 5126, + "count": 101, + "min": [0], + "max": [3.33333325], + "type": "SCALAR", + "name": "accessorAnimationInput" + }, { + "bufferView": 2, + "byteOffset": 648636, + "componentType": 5126, + "count": 101, + "type": "VEC3", + "name": "accessorAnimationScales" + }, { + "bufferView": 4, + "componentType": 5126, + "count": 1154, + "min": [ + -0.2682332694530487, -6.561090469360352, -2.789726734161377 + ], + "max": [ + 0.2682332694530487, 3.1522090435028076, 3.5898826122283936 + ], + "type": "VEC3", + "name": "x2_Rudder_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 12, + "componentType": 5120, + "count": 1154, + "type": "VEC4", + "name": "x2_Rudder_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 16, + "componentType": 5120, + "count": 1154, + "type": "VEC4", + "name": "x2_Rudder_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 20, + "componentType": 5122, + "count": 1154, + "type": "VEC2", + "name": "x2_Rudder_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 24, + "componentType": 5122, + "count": 1154, + "type": "VEC2", + "name": "x2_Rudder_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 28, + "componentType": 5123, + "count": 1154, + "type": "VEC4", + "name": "x2_Rudder_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "componentType": 5123, + "count": 3234, + "type": "SCALAR", + "name": "x2_Rudder_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 41544, + "componentType": 5126, + "count": 51, + "min": [ + -0.22164495289325714, -0.5556049346923828, -1.0652623176574707 + ], + "max": [ + 0.22164487838745117, 0.5556044578552246, 1.0652613639831543 + ], + "type": "VEC3", + "name": "X2_Livery_KLM_Ruder_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 41556, + "componentType": 5120, + "count": 51, + "type": "VEC4", + "name": "X2_Livery_KLM_Ruder_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 41560, + "componentType": 5120, + "count": 51, + "type": "VEC4", + "name": "X2_Livery_KLM_Ruder_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 41564, + "componentType": 5122, + "count": 51, + "type": "VEC2", + "name": "X2_Livery_KLM_Ruder_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 41568, + "componentType": 5122, + "count": 51, + "type": "VEC2", + "name": "X2_Livery_KLM_Ruder_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 41572, + "componentType": 5123, + "count": 51, + "type": "VEC4", + "name": "X2_Livery_KLM_Ruder_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 6468, + "componentType": 5123, + "count": 129, + "type": "SCALAR", + "name": "X2_Livery_KLM_Ruder_indices#0" + }, { + "bufferView": 4, + "byteOffset": 43380, + "componentType": 5126, + "count": 1178, + "min": [ + -0.07582975178956985, -0.8027399182319641, -0.7995269894599915 + ], + "max": [ + 0.167764350771904, 0.04959671571850777, 0.6260731220245361 + ], + "type": "VEC3", + "name": "x2_C_Door_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 43392, + "componentType": 5120, + "count": 1178, + "type": "VEC4", + "name": "x2_C_Door_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 43396, + "componentType": 5120, + "count": 1178, + "type": "VEC4", + "name": "x2_C_Door_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 43400, + "componentType": 5122, + "count": 1178, + "type": "VEC2", + "name": "x2_C_Door_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 43404, + "componentType": 5122, + "count": 1178, + "type": "VEC2", + "name": "x2_C_Door_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 43408, + "componentType": 5123, + "count": 1178, + "type": "VEC4", + "name": "x2_C_Door_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 6726, + "componentType": 5123, + "count": 2898, + "type": "SCALAR", + "name": "x2_C_Door_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 85788, + "componentType": 5126, + "count": 16, + "min": [ + -0.05284452438354492, -0.35190147161483765, -0.6955661177635193 + ], + "max": [ + 0.05284440517425537, 0.3519015908241272, 0.6955662369728088 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_RGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 85800, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_RGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 85804, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_RGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 85808, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x2_Livery_KLM_RGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 85812, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x2_Livery_KLM_RGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 85816, + "componentType": 5123, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_RGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 12522, + "componentType": 5123, + "count": 30, + "type": "SCALAR", + "name": "x2_Livery_KLM_RGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 86364, + "componentType": 5126, + "count": 328, + "min": [ + -0.018462328240275383, -0.013743770308792591, -0.01239884365350008 + ], + "max": [ + 0.2669944167137146, 0.8894801735877991, 0.02242586575448513 + ], + "type": "VEC3", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 86376, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 86380, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 86384, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 86388, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 86392, + "componentType": 5123, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_3_hydraulic01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 12582, + "componentType": 5123, + "count": 762, + "type": "SCALAR", + "name": "x2_C_Door_3_hydraulic01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 98172, + "componentType": 5126, + "count": 1655, + "min": [ + -0.01579410955309868, -0.2936728298664093, -0.9305285811424255 + ], + "max": [ + 0.7319867610931396, 0.25384455919265747, 0.9596433043479919 + ], + "type": "VEC3", + "name": "x2_C_Door_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 98184, + "componentType": 5120, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 98188, + "componentType": 5120, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 98192, + "componentType": 5122, + "count": 1655, + "type": "VEC2", + "name": "x2_C_Door_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 98196, + "componentType": 5122, + "count": 1655, + "type": "VEC2", + "name": "x2_C_Door_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 98200, + "componentType": 5123, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 14106, + "componentType": 5123, + "count": 3702, + "type": "SCALAR", + "name": "x2_C_Door_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 157752, + "componentType": 5126, + "count": 1680, + "min": [ + -0.8398947715759277, -0.14866481721401215, -0.7393609881401062 + ], + "max": [ + 0.578009307384491, 0.15815773606300354, 0.0095489751547575 + ], + "type": "VEC3", + "name": "x2_C_Door_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 157764, + "componentType": 5120, + "count": 1680, + "type": "VEC4", + "name": "x2_C_Door_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 157768, + "componentType": 5120, + "count": 1680, + "type": "VEC4", + "name": "x2_C_Door_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 157772, + "componentType": 5122, + "count": 1680, + "type": "VEC2", + "name": "x2_C_Door_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 157776, + "componentType": 5122, + "count": 1680, + "type": "VEC2", + "name": "x2_C_Door_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 157780, + "componentType": 5123, + "count": 1680, + "type": "VEC4", + "name": "x2_C_Door_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 21510, + "componentType": 5123, + "count": 3798, + "type": "SCALAR", + "name": "x2_C_Door_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 218232, + "componentType": 5126, + "count": 16, + "min": [ + -0.052844561636447906, -0.3519015312194824, -0.6955661773681641 + ], + "max": [ + 0.05284450575709343, 0.3519015312194824, 0.6955661773681641 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_LGDoor_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 218244, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_LGDoor_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 218248, + "componentType": 5120, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_LGDoor_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 218252, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x2_Livery_KLM_LGDoor_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 218256, + "componentType": 5122, + "count": 16, + "type": "VEC2", + "name": "x2_Livery_KLM_LGDoor_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 218260, + "componentType": 5123, + "count": 16, + "type": "VEC4", + "name": "x2_Livery_KLM_LGDoor_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 29106, + "componentType": 5123, + "count": 30, + "type": "SCALAR", + "name": "x2_Livery_KLM_LGDoor_indices#0" + }, { + "bufferView": 4, + "byteOffset": 218808, + "componentType": 5126, + "count": 328, + "min": [ + -0.2570570409297943, -0.01058670599013567, -0.013147162273526192 + ], + "max": [ + 0.013504977338016033, 0.8962713479995728, 0.021881308406591415 + ], + "type": "VEC3", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 218820, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 218824, + "componentType": 5120, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 218828, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 218832, + "componentType": 5122, + "count": 328, + "type": "VEC2", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 218836, + "componentType": 5123, + "count": 328, + "type": "VEC4", + "name": "x2_C_Door_03_hydraulic01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 29166, + "componentType": 5123, + "count": 762, + "type": "SCALAR", + "name": "x2_C_Door_03_hydraulic01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 230616, + "componentType": 5126, + "count": 1655, + "min": [ + -0.7320082187652588, -0.29326027631759644, -0.92799973487854 + ], + "max": [ + 0.015772616490721703, 0.2542574405670166, 0.9621727466583252 + ], + "type": "VEC3", + "name": "x2_C_Door_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 230628, + "componentType": 5120, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 230632, + "componentType": 5120, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 230636, + "componentType": 5122, + "count": 1655, + "type": "VEC2", + "name": "x2_C_Door_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 230640, + "componentType": 5122, + "count": 1655, + "type": "VEC2", + "name": "x2_C_Door_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 230644, + "componentType": 5123, + "count": 1655, + "type": "VEC4", + "name": "x2_C_Door_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 30690, + "componentType": 5123, + "count": 3702, + "type": "SCALAR", + "name": "x2_C_Door_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 290196, + "componentType": 5126, + "count": 968, + "min": [ + -5.678411960601807, -0.7805806398391724, -2.16275691986084 + ], + "max": [ + 2.90669322013855, 0.3974694013595581, 2.617610454559326 + ], + "type": "VEC3", + "name": "x2_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 290208, + "componentType": 5120, + "count": 968, + "type": "VEC4", + "name": "x2_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 290212, + "componentType": 5120, + "count": 968, + "type": "VEC4", + "name": "x2_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 290216, + "componentType": 5122, + "count": 968, + "type": "VEC2", + "name": "x2_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 290220, + "componentType": 5122, + "count": 968, + "type": "VEC2", + "name": "x2_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 290224, + "componentType": 5123, + "count": 968, + "type": "VEC4", + "name": "x2_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 38094, + "componentType": 5123, + "count": 2604, + "type": "SCALAR", + "name": "x2_Elevator_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 325044, + "componentType": 5126, + "count": 693, + "min": [ + -0.34437400102615356, -0.9291350841522217, -7.686824798583984 + ], + "max": [ + 8.383638381958008, 1.1159896850585938, 1.9090267419815063 + ], + "type": "VEC3", + "name": "x2_Trim_Elevator_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 325056, + "componentType": 5120, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 325060, + "componentType": 5120, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 325064, + "componentType": 5122, + "count": 693, + "type": "VEC2", + "name": "x2_Trim_Elevator_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 325068, + "componentType": 5122, + "count": 693, + "type": "VEC2", + "name": "x2_Trim_Elevator_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 325072, + "componentType": 5123, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 43302, + "componentType": 5123, + "count": 1926, + "type": "SCALAR", + "name": "x2_Trim_Elevator_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 349992, + "componentType": 5126, + "count": 49, + "min": [ + -0.0586848258972168, -0.02840903401374817, -0.058672428131103516 + ], + "max": [ + 0.058685302734375, -0.010132819414138794, 0.0586705207824707 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 350004, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 350008, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 350012, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 350016, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 350020, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 47154, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 351756, + "componentType": 5126, + "count": 979, + "min": [ + 1.1026737689971924, 0.43623489141464233, -39.12284851074219 + ], + "max": [ + 9.873924255371094, 2.5371522903442383, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 351768, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 351772, + "componentType": 5120, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 351776, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 351780, + "componentType": 5122, + "count": 979, + "type": "VEC2", + "name": "FROST_ELEVATORL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 351784, + "componentType": 5123, + "count": 979, + "type": "VEC4", + "name": "FROST_ELEVATORL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 47442, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 387000, + "componentType": 5126, + "count": 332, + "min": [ + -0.20538179576396942, -0.8455973863601685, -1.0106970071792603 + ], + "max": [ + 0.20538176596164703, 0.8406084179878235, 1.0106933116912842 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 387012, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 387016, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 387020, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 387024, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 387028, + "componentType": 5123, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 51888, + "componentType": 5123, + "count": 678, + "type": "SCALAR", + "name": "x2_Livery_KLM_ElevatorTrimL_indices#0" + }, { + "bufferView": 4, + "byteOffset": 398952, + "componentType": 5126, + "count": 120, + "min": [ + -0.027080535888671875, -0.05844545364379883, -0.03809928894042969 + ], + "max": [ + 0.03014373779296875, 0.058444976806640625, -0.0065708160400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 398964, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 398968, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 398972, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 398976, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 398980, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 53244, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 403272, + "componentType": 5126, + "count": 784, + "min": [ + -0.0548553466796875, -0.024386882781982422, -0.04414558410644531 + ], + "max": [ + 0.0811614990234375, 0.02438640594482422, 0.06327056884765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 403284, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 403288, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 403292, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 403296, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 403300, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 54156, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 431496, + "componentType": 5126, + "count": 588, + "min": [ + -0.03925895690917969, -0.018535852432250977, -0.010842323303222656 + ], + "max": [ + 0.05913734436035156, 0.018535375595092773, 0.06278228759765625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 431508, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 431512, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 431516, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 431520, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 431524, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 59916, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationRed_indices#0" + }, { + "bufferView": 4, + "byteOffset": 452664, + "componentType": 5126, + "count": 138, + "min": [ + -1.038822054862976, -0.25515908002853394, -1.0270861387252808 + ], + "max": [ + 1.0416889190673828, 0.14307540655136108, 0.36604490876197815 + ], + "type": "VEC3", + "name": "x2_Spoiler_2_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 452676, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 452680, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 452684, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_Spoiler_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 452688, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_Spoiler_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 452692, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 64236, + "componentType": 5123, + "count": 462, + "type": "SCALAR", + "name": "x2_Spoiler_2_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 457632, + "componentType": 5126, + "count": 458, + "min": [ + -1.1091845035552979, -0.08144839107990265, -1.6151909828186035 + ], + "max": [ + 0.7694366574287415, 0.6736834049224854, 0.3477301299571991 + ], + "type": "VEC3", + "name": "x2_Flaps_1_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 457644, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 457648, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 457652, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x2_Flaps_1_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 457656, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x2_Flaps_1_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 457660, + "componentType": 5123, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 65160, + "componentType": 5123, + "count": 1080, + "type": "SCALAR", + "name": "x2_Flaps_1_1_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 474120, + "componentType": 5126, + "count": 249, + "min": [ + -2.339193344116211, -0.37116098403930664, -1.43719482421875 + ], + "max": [ + 3.0640902519226074, 0.8772868514060974, 2.430002212524414 + ], + "type": "VEC3", + "name": "x2_FlapsKrueger_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 474132, + "componentType": 5120, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 474136, + "componentType": 5120, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 474140, + "componentType": 5122, + "count": 249, + "type": "VEC2", + "name": "x2_FlapsKrueger_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 474144, + "componentType": 5122, + "count": 249, + "type": "VEC2", + "name": "x2_FlapsKrueger_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 474148, + "componentType": 5123, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 67320, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x2_FlapsKrueger_1_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 483084, + "componentType": 5126, + "count": 92, + "min": [ + 3.323636531829834, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + 8.716888427734375, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 483096, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 483100, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 483104, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 483108, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 483112, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 68472, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 486396, + "componentType": 5126, + "count": 1023, + "min": [ + -3.462449073791504, -0.31238073110580444, -2.489169120788574 + ], + "max": [ + 4.0117506980896, 1.4273381233215332, 0.4403808116912842 + ], + "type": "VEC3", + "name": "x2_Flaps_1_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 486408, + "componentType": 5120, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 486412, + "componentType": 5120, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 486416, + "componentType": 5122, + "count": 1023, + "type": "VEC2", + "name": "x2_Flaps_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 486420, + "componentType": 5122, + "count": 1023, + "type": "VEC2", + "name": "x2_Flaps_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 486424, + "componentType": 5123, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 68796, + "componentType": 5123, + "count": 2472, + "type": "SCALAR", + "name": "x2_Flaps_1_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 523224, + "componentType": 5126, + "count": 166, + "min": [ + -0.17926736176013947, -0.3222762942314148, -0.07720039784908295 + ], + "max": [ + 0.02360863983631134, 0.01723039150238037, 0.029433144256472588 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_Part19_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 523236, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 523240, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 523244, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Landing_Gear_Part19_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 523248, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Landing_Gear_Part19_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 523252, + "componentType": 5123, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 73740, + "componentType": 5123, + "count": 492, + "type": "SCALAR", + "name": "x2_Landing_Gear_Part19_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 529200, + "componentType": 5126, + "count": 282, + "min": [ + -0.44822341203689575, -0.08176125586032867, -0.1885523647069931 + ], + "max": [ + 0.06948629021644592, 0.060694947838783264, 0.04596981033682823 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 529212, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 529216, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 529220, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x2_Landing_Gear_17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 529224, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x2_Landing_Gear_17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 529228, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 74724, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x2_Landing_Gear_17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 539352, + "componentType": 5126, + "count": 586, + "min": [ + -0.7149439454078674, -0.057012997567653656, -0.3152005672454834 + ], + "max": [ + 0.07577870786190033, 0.6550414562225342, 0.09005388617515564 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_31_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 539364, + "componentType": 5120, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 539368, + "componentType": 5120, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 539372, + "componentType": 5122, + "count": 586, + "type": "VEC2", + "name": "x2_Landing_Gear_31_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 539376, + "componentType": 5122, + "count": 586, + "type": "VEC2", + "name": "x2_Landing_Gear_31_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 539380, + "componentType": 5123, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 76380, + "componentType": 5123, + "count": 1740, + "type": "SCALAR", + "name": "x2_Landing_Gear_31_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 560448, + "componentType": 5126, + "count": 405, + "min": [ + -0.19304992258548737, -0.00007717653352301568, -0.15680640935897827 + ], + "max": [ + 0.06946474313735962, 0.2049291431903839, 0.07221721112728119 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_33_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 560460, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 560464, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 560468, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x2_Landing_Gear_33_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 560472, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x2_Landing_Gear_33_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 560476, + "componentType": 5123, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 79860, + "componentType": 5123, + "count": 1170, + "type": "SCALAR", + "name": "x2_Landing_Gear_33_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 575028, + "componentType": 5126, + "count": 266, + "min": [ + -0.07572513073682785, -0.4879245460033417, -0.06174151971936226 + ], + "max": [ + 0.08383386582136154, 0.04136434197425842, 0.08959703892469406 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_28_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 575040, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 575044, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 575048, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x2_Landing_Gear_28_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 575052, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x2_Landing_Gear_28_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 575056, + "componentType": 5123, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 82200, + "componentType": 5123, + "count": 780, + "type": "SCALAR", + "name": "x2_Landing_Gear_28_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 584604, + "componentType": 5126, + "count": 494, + "min": [ + -0.24867123365402222, -0.47871631383895874, -0.12202513962984085 + ], + "max": [ + 0.25053781270980835, 0.4637438952922821, 0.11836779862642288 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_27_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 584616, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 584620, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 584624, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x2_Landing_Gear_27_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 584628, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x2_Landing_Gear_27_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 584632, + "componentType": 5123, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 83760, + "componentType": 5123, + "count": 1428, + "type": "SCALAR", + "name": "x2_Landing_Gear_27_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 602388, + "componentType": 5126, + "count": 809, + "min": [ + -0.8547629117965698, -0.0962313786149025, -0.13693682849407196 + ], + "max": [ + 0.09419623017311096, 0.7866530418395996, 0.8971602320671082 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_30_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 602400, + "componentType": 5120, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 602404, + "componentType": 5120, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 602408, + "componentType": 5122, + "count": 809, + "type": "VEC2", + "name": "x2_Landing_Gear_30_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 602412, + "componentType": 5122, + "count": 809, + "type": "VEC2", + "name": "x2_Landing_Gear_30_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 602416, + "componentType": 5123, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 86616, + "componentType": 5123, + "count": 2250, + "type": "SCALAR", + "name": "x2_Landing_Gear_30_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 631512, + "componentType": 5126, + "count": 381, + "min": [ + -0.6501015424728394, -0.08501788228750229, -0.09811916202306747 + ], + "max": [ + 0.09247440844774246, 0.6054477095603943, 0.701320230960846 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_32_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 631524, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 631528, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 631532, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x2_Landing_Gear_32_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 631536, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x2_Landing_Gear_32_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 631540, + "componentType": 5123, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 91116, + "componentType": 5123, + "count": 1092, + "type": "SCALAR", + "name": "x2_Landing_Gear_32_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 645228, + "componentType": 5126, + "count": 402, + "min": [ + -0.1838911920785904, -0.03681207820773125, -0.07498207688331604 + ], + "max": [ + 0.07412464171648026, 0.18855255842208862, 0.21611623466014862 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_34_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 645240, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 645244, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 645248, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Landing_Gear_34_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 645252, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Landing_Gear_34_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 645256, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 93300, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x2_Landing_Gear_34_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 659700, + "componentType": 5126, + "count": 68, + "min": [ + -0.3114413917064667, -0.5552248358726501, -0.15138445794582367 + ], + "max": [ + -0.03757470101118088, -0.09081382304430008, 0.002167706610634923 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_Part18_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 659712, + "componentType": 5120, + "count": 68, + "type": "VEC4", + "name": "x2_Landing_Gear_Part18_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 659716, + "componentType": 5120, + "count": 68, + "type": "VEC4", + "name": "x2_Landing_Gear_Part18_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 659720, + "componentType": 5122, + "count": 68, + "type": "VEC2", + "name": "x2_Landing_Gear_Part18_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 659724, + "componentType": 5122, + "count": 68, + "type": "VEC2", + "name": "x2_Landing_Gear_Part18_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 659728, + "componentType": 5123, + "count": 68, + "type": "VEC4", + "name": "x2_Landing_Gear_Part18_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 95628, + "componentType": 5123, + "count": 204, + "type": "SCALAR", + "name": "x2_Landing_Gear_Part18_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 662148, + "componentType": 5126, + "count": 416, + "min": [ + -0.5345221757888794, -0.07823525369167328, -0.2362041175365448 + ], + "max": [ + 0.047638796269893646, 0.07935012131929398, 0.08203960210084915 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_21_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 662160, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 662164, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 662168, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x2_Landing_Gear_21_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 662172, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x2_Landing_Gear_21_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 662176, + "componentType": 5123, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 96036, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x2_Landing_Gear_21_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 677124, + "componentType": 5126, + "count": 207, + "min": [ + -0.04170489311218262, -0.0035616059321910143, -0.06835149973630905 + ], + "max": [ + 0.04275929182767868, 0.09879220277070999, 0.06632494926452637 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_Part17_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 677136, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 677140, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 677144, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x2_Landing_Gear_Part17_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 677148, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x2_Landing_Gear_Part17_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 677152, + "componentType": 5123, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 98100, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x2_Landing_Gear_Part17_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 684576, + "componentType": 5126, + "count": 570, + "min": [ + -0.2603239417076111, -0.2851305603981018, -0.5587872862815857 + ], + "max": [ + 0.2621162533760071, 0.14123310148715973, 0.09448603540658951 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_07_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 684588, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 684592, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 684596, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_Landing_Gear_07_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 684600, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_Landing_Gear_07_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 684604, + "componentType": 5123, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 99252, + "componentType": 5123, + "count": 1620, + "type": "SCALAR", + "name": "x2_Landing_Gear_07_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 705096, + "componentType": 5126, + "count": 524, + "min": [ + -0.19263356924057007, -0.319171279668808, -0.060022998601198196 + ], + "max": [ + 0.32980313897132874, 0.05938861519098282, 0.593543291091919 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_08_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 705108, + "componentType": 5120, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 705112, + "componentType": 5120, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 705116, + "componentType": 5122, + "count": 524, + "type": "VEC2", + "name": "x2_Landing_Gear_08_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 705120, + "componentType": 5122, + "count": 524, + "type": "VEC2", + "name": "x2_Landing_Gear_08_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 705124, + "componentType": 5123, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 102492, + "componentType": 5123, + "count": 1476, + "type": "SCALAR", + "name": "x2_Landing_Gear_08_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 723960, + "componentType": 5126, + "count": 342, + "min": [ + -0.22925163805484772, -0.10058379173278809, -0.7607426047325134 + ], + "max": [ + 0.22795312106609344, 0.05234966054558754, 0.05308847874403 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_35_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 723972, + "componentType": 5120, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 723976, + "componentType": 5120, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 723980, + "componentType": 5122, + "count": 342, + "type": "VEC2", + "name": "x2_Landing_Gear_35_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 723984, + "componentType": 5122, + "count": 342, + "type": "VEC2", + "name": "x2_Landing_Gear_35_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 723988, + "componentType": 5123, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 105444, + "componentType": 5123, + "count": 900, + "type": "SCALAR", + "name": "x2_Landing_Gear_35_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 736272, + "componentType": 5126, + "count": 326, + "min": [ + -0.23556528985500336, -0.1010746881365776, -0.051994845271110535 + ], + "max": [ + 0.22163811326026917, 0.05252198129892349, 0.7035229802131653 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_36_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 736284, + "componentType": 5120, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 736288, + "componentType": 5120, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 736292, + "componentType": 5122, + "count": 326, + "type": "VEC2", + "name": "x2_Landing_Gear_36_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 736296, + "componentType": 5122, + "count": 326, + "type": "VEC2", + "name": "x2_Landing_Gear_36_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 736300, + "componentType": 5123, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 107244, + "componentType": 5123, + "count": 852, + "type": "SCALAR", + "name": "x2_Landing_Gear_36_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 748008, + "componentType": 5126, + "count": 1039, + "min": [ + -0.12176511436700821, -0.13467037677764893, -0.04136735200881958 + ], + "max": [ + 0.03316711634397507, 0.2825733423233032, 0.6186313629150391 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_37_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 748020, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 748024, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 748028, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x2_Landing_Gear_37_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 748032, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x2_Landing_Gear_37_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 748036, + "componentType": 5123, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 108948, + "componentType": 5123, + "count": 2586, + "type": "SCALAR", + "name": "x2_Landing_Gear_37_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 785412, + "componentType": 5126, + "count": 3914, + "min": [ + -1.000140905380249, -0.656471848487854, -0.6564739346504211 + ], + "max": [ + 1.0001600980758667, 0.6564624309539795, 0.6564890742301941 + ], + "type": "VEC3", + "name": "x2_LWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 785424, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 785428, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 785432, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_LWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 785436, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_LWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 785440, + "componentType": 5123, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 114120, + "componentType": 5123, + "count": 8112, + "type": "SCALAR", + "name": "x2_LWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 926316, + "componentType": 5126, + "count": 2460, + "min": [ + -0.9917589426040649, -0.6608234643936157, -0.6620064377784729 + ], + "max": [ + 0.9917637705802917, 0.6631320118904114, 0.6619722843170166 + ], + "type": "VEC3", + "name": "x2_LWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 926328, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 926332, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 926336, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_LWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 926340, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_LWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 926344, + "componentType": 5123, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 130344, + "componentType": 5123, + "count": 4536, + "type": "SCALAR", + "name": "x2_LWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1014876, + "componentType": 5126, + "count": 3914, + "min": [ + -1.0001823902130127, -0.6576864123344421, -0.6563639044761658 + ], + "max": [ + 1.0001399517059326, 0.6552196145057678, 0.6565301418304443 + ], + "type": "VEC3", + "name": "x2_LWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1014888, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1014892, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1014896, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_LWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1014900, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_LWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1014904, + "componentType": 5123, + "count": 3914, + "type": "VEC4", + "name": "x2_LWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 139416, + "componentType": 5123, + "count": 8112, + "type": "SCALAR", + "name": "x2_LWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1155780, + "componentType": 5126, + "count": 2460, + "min": [ + -0.9917910695075989, -0.663116991519928, -0.6619616746902466 + ], + "max": [ + 0.9918091297149658, 0.6608161330223083, 0.6619909405708313 + ], + "type": "VEC3", + "name": "x2_LWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1155792, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1155796, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1155800, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_LWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1155804, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_LWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1155808, + "componentType": 5123, + "count": 2460, + "type": "VEC4", + "name": "x2_LWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 155640, + "componentType": 5123, + "count": 4536, + "type": "SCALAR", + "name": "x2_LWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1244340, + "componentType": 5126, + "count": 18394, + "min": [ + -0.4227254390716553, -0.342711865901947, -1.117987871170044 + ], + "max": [ + 0.42273378372192383, 0.40016335248947144, 1.0559823513031006 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_09_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1244352, + "componentType": 5120, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1244356, + "componentType": 5120, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1244360, + "componentType": 5122, + "count": 18394, + "type": "VEC2", + "name": "x2_Landing_Gear_09_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1244364, + "componentType": 5122, + "count": 18394, + "type": "VEC2", + "name": "x2_Landing_Gear_09_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1244368, + "componentType": 5123, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 164712, + "componentType": 5123, + "count": 47241, + "type": "SCALAR", + "name": "x2_Landing_Gear_09_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1906524, + "componentType": 5126, + "count": 1531, + "min": [ + 4.716361045837402, -4.155942440032959, -0.07562761008739471 + ], + "max": [ + 5.392264366149902, -2.2382805347442627, 0.5708626508712769 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_10_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1906536, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1906540, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1906544, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x2_Landing_Gear_10_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1906548, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x2_Landing_Gear_10_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1906552, + "componentType": 5123, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 259194, + "componentType": 5123, + "count": 4482, + "type": "SCALAR", + "name": "x2_Landing_Gear_10_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 1961640, + "componentType": 5126, + "count": 4135, + "min": [ + -0.39404717087745667, -2.8029232025146484, -0.1828860193490982 + ], + "max": [ + 0.3379496932029724, 0.19436025619506836, 1.4807299375534058 + ], + "type": "VEC3", + "name": "x2_Landing_gear_Root_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 1961652, + "componentType": 5120, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 1961656, + "componentType": 5120, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 1961660, + "componentType": 5122, + "count": 4135, + "type": "VEC2", + "name": "x2_Landing_gear_Root_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 1961664, + "componentType": 5122, + "count": 4135, + "type": "VEC2", + "name": "x2_Landing_gear_Root_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 1961668, + "componentType": 5123, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 268158, + "componentType": 5123, + "count": 11313, + "type": "SCALAR", + "name": "x2_Landing_gear_Root_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 2110500, + "componentType": 5126, + "count": 636, + "min": [ + -0.7596518397331238, -0.06375879049301147, -0.33029845356941223 + ], + "max": [ + 0.08546173572540283, 0.6872593760490417, 0.15126338601112366 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_16_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2110512, + "componentType": 5120, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2110516, + "componentType": 5120, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2110520, + "componentType": 5122, + "count": 636, + "type": "VEC2", + "name": "x2_Landing_Gear_16_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2110524, + "componentType": 5122, + "count": 636, + "type": "VEC2", + "name": "x2_Landing_Gear_16_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2110528, + "componentType": 5123, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 290784, + "componentType": 5123, + "count": 1896, + "type": "SCALAR", + "name": "x2_Landing_Gear_16_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2133396, + "componentType": 5126, + "count": 402, + "min": [ + -0.03414178267121315, -0.8854021430015564, -0.5936678051948547 + ], + "max": [ + 0.6516878604888916, 0.1835114061832428, 0.53572678565979 + ], + "type": "VEC3", + "name": "x2_Door02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2133408, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2133412, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2133416, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Door02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2133420, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Door02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2133424, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 294576, + "componentType": 5123, + "count": 969, + "type": "SCALAR", + "name": "x2_Door02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2147868, + "componentType": 5126, + "count": 308, + "min": [ + -0.2507967948913574, -0.967497706413269, -0.7525056004524231 + ], + "max": [ + 0.15367422997951508, 0.041933778673410416, 0.330599308013916 + ], + "type": "VEC3", + "name": "x2_Door03_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2147880, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2147884, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2147888, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x2_Door03_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2147892, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x2_Door03_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2147896, + "componentType": 5123, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 296514, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x2_Door03_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2158956, + "componentType": 5126, + "count": 961, + "min": [ + 0.17013131082057953, -2.62166428565979, -0.8714801669120789 + ], + "max": [ + 0.6099632978439331, -0.415888249874115, 1.7047147750854492 + ], + "type": "VEC3", + "name": "x2_Door04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2158968, + "componentType": 5120, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2158972, + "componentType": 5120, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2158976, + "componentType": 5122, + "count": 961, + "type": "VEC2", + "name": "x2_Door04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2158980, + "componentType": 5122, + "count": 961, + "type": "VEC2", + "name": "x2_Door04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2158984, + "componentType": 5123, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 298170, + "componentType": 5123, + "count": 2034, + "type": "SCALAR", + "name": "x2_Door04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2193552, + "componentType": 5126, + "count": 2258, + "min": [ + -1.4488391876220703, -1.4488391876220703, -1.3046150207519531 + ], + "max": [ + 1.4488390684127808, 1.4488390684127808, 0 + ], + "type": "VEC3", + "name": "x2_1_still_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2193564, + "componentType": 5120, + "count": 2258, + "type": "VEC4", + "name": "x2_1_still_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2193568, + "componentType": 5120, + "count": 2258, + "type": "VEC4", + "name": "x2_1_still_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2193572, + "componentType": 5122, + "count": 2258, + "type": "VEC2", + "name": "x2_1_still_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2193576, + "componentType": 5122, + "count": 2258, + "type": "VEC2", + "name": "x2_1_still_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2193580, + "componentType": 5123, + "count": 2258, + "type": "VEC4", + "name": "x2_1_still_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 302238, + "componentType": 5123, + "count": 7620, + "type": "SCALAR", + "name": "x2_1_still_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2274840, + "componentType": 5126, + "count": 149, + "min": [ + -1.4504354000091553, -1.4424867630004883, -1.282716155052185 + ], + "max": [ + 1.4504311084747314, 1.4424872398376465, 0.0000023841835172788706 + ], + "type": "VEC3", + "name": "x2_1_slow_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2274852, + "componentType": 5120, + "count": 149, + "type": "VEC4", + "name": "x2_1_slow_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2274856, + "componentType": 5120, + "count": 149, + "type": "VEC4", + "name": "x2_1_slow_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2274860, + "componentType": 5122, + "count": 149, + "type": "VEC2", + "name": "x2_1_slow_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2274864, + "componentType": 5122, + "count": 149, + "type": "VEC2", + "name": "x2_1_slow_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2274868, + "componentType": 5123, + "count": 149, + "type": "VEC4", + "name": "x2_1_slow_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 317478, + "componentType": 5123, + "count": 630, + "type": "SCALAR", + "name": "x2_1_slow_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 2280204, + "componentType": 5126, + "count": 149, + "min": [ + -1.4504354000091553, -1.4424867630004883, -1.2827162742614746 + ], + "max": [ + 1.4504311084747314, 1.4424872398376465, 0.000002384183744652546 + ], + "type": "VEC3", + "name": "x2_1_blurred_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2280216, + "componentType": 5120, + "count": 149, + "type": "VEC4", + "name": "x2_1_blurred_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2280220, + "componentType": 5120, + "count": 149, + "type": "VEC4", + "name": "x2_1_blurred_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2280224, + "componentType": 5122, + "count": 149, + "type": "VEC2", + "name": "x2_1_blurred_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2280228, + "componentType": 5122, + "count": 149, + "type": "VEC2", + "name": "x2_1_blurred_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2280232, + "componentType": 5123, + "count": 149, + "type": "VEC4", + "name": "x2_1_blurred_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 318738, + "componentType": 5123, + "count": 630, + "type": "SCALAR", + "name": "x2_1_blurred_left_indices#1" + }, { + "bufferView": 4, + "byteOffset": 2285568, + "componentType": 5126, + "count": 768, + "min": [ + -0.9987974762916565, -3.06459641456604, -0.012545671314001083 + ], + "max": [ + 2.2667593955993652, 0.12233717739582062, 0.5453643798828125 + ], + "type": "VEC3", + "name": "x2_Engine_Details04_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2285580, + "componentType": 5120, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2285584, + "componentType": 5120, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2285588, + "componentType": 5122, + "count": 768, + "type": "VEC2", + "name": "x2_Engine_Details04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2285592, + "componentType": 5122, + "count": 768, + "type": "VEC2", + "name": "x2_Engine_Details04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2285596, + "componentType": 5123, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 319998, + "componentType": 5123, + "count": 1440, + "type": "SCALAR", + "name": "x2_Engine_Details04_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2313216, + "componentType": 5126, + "count": 4953, + "min": [ + -1.9560017585754395, -1.9257582426071167, -1.22777259349823 + ], + "max": [ + 1.9560022354125977, 1.9257560968399048, 1.22777259349823 + ], + "type": "VEC3", + "name": "x2_Engine_Duct_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2313228, + "componentType": 5120, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2313232, + "componentType": 5120, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2313236, + "componentType": 5122, + "count": 4953, + "type": "VEC2", + "name": "x2_Engine_Duct_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2313240, + "componentType": 5122, + "count": 4953, + "type": "VEC2", + "name": "x2_Engine_Duct_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2313244, + "componentType": 5123, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 322878, + "componentType": 5123, + "count": 12120, + "type": "SCALAR", + "name": "x2_Engine_Duct_left_indices#2" + }, { + "bufferView": 4, + "byteOffset": 2491524, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_LEFT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2491536, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2491540, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2491544, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2491548, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2491552, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_LEFT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 347118, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_LEFT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2491668, + "componentType": 5126, + "count": 5637, + "min": [ + 7.761521339416504, -3.588141918182373, -6.928446292877197 + ], + "max": [ + 11.850577354431152, 0.6290028691291809, 4.622333526611328 + ], + "type": "VEC3", + "name": "FROST_ENGINEL_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2491680, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2491684, + "componentType": 5120, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2491688, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2491692, + "componentType": 5122, + "count": 5637, + "type": "VEC2", + "name": "FROST_ENGINEL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2491696, + "componentType": 5123, + "count": 5637, + "type": "VEC4", + "name": "FROST_ENGINEL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 347130, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINEL_indices#1" + }, { + "bufferView": 4, + "byteOffset": 2694600, + "componentType": 5126, + "count": 24, + "min": [ + -2.0173912048339844, -0.27122175693511963, -0.4341895580291748 + ], + "max": [ + 2.017392158508301, 0.2712216377258301, 0.434190034866333 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_EngA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2694612, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2694616, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2694620, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x2_Livery_KLM_EngA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2694624, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x2_Livery_KLM_EngA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2694628, + "componentType": 5123, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 370986, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x2_Livery_KLM_EngA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2695464, + "componentType": 5126, + "count": 55, + "min": [ + -0.03224852681159973, -1.0042163133621216, -0.03409099578857422 + ], + "max": [ + 0.4602266550064087, 0.034630537033081055, 0.07558190822601318 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_02_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2695476, + "componentType": 5120, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2695480, + "componentType": 5120, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2695484, + "componentType": 5122, + "count": 55, + "type": "VEC2", + "name": "x2_Landing_Gear_02_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2695488, + "componentType": 5122, + "count": 55, + "type": "VEC2", + "name": "x2_Landing_Gear_02_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2695492, + "componentType": 5123, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 371130, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x2_Landing_Gear_02_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2697444, + "componentType": 5126, + "count": 115, + "min": [ + -0.45004570484161377, -0.04039186239242554, -0.004243016242980957 + ], + "max": [ + 0.039136409759521484, 1.0874087810516357, 0.044423460960388184 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2697456, + "componentType": 5120, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2697460, + "componentType": 5120, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2697464, + "componentType": 5122, + "count": 115, + "type": "VEC2", + "name": "x2_Landing_Gear_01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2697468, + "componentType": 5122, + "count": 115, + "type": "VEC2", + "name": "x2_Landing_Gear_01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2697472, + "componentType": 5123, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 371418, + "componentType": 5123, + "count": 360, + "type": "SCALAR", + "name": "x2_Landing_Gear_01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2701584, + "componentType": 5126, + "count": 826, + "min": [ + -0.27454039454460144, -0.2621164917945862, -1.894355058670044 + ], + "max": [ + 2.1205413341522217, 0.7965271472930908, 1.6294664144515991 + ], + "type": "VEC3", + "name": "x2_Door01_left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2701596, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2701600, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2701604, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x2_Door01_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2701608, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x2_Door01_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2701612, + "componentType": 5123, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 372138, + "componentType": 5123, + "count": 1806, + "type": "SCALAR", + "name": "x2_Door01_left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2731320, + "componentType": 5126, + "count": 903, + "min": [ + -0.06087186932563782, -0.11227297782897949, -0.09637412428855896 + ], + "max": [ + 0.09834221005439758, 0.0961676836013794, 0.31521469354629517 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2731332, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2731336, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2731340, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2731344, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2731348, + "componentType": 5123, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart10_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 375750, + "componentType": 5123, + "count": 2316, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart10_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2763828, + "componentType": 5126, + "count": 903, + "min": [ + -0.0952482670545578, -0.21419578790664673, -0.09637410938739777 + ], + "max": [ + 0.06396560370922089, -0.005755245685577393, 0.3152145743370056 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2763840, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2763844, + "componentType": 5120, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2763848, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2763852, + "componentType": 5122, + "count": 903, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2763856, + "componentType": 5123, + "count": 903, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart09_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 380382, + "componentType": 5123, + "count": 2316, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart09_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2796336, + "componentType": 5126, + "count": 3020, + "min": [ + -0.5640755295753479, -0.4881736636161804, -0.5183128714561462 + ], + "max": [ + 0.5640749335289001, 0.48651689291000366, 0.456381231546402 + ], + "type": "VEC3", + "name": "x2_Wheel_Nose_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2796348, + "componentType": 5120, + "count": 3020, + "type": "VEC4", + "name": "x2_Wheel_Nose_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2796352, + "componentType": 5120, + "count": 3020, + "type": "VEC4", + "name": "x2_Wheel_Nose_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2796356, + "componentType": 5122, + "count": 3020, + "type": "VEC2", + "name": "x2_Wheel_Nose_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2796360, + "componentType": 5122, + "count": 3020, + "type": "VEC2", + "name": "x2_Wheel_Nose_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2796364, + "componentType": 5123, + "count": 3020, + "type": "VEC4", + "name": "x2_Wheel_Nose_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 385014, + "componentType": 5123, + "count": 5856, + "type": "SCALAR", + "name": "x2_Wheel_Nose_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2905056, + "componentType": 5126, + "count": 1552, + "min": [ + -0.5598625540733337, -0.5029525756835938, -0.5029479265213013 + ], + "max": [ + 0.5598625540733337, 0.50295090675354, 0.5029536485671997 + ], + "type": "VEC3", + "name": "x2_Wheel_Nose_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2905068, + "componentType": 5120, + "count": 1552, + "type": "VEC4", + "name": "x2_Wheel_Nose_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2905072, + "componentType": 5120, + "count": 1552, + "type": "VEC4", + "name": "x2_Wheel_Nose_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2905076, + "componentType": 5122, + "count": 1552, + "type": "VEC2", + "name": "x2_Wheel_Nose_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2905080, + "componentType": 5122, + "count": 1552, + "type": "VEC2", + "name": "x2_Wheel_Nose_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2905084, + "componentType": 5123, + "count": 1552, + "type": "VEC4", + "name": "x2_Wheel_Nose_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 396726, + "componentType": 5123, + "count": 3240, + "type": "SCALAR", + "name": "x2_Wheel_Nose_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2960928, + "componentType": 5126, + "count": 618, + "min": [ + -0.32607021927833557, -1.9056421518325806, -0.2256983518600464 + ], + "max": [ + 0.32540687918663025, -0.839117169380188, 0.3319077491760254 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2960940, + "componentType": 5120, + "count": 618, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2960944, + "componentType": 5120, + "count": 618, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2960948, + "componentType": 5122, + "count": 618, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2960952, + "componentType": 5122, + "count": 618, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2960956, + "componentType": 5123, + "count": 618, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart13_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 403206, + "componentType": 5123, + "count": 1662, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart13_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2983176, + "componentType": 5126, + "count": 78, + "min": [ + -0.044895220547914505, -0.055755674839019775, -0.08164405822753906 + ], + "max": [ + 0.05084388703107834, 0.730220377445221, 0.4715595245361328 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2983188, + "componentType": 5120, + "count": 78, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2983192, + "componentType": 5120, + "count": 78, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2983196, + "componentType": 5122, + "count": 78, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2983200, + "componentType": 5122, + "count": 78, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2983204, + "componentType": 5123, + "count": 78, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart07_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 406530, + "componentType": 5123, + "count": 228, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart07_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2985984, + "componentType": 5126, + "count": 145, + "min": [ + -1.1108920574188232, -0.9466642737388611, -0.017040252685546875 + ], + "max": [ + -0.9635716676712036, -0.0338289737701416, 0.28690147399902344 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2985996, + "componentType": 5120, + "count": 145, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2986000, + "componentType": 5120, + "count": 145, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2986004, + "componentType": 5122, + "count": 145, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2986008, + "componentType": 5122, + "count": 145, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2986012, + "componentType": 5123, + "count": 145, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart05_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 406986, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart05_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2991204, + "componentType": 5126, + "count": 125, + "min": [ + -1.0427149534225464, -1.0802814960479736, -0.0015544891357421875 + ], + "max": [ + -0.97734135389328, -0.06619074940681458, 0.3097076416015625 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2991216, + "componentType": 5120, + "count": 125, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2991220, + "componentType": 5120, + "count": 125, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2991224, + "componentType": 5122, + "count": 125, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2991228, + "componentType": 5122, + "count": 125, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2991232, + "componentType": 5123, + "count": 125, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart04_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 407850, + "componentType": 5123, + "count": 408, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart04_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 2995704, + "componentType": 5126, + "count": 11969, + "min": [ + -0.6842957139015198, -1.2313508987426758, -0.37573957443237305 + ], + "max": [ + 0.6873666644096375, 0.2248142957687378, 0.4740757346153259 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 2995716, + "componentType": 5120, + "count": 11969, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 2995720, + "componentType": 5120, + "count": 11969, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 2995724, + "componentType": 5122, + "count": 11969, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 2995728, + "componentType": 5122, + "count": 11969, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 2995732, + "componentType": 5123, + "count": 11969, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart16_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 408666, + "componentType": 5123, + "count": 30453, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart16_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3426588, + "componentType": 5126, + "count": 148, + "min": [ + -0.3641817271709442, 1.036027193069458, 0.03543475270271301 + ], + "max": [ + 0.3641034960746765, 1.2864251136779785, 0.048446688801050186 + ], + "type": "VEC3", + "name": "x2_cgear_landinglight_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3426600, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x2_cgear_landinglight_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3426604, + "componentType": 5120, + "count": 148, + "type": "VEC4", + "name": "x2_cgear_landinglight_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3426608, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x2_cgear_landinglight_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3426612, + "componentType": 5122, + "count": 148, + "type": "VEC2", + "name": "x2_cgear_landinglight_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3426616, + "componentType": 5123, + "count": 148, + "type": "VEC4", + "name": "x2_cgear_landinglight_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 469572, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x2_cgear_landinglight_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3431916, + "componentType": 5126, + "count": 336, + "min": [ + -0.05591854453086853, -0.06089082360267639, 0.015495792031288147 + ], + "max": [ + 0.061689287424087524, 0.05669650435447693, 0.07396075129508972 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3431928, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3431932, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3431936, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3431940, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3431944, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 470724, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3444012, + "componentType": 5126, + "count": 336, + "min": [ + -0.05926698446273804, -0.06006696820259094, 0.014746665954589844 + ], + "max": [ + 0.05834090709686279, 0.05752035975456238, 0.07321162521839142 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3444024, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3444028, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3444032, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3444036, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3444040, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 471780, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Taxi_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3456108, + "componentType": 5126, + "count": 336, + "min": [ + -0.06035532057285309, -0.05839133262634277, 0.01306241750717163 + ], + "max": [ + 0.05670058727264404, 0.05864408612251282, 0.07599139213562012 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3456120, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3456124, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3456128, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3456132, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3456136, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 472836, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3468204, + "componentType": 5126, + "count": 336, + "min": [ + -0.053412288427352905, -0.057750552892684937, 0.012313216924667358 + ], + "max": [ + 0.06364355981349945, 0.059284865856170654, 0.07211384922266006 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3468216, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3468220, + "componentType": 5120, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3468224, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3468228, + "componentType": 5122, + "count": 336, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3468232, + "componentType": 5123, + "count": 336, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 473892, + "componentType": 5123, + "count": 528, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingNose_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3480300, + "componentType": 5126, + "count": 206, + "min": [ + -0.1752292960882187, -0.05575796961784363, -0.6955015659332275 + ], + "max": [ + 0.20009499788284302, 0.2307826280593872, 0.05751323699951172 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3480312, + "componentType": 5120, + "count": 206, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3480316, + "componentType": 5120, + "count": 206, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3480320, + "componentType": 5122, + "count": 206, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3480324, + "componentType": 5122, + "count": 206, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3480328, + "componentType": 5123, + "count": 206, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart01_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 474948, + "componentType": 5123, + "count": 420, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart01_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3487716, + "componentType": 5126, + "count": 104, + "min": [ + -0.19233214855194092, -0.0018833389040082693, -0.7656666040420532 + ], + "max": [ + 0.19839490950107574, 0.09125363081693649, -0.0005679730675183237 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3487728, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3487732, + "componentType": 5120, + "count": 104, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3487736, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3487740, + "componentType": 5122, + "count": 104, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3487744, + "componentType": 5123, + "count": 104, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart03_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 475788, + "componentType": 5123, + "count": 264, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart03_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3491460, + "componentType": 5126, + "count": 480, + "min": [ + -0.19221720099449158, -0.07482969760894775, -0.3318076431751251 + ], + "max": [ + 0.18464596569538116, 0.0989619791507721, 0.08661725372076035 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3491472, + "componentType": 5120, + "count": 480, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3491476, + "componentType": 5120, + "count": 480, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3491480, + "componentType": 5122, + "count": 480, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3491484, + "componentType": 5122, + "count": 480, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3491488, + "componentType": 5123, + "count": 480, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart02_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 476316, + "componentType": 5123, + "count": 918, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart02_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3508740, + "componentType": 5126, + "count": 350, + "min": [ + -0.6851537227630615, -1.4342777729034424, -0.05928806588053703 + ], + "max": [ + 0.6857999563217163, 0.059001073241233826, 0.05920795723795891 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3508752, + "componentType": 5120, + "count": 350, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3508756, + "componentType": 5120, + "count": 350, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3508760, + "componentType": 5122, + "count": 350, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3508764, + "componentType": 5122, + "count": 350, + "type": "VEC2", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3508768, + "componentType": 5123, + "count": 350, + "type": "VEC4", + "name": "x2_Landing_Gear_NosePart06_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 478152, + "componentType": 5123, + "count": 888, + "type": "SCALAR", + "name": "x2_Landing_Gear_NosePart06_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3521340, + "componentType": 5126, + "count": 55, + "min": [ + -0.4602263271808624, -1.0042160749435425, -0.03409159183502197 + ], + "max": [ + 0.032249003648757935, 0.034630775451660156, 0.07558143138885498 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3521352, + "componentType": 5120, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3521356, + "componentType": 5120, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3521360, + "componentType": 5122, + "count": 55, + "type": "VEC2", + "name": "x2_Landing_Gear_02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3521364, + "componentType": 5122, + "count": 55, + "type": "VEC2", + "name": "x2_Landing_Gear_02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3521368, + "componentType": 5123, + "count": 55, + "type": "VEC4", + "name": "x2_Landing_Gear_02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 479928, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "x2_Landing_Gear_02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3523320, + "componentType": 5126, + "count": 994, + "min": [ + -4.525832653045654, -0.6001608967781067, -2.9553093910217285 + ], + "max": [ + 4.059257507324219, 0.5778914093971252, 1.825056791305542 + ], + "type": "VEC3", + "name": "x2_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3523332, + "componentType": 5120, + "count": 994, + "type": "VEC4", + "name": "x2_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3523336, + "componentType": 5120, + "count": 994, + "type": "VEC4", + "name": "x2_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3523340, + "componentType": 5122, + "count": 994, + "type": "VEC2", + "name": "x2_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3523344, + "componentType": 5122, + "count": 994, + "type": "VEC2", + "name": "x2_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3523348, + "componentType": 5123, + "count": 994, + "type": "VEC4", + "name": "x2_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 480216, + "componentType": 5123, + "count": 2604, + "type": "SCALAR", + "name": "x2_Elevator_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3559104, + "componentType": 5126, + "count": 693, + "min": [ + -8.383630752563477, -0.9290987849235535, -7.6868205070495605 + ], + "max": [ + 0.3443736433982849, 1.1159917116165161, 1.9090256690979004 + ], + "type": "VEC3", + "name": "x2_Trim_Elevator_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3559116, + "componentType": 5120, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3559120, + "componentType": 5120, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3559124, + "componentType": 5122, + "count": 693, + "type": "VEC2", + "name": "x2_Trim_Elevator_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3559128, + "componentType": 5122, + "count": 693, + "type": "VEC2", + "name": "x2_Trim_Elevator_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3559132, + "componentType": 5123, + "count": 693, + "type": "VEC4", + "name": "x2_Trim_Elevator_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 485424, + "componentType": 5123, + "count": 1926, + "type": "SCALAR", + "name": "x2_Trim_Elevator_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3584052, + "componentType": 5126, + "count": 49, + "min": [ + -0.058685302734375, -0.02209782600402832, -0.058669209480285645 + ], + "max": [ + 0.058684349060058594, -0.0038215811364352703, 0.058673858642578125 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3584064, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3584068, + "componentType": 5120, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3584072, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3584076, + "componentType": 5122, + "count": 49, + "type": "VEC2", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3584080, + "componentType": 5123, + "count": 49, + "type": "VEC4", + "name": "LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 489276, + "componentType": 5123, + "count": 144, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Logo_Right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3585816, + "componentType": 5126, + "count": 993, + "min": [ + -9.87392520904541, 0.4362349510192871, -39.12284469604492 + ], + "max": [ + -1.1026742458343506, 2.5371527671813965, -30.232032775878906 + ], + "type": "VEC3", + "name": "FROST_ELEVATORR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3585828, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3585832, + "componentType": 5120, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3585836, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3585840, + "componentType": 5122, + "count": 993, + "type": "VEC2", + "name": "FROST_ELEVATORR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3585844, + "componentType": 5123, + "count": 993, + "type": "VEC4", + "name": "FROST_ELEVATORR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 489564, + "componentType": 5123, + "count": 2223, + "type": "SCALAR", + "name": "FROST_ELEVATORR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3621564, + "componentType": 5126, + "count": 332, + "min": [ + -0.20538169145584106, -0.845594584941864, -1.010693907737732 + ], + "max": [ + 0.2053816169500351, 0.8406112194061279, 1.0106977224349976 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3621576, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3621580, + "componentType": 5120, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3621584, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3621588, + "componentType": 5122, + "count": 332, + "type": "VEC2", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3621592, + "componentType": 5123, + "count": 332, + "type": "VEC4", + "name": "x2_Livery_KLM_ElevatorTrimR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 494010, + "componentType": 5123, + "count": 678, + "type": "SCALAR", + "name": "x2_Livery_KLM_ElevatorTrimR_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3633516, + "componentType": 5126, + "count": 402, + "min": [ + -0.6516884565353394, -0.8853996396064758, -0.5936698913574219 + ], + "max": [ + 0.034141186624765396, 0.1835108995437622, 0.5357276797294617 + ], + "type": "VEC3", + "name": "x2_Door02_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3633528, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3633532, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3633536, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Door02_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3633540, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Door02_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3633544, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x2_Door02_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 495366, + "componentType": 5123, + "count": 969, + "type": "SCALAR", + "name": "x2_Door02_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3647988, + "componentType": 5126, + "count": 308, + "min": [ + -0.15367622673511505, -0.9674960970878601, -0.7525057196617126 + ], + "max": [ + 0.25079643726348877, 0.041933879256248474, 0.33059877157211304 + ], + "type": "VEC3", + "name": "x2_Door03_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3648000, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3648004, + "componentType": 5120, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3648008, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x2_Door03_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3648012, + "componentType": 5122, + "count": 308, + "type": "VEC2", + "name": "x2_Door03_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3648016, + "componentType": 5123, + "count": 308, + "type": "VEC4", + "name": "x2_Door03_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 497304, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x2_Door03_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3659076, + "componentType": 5126, + "count": 4953, + "min": [ + -1.9560022354125977, -1.9257582426071167, -1.2277727127075195 + ], + "max": [ + 1.9560017585754395, 1.9257560968399048, 1.2277724742889404 + ], + "type": "VEC3", + "name": "x2_Engine_Duct_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3659088, + "componentType": 5120, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3659092, + "componentType": 5120, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3659096, + "componentType": 5122, + "count": 4953, + "type": "VEC2", + "name": "x2_Engine_Duct_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3659100, + "componentType": 5122, + "count": 4953, + "type": "VEC2", + "name": "x2_Engine_Duct_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3659104, + "componentType": 5123, + "count": 4953, + "type": "VEC4", + "name": "x2_Engine_Duct_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 498960, + "componentType": 5123, + "count": 12120, + "type": "SCALAR", + "name": "x2_Engine_Duct_right_indices#2" + }, { + "bufferView": 4, + "byteOffset": 3837384, + "componentType": 5126, + "count": 768, + "min": [ + -2.2667579650878906, -0.12233701348304749, -0.5453643798828125 + ], + "max": [ + 0.9987968802452087, 3.0645923614501953, 0.012545671314001083 + ], + "type": "VEC3", + "name": "x2_Engine_Details04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3837396, + "componentType": 5120, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3837400, + "componentType": 5120, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3837404, + "componentType": 5122, + "count": 768, + "type": "VEC2", + "name": "x2_Engine_Details04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3837408, + "componentType": 5122, + "count": 768, + "type": "VEC2", + "name": "x2_Engine_Details04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3837412, + "componentType": 5123, + "count": 768, + "type": "VEC4", + "name": "x2_Engine_Details04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 523200, + "componentType": 5123, + "count": 1440, + "type": "SCALAR", + "name": "x2_Engine_Details04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3865032, + "componentType": 5126, + "count": 138, + "min": [ + -1.4504361152648926, -1.4424867630004883, -1.2827130556106567 + ], + "max": [ + 1.4504318237304688, 1.4424872398376465, 0.000005483617769641569 + ], + "type": "VEC3", + "name": "x2_2_blurred_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3865044, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_2_blurred_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3865048, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_2_blurred_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3865052, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_2_blurred_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3865056, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_2_blurred_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3865060, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x2_2_blurred_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 526080, + "componentType": 5123, + "count": 546, + "type": "SCALAR", + "name": "x2_2_blurred_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3870000, + "componentType": 5126, + "count": 138, + "min": [ + -1.4504361152648926, -1.4424867630004883, -1.2827130556106567 + ], + "max": [ + 1.4504318237304688, 1.4424872398376465, 0.00000548361822438892 + ], + "type": "VEC3", + "name": "x2_2_slow_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3870012, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_2_slow_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3870016, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_2_slow_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3870020, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_2_slow_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3870024, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_2_slow_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3870028, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x2_2_slow_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 527172, + "componentType": 5123, + "count": 546, + "type": "SCALAR", + "name": "x2_2_slow_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 3874968, + "componentType": 5126, + "count": 2258, + "min": [ + -1.4488407373428345, -1.4488389492034912, -1.3046135902404785 + ], + "max": [ + 1.448840618133545, 1.4488388299942017, 0 + ], + "type": "VEC3", + "name": "x2_2_still_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3874980, + "componentType": 5120, + "count": 2258, + "type": "VEC4", + "name": "x2_2_still_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3874984, + "componentType": 5120, + "count": 2258, + "type": "VEC4", + "name": "x2_2_still_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3874988, + "componentType": 5122, + "count": 2258, + "type": "VEC2", + "name": "x2_2_still_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3874992, + "componentType": 5122, + "count": 2258, + "type": "VEC2", + "name": "x2_2_still_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3874996, + "componentType": 5123, + "count": 2258, + "type": "VEC4", + "name": "x2_2_still_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 528264, + "componentType": 5123, + "count": 7620, + "type": "SCALAR", + "name": "x2_2_still_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3956256, + "componentType": 5126, + "count": 4, + "min": [ + -0.004999999888241291, 0, -0.004999999888241291 + ], + "max": [ + 0.004999999888241291, 0.009999999776482582, -0.004999999888241291 + ], + "type": "VEC3", + "name": "FX_EXHAUST_RIGHT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3956268, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3956272, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3956276, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3956280, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3956284, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "FX_EXHAUST_RIGHT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 543504, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "FX_EXHAUST_RIGHT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 3956400, + "componentType": 5126, + "count": 6446, + "min": [ + -11.850570678710938, -3.588144302368164, -6.928446292877197 + ], + "max": [ + -7.761514663696289, 0.6290009021759033, 4.6223344802856445 + ], + "type": "VEC3", + "name": "FROST_ENGINER_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 3956412, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 3956416, + "componentType": 5120, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 3956420, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 3956424, + "componentType": 5122, + "count": 6446, + "type": "VEC2", + "name": "FROST_ENGINER_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 3956428, + "componentType": 5123, + "count": 6446, + "type": "VEC4", + "name": "FROST_ENGINER_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 543516, + "componentType": 5123, + "count": 11928, + "type": "SCALAR", + "name": "FROST_ENGINER_indices#1" + }, { + "bufferView": 4, + "byteOffset": 4188456, + "componentType": 5126, + "count": 24, + "min": [ + -2.017392635345459, -0.27122175693511963, -0.4341893196105957 + ], + "max": [ + 2.017390251159668, 0.2712215185165405, 0.434190034866333 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_EngB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4188468, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4188472, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4188476, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x2_Livery_KLM_EngB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4188480, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x2_Livery_KLM_EngB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4188484, + "componentType": 5123, + "count": 24, + "type": "VEC4", + "name": "x2_Livery_KLM_EngB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 567372, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x2_Livery_KLM_EngB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4189320, + "componentType": 5126, + "count": 249, + "min": [ + -3.0481491088867188, -0.37209126353263855, -1.425876259803772 + ], + "max": [ + 2.3551323413848877, 0.8763584494590759, 2.4413177967071533 + ], + "type": "VEC3", + "name": "x2_FlapsKrueger_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4189332, + "componentType": 5120, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4189336, + "componentType": 5120, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4189340, + "componentType": 5122, + "count": 249, + "type": "VEC2", + "name": "x2_FlapsKrueger_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4189344, + "componentType": 5122, + "count": 249, + "type": "VEC2", + "name": "x2_FlapsKrueger_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4189348, + "componentType": 5123, + "count": 249, + "type": "VEC4", + "name": "x2_FlapsKrueger_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 567516, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x2_FlapsKrueger_1_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4198284, + "componentType": 5126, + "count": 92, + "min": [ + -8.716888427734375, -0.452919602394104, -0.7563257217407227 + ], + "max": [ + -3.323636531829834, 0.8474729061126709, 3.107743263244629 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4198296, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4198300, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4198304, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4198308, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4198312, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 568668, + "componentType": 5123, + "count": 162, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4201596, + "componentType": 5126, + "count": 1023, + "min": [ + -3.9990081787109375, -0.33393388986587524, -2.4733729362487793 + ], + "max": [ + 3.4751906394958496, 1.4057856798171997, 0.4561769366264343 + ], + "type": "VEC3", + "name": "x2_Flaps_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4201608, + "componentType": 5120, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4201612, + "componentType": 5120, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4201616, + "componentType": 5122, + "count": 1023, + "type": "VEC2", + "name": "x2_Flaps_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4201620, + "componentType": 5122, + "count": 1023, + "type": "VEC2", + "name": "x2_Flaps_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4201624, + "componentType": 5123, + "count": 1023, + "type": "VEC4", + "name": "x2_Flaps_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 568992, + "componentType": 5123, + "count": 2472, + "type": "SCALAR", + "name": "x2_Flaps_1_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4238424, + "componentType": 5126, + "count": 636, + "min": [ + -0.08546193689107895, -0.6872588992118835, -0.15126299858093262 + ], + "max": [ + 0.759653627872467, 0.0637587457895279, 0.3302976191043854 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_16_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4238436, + "componentType": 5120, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4238440, + "componentType": 5120, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4238444, + "componentType": 5122, + "count": 636, + "type": "VEC2", + "name": "x2_Landing_Gear_16_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4238448, + "componentType": 5122, + "count": 636, + "type": "VEC2", + "name": "x2_Landing_Gear_16_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4238452, + "componentType": 5123, + "count": 636, + "type": "VEC4", + "name": "x2_Landing_Gear_16_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 573936, + "componentType": 5123, + "count": 1896, + "type": "SCALAR", + "name": "x2_Landing_Gear_16_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4261320, + "componentType": 5126, + "count": 458, + "min": [ + -0.6043415665626526, -0.09890381991863251, -1.6344704627990723 + ], + "max": [ + 1.2742773294448853, 0.6562281250953674, 0.32845181226730347 + ], + "type": "VEC3", + "name": "x2_Flaps_1_1_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4261332, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4261336, + "componentType": 5120, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4261340, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x2_Flaps_1_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4261344, + "componentType": 5122, + "count": 458, + "type": "VEC2", + "name": "x2_Flaps_1_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4261348, + "componentType": 5123, + "count": 458, + "type": "VEC4", + "name": "x2_Flaps_1_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 577728, + "componentType": 5123, + "count": 1080, + "type": "SCALAR", + "name": "x2_Flaps_1_1_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4277808, + "componentType": 5126, + "count": 120, + "min": [ + -0.028615951538085938, -0.05844759941101074, -0.03970527648925781 + ], + "max": [ + 0.028608322143554688, 0.05844283103942871, -0.008176803588867188 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4277820, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4277824, + "componentType": 5120, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4277828, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4277832, + "componentType": 5122, + "count": 120, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4277836, + "componentType": 5123, + "count": 120, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 579888, + "componentType": 5123, + "count": 456, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4282128, + "componentType": 5126, + "count": 784, + "min": [ + -0.068023681640625, -0.024389028549194336, -0.04748344421386719 + ], + "max": [ + 0.06799697875976562, 0.024384260177612305, 0.0599365234375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4282140, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4282144, + "componentType": 5120, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4282148, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4282152, + "componentType": 5122, + "count": 784, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4282156, + "componentType": 5123, + "count": 784, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 580800, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4310352, + "componentType": 5126, + "count": 588, + "min": [ + -0.058094024658203125, -0.018535852432250977, -0.022484779357910156 + ], + "max": [ + 0.040302276611328125, 0.018535375595092773, 0.05113983154296875 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4310364, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4310368, + "componentType": 5120, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4310372, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4310376, + "componentType": 5122, + "count": 588, + "type": "VEC2", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4310380, + "componentType": 5123, + "count": 588, + "type": "VEC4", + "name": "LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 586560, + "componentType": 5123, + "count": 2160, + "type": "SCALAR", + "name": "LIGHT_ASOBO_NavigationGreen_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4331520, + "componentType": 5126, + "count": 138, + "min": [ + -1.0416648387908936, -0.2551587224006653, -1.02711021900177 + ], + "max": [ + 1.0387980937957764, 0.14307525753974915, 0.3660537600517273 + ], + "type": "VEC3", + "name": "x2_Spoiler_2_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4331532, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4331536, + "componentType": 5120, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4331540, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_Spoiler_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4331544, + "componentType": 5122, + "count": 138, + "type": "VEC2", + "name": "x2_Spoiler_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4331548, + "componentType": 5123, + "count": 138, + "type": "VEC4", + "name": "x2_Spoiler_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 590880, + "componentType": 5123, + "count": 462, + "type": "SCALAR", + "name": "x2_Spoiler_2_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4336488, + "componentType": 5126, + "count": 961, + "min": [ + -0.6099668741226196, -2.6216650009155273, -0.8714848756790161 + ], + "max": [ + -0.17013315856456757, -0.4158880114555359, 1.704709768295288 + ], + "type": "VEC3", + "name": "x2_Door04_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4336500, + "componentType": 5120, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4336504, + "componentType": 5120, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4336508, + "componentType": 5122, + "count": 961, + "type": "VEC2", + "name": "x2_Door04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4336512, + "componentType": 5122, + "count": 961, + "type": "VEC2", + "name": "x2_Door04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4336516, + "componentType": 5123, + "count": 961, + "type": "VEC4", + "name": "x2_Door04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 591804, + "componentType": 5123, + "count": 2034, + "type": "SCALAR", + "name": "x2_Door04_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4371084, + "componentType": 5126, + "count": 570, + "min": [ + -0.2603238523006439, -0.2851305902004242, -0.5587873458862305 + ], + "max": [ + 0.2621161639690399, 0.14123311638832092, 0.0944860428571701 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_07_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4371096, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4371100, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4371104, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_Landing_Gear_07_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4371108, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_Landing_Gear_07_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4371112, + "componentType": 5123, + "count": 570, + "type": "VEC4", + "name": "x2_Landing_Gear_07_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 595872, + "componentType": 5123, + "count": 1620, + "type": "SCALAR", + "name": "x2_Landing_Gear_07_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4391604, + "componentType": 5126, + "count": 524, + "min": [ + -0.32980838418006897, -0.319169819355011, -0.06002795696258545 + ], + "max": [ + 0.19264759123325348, 0.059393834322690964, 0.5935162901878357 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_08_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4391616, + "componentType": 5120, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4391620, + "componentType": 5120, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4391624, + "componentType": 5122, + "count": 524, + "type": "VEC2", + "name": "x2_Landing_Gear_08_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4391628, + "componentType": 5122, + "count": 524, + "type": "VEC2", + "name": "x2_Landing_Gear_08_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4391632, + "componentType": 5123, + "count": 524, + "type": "VEC4", + "name": "x2_Landing_Gear_08_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 599112, + "componentType": 5123, + "count": 1476, + "type": "SCALAR", + "name": "x2_Landing_Gear_08_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4410468, + "componentType": 5126, + "count": 1039, + "min": [ + -0.03317038714885712, -0.13464602828025818, -0.041370831429958344 + ], + "max": [ + 0.12176554650068283, 0.2825455665588379, 0.6186850666999817 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_37_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4410480, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4410484, + "componentType": 5120, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4410488, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x2_Landing_Gear_37_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4410492, + "componentType": 5122, + "count": 1039, + "type": "VEC2", + "name": "x2_Landing_Gear_37_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4410496, + "componentType": 5123, + "count": 1039, + "type": "VEC4", + "name": "x2_Landing_Gear_37_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 602064, + "componentType": 5123, + "count": 2586, + "type": "SCALAR", + "name": "x2_Landing_Gear_37_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4447872, + "componentType": 5126, + "count": 342, + "min": [ + -0.22795401513576508, -0.05234941840171814, -0.05308832973241806 + ], + "max": [ + 0.22925254702568054, 0.10058332234621048, 0.7607404589653015 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_35_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4447884, + "componentType": 5120, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4447888, + "componentType": 5120, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4447892, + "componentType": 5122, + "count": 342, + "type": "VEC2", + "name": "x2_Landing_Gear_35_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4447896, + "componentType": 5122, + "count": 342, + "type": "VEC2", + "name": "x2_Landing_Gear_35_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4447900, + "componentType": 5123, + "count": 342, + "type": "VEC4", + "name": "x2_Landing_Gear_35_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 607236, + "componentType": 5123, + "count": 900, + "type": "SCALAR", + "name": "x2_Landing_Gear_35_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4460184, + "componentType": 5126, + "count": 326, + "min": [ + -0.22163909673690796, -0.052521947771310806, -0.7035194635391235 + ], + "max": [ + 0.23556631803512573, 0.10107462853193283, 0.05199458450078964 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_36_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4460196, + "componentType": 5120, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4460200, + "componentType": 5120, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4460204, + "componentType": 5122, + "count": 326, + "type": "VEC2", + "name": "x2_Landing_Gear_36_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4460208, + "componentType": 5122, + "count": 326, + "type": "VEC2", + "name": "x2_Landing_Gear_36_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4460212, + "componentType": 5123, + "count": 326, + "type": "VEC4", + "name": "x2_Landing_Gear_36_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 609036, + "componentType": 5123, + "count": 852, + "type": "SCALAR", + "name": "x2_Landing_Gear_36_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4471920, + "componentType": 5126, + "count": 3914, + "min": [ + -1.0002098083496094, -0.6564425826072693, -0.6564598679542542 + ], + "max": [ + 1.0002068281173706, 0.6564430594444275, 0.656457781791687 + ], + "type": "VEC3", + "name": "x2_RWheel_01_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4471932, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_01_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4471936, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_01_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4471940, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_RWheel_01_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4471944, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_RWheel_01_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4471948, + "componentType": 5123, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_01_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 610740, + "componentType": 5123, + "count": 8112, + "type": "SCALAR", + "name": "x2_RWheel_01_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4612824, + "componentType": 5126, + "count": 2460, + "min": [ + -0.9917252063751221, -0.6631564497947693, -0.6619774103164673 + ], + "max": [ + 0.99172043800354, 0.6608477830886841, 0.6620115637779236 + ], + "type": "VEC3", + "name": "x2_RWheel_01_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4612836, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_01_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4612840, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_01_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4612844, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_RWheel_01_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4612848, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_RWheel_01_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4612852, + "componentType": 5123, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_01_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 626964, + "componentType": 5123, + "count": 4536, + "type": "SCALAR", + "name": "x2_RWheel_01_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4701384, + "componentType": 5126, + "count": 3914, + "min": [ + -1.0000648498535156, -0.6553438305854797, -0.6565827131271362 + ], + "max": [ + 0.9999995827674866, 0.6578029990196228, 0.6564501523971558 + ], + "type": "VEC3", + "name": "x2_RWheel_02_still_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4701396, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_02_still_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4701400, + "componentType": 5120, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_02_still_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4701404, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_RWheel_02_still_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4701408, + "componentType": 5122, + "count": 3914, + "type": "VEC2", + "name": "x2_RWheel_02_still_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4701412, + "componentType": 5123, + "count": 3914, + "type": "VEC4", + "name": "x2_RWheel_02_still_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 636036, + "componentType": 5123, + "count": 8112, + "type": "SCALAR", + "name": "x2_RWheel_02_still_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4842288, + "componentType": 5126, + "count": 2460, + "min": [ + -0.9918404221534729, -0.6607991456985474, -0.6619898080825806 + ], + "max": [ + 0.991822361946106, 0.6630999445915222, 0.6619605422019958 + ], + "type": "VEC3", + "name": "x2_RWheel_02_blurred_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4842300, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_02_blurred_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4842304, + "componentType": 5120, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_02_blurred_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4842308, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_RWheel_02_blurred_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4842312, + "componentType": 5122, + "count": 2460, + "type": "VEC2", + "name": "x2_RWheel_02_blurred_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4842316, + "componentType": 5123, + "count": 2460, + "type": "VEC4", + "name": "x2_RWheel_02_blurred_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 652260, + "componentType": 5123, + "count": 4536, + "type": "SCALAR", + "name": "x2_RWheel_02_blurred_indices#0" + }, { + "bufferView": 4, + "byteOffset": 4930848, + "componentType": 5126, + "count": 18394, + "min": [ + -0.4227343797683716, -0.4001636207103729, -1.0559818744659424 + ], + "max": [ + 0.422726035118103, 0.3427121043205261, 1.1179872751235962 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_09_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 4930860, + "componentType": 5120, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 4930864, + "componentType": 5120, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 4930868, + "componentType": 5122, + "count": 18394, + "type": "VEC2", + "name": "x2_Landing_Gear_09_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 4930872, + "componentType": 5122, + "count": 18394, + "type": "VEC2", + "name": "x2_Landing_Gear_09_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 4930876, + "componentType": 5123, + "count": 18394, + "type": "VEC4", + "name": "x2_Landing_Gear_09_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 661332, + "componentType": 5123, + "count": 47241, + "type": "SCALAR", + "name": "x2_Landing_Gear_09_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5593032, + "componentType": 5126, + "count": 1531, + "min": [ + -5.3922247886657715, 2.238292694091797, -0.5708640217781067 + ], + "max": [ + -4.716326713562012, 4.1559648513793945, 0.07562779635190964 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_10_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5593044, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5593048, + "componentType": 5120, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5593052, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x2_Landing_Gear_10_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5593056, + "componentType": 5122, + "count": 1531, + "type": "VEC2", + "name": "x2_Landing_Gear_10_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5593060, + "componentType": 5123, + "count": 1531, + "type": "VEC4", + "name": "x2_Landing_Gear_10_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 755814, + "componentType": 5123, + "count": 4482, + "type": "SCALAR", + "name": "x2_Landing_Gear_10_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5648148, + "componentType": 5126, + "count": 166, + "min": [ + -0.02360830269753933, -0.32227465510368347, -0.07719927281141281 + ], + "max": [ + 0.17926856875419617, 0.017231926321983337, 0.029432132840156555 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_Part19_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5648160, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5648164, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5648168, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Landing_Gear_Part19_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5648172, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Landing_Gear_Part19_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5648176, + "componentType": 5123, + "count": 166, + "type": "VEC4", + "name": "x2_Landing_Gear_Part19_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 764778, + "componentType": 5123, + "count": 492, + "type": "SCALAR", + "name": "x2_Landing_Gear_Part19_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5654124, + "componentType": 5126, + "count": 416, + "min": [ + -0.047637779265642166, -0.07935178279876709, -0.082039475440979 + ], + "max": [ + 0.5345107316970825, 0.078236885368824, 0.23620375990867615 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_21_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5654136, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5654140, + "componentType": 5120, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5654144, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x2_Landing_Gear_21_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5654148, + "componentType": 5122, + "count": 416, + "type": "VEC2", + "name": "x2_Landing_Gear_21_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5654152, + "componentType": 5123, + "count": 416, + "type": "VEC4", + "name": "x2_Landing_Gear_21_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 765762, + "componentType": 5123, + "count": 1032, + "type": "SCALAR", + "name": "x2_Landing_Gear_21_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5669100, + "componentType": 5126, + "count": 207, + "min": [ + -0.04275953769683838, -0.0035616308450698853, -0.0683508887887001 + ], + "max": [ + 0.04170529544353485, 0.09879262745380402, 0.06632451713085175 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_Part17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5669112, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5669116, + "componentType": 5120, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5669120, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x2_Landing_Gear_Part17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5669124, + "componentType": 5122, + "count": 207, + "type": "VEC2", + "name": "x2_Landing_Gear_Part17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5669128, + "componentType": 5123, + "count": 207, + "type": "VEC4", + "name": "x2_Landing_Gear_Part17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 767826, + "componentType": 5123, + "count": 576, + "type": "SCALAR", + "name": "x2_Landing_Gear_Part17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5676552, + "componentType": 5126, + "count": 282, + "min": [ + -0.06948615610599518, -0.06069531664252281, -0.04596950113773346 + ], + "max": [ + 0.4482225477695465, 0.08176174759864807, 0.18855108320713043 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_17_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5676564, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5676568, + "componentType": 5120, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5676572, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x2_Landing_Gear_17_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5676576, + "componentType": 5122, + "count": 282, + "type": "VEC2", + "name": "x2_Landing_Gear_17_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5676580, + "componentType": 5123, + "count": 282, + "type": "VEC4", + "name": "x2_Landing_Gear_17_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 768978, + "componentType": 5123, + "count": 828, + "type": "SCALAR", + "name": "x2_Landing_Gear_17_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5686704, + "componentType": 5126, + "count": 586, + "min": [ + -0.0757787749171257, -0.6550443768501282, -0.09005343168973923 + ], + "max": [ + 0.7149445414543152, 0.05701325088739395, 0.31519898772239685 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_31_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5686716, + "componentType": 5120, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5686720, + "componentType": 5120, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5686724, + "componentType": 5122, + "count": 586, + "type": "VEC2", + "name": "x2_Landing_Gear_31_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5686728, + "componentType": 5122, + "count": 586, + "type": "VEC2", + "name": "x2_Landing_Gear_31_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5686732, + "componentType": 5123, + "count": 586, + "type": "VEC4", + "name": "x2_Landing_Gear_31_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 770634, + "componentType": 5123, + "count": 1740, + "type": "SCALAR", + "name": "x2_Landing_Gear_31_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5707800, + "componentType": 5126, + "count": 405, + "min": [ + -0.06946486234664917, -0.2049291878938675, -0.07221690565347672 + ], + "max": [ + 0.19305025041103363, 0.00007717655535088852, 0.15680573880672455 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_33_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5707812, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5707816, + "componentType": 5120, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5707820, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x2_Landing_Gear_33_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5707824, + "componentType": 5122, + "count": 405, + "type": "VEC2", + "name": "x2_Landing_Gear_33_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5707828, + "componentType": 5123, + "count": 405, + "type": "VEC4", + "name": "x2_Landing_Gear_33_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 774114, + "componentType": 5123, + "count": 1170, + "type": "SCALAR", + "name": "x2_Landing_Gear_33_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5722380, + "componentType": 5126, + "count": 266, + "min": [ + -0.08383375406265259, -0.04136258736252785, -0.08959886431694031 + ], + "max": [ + 0.07572783529758453, 0.48792192339897156, 0.06174074858427048 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_28_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5722392, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5722396, + "componentType": 5120, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5722400, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x2_Landing_Gear_28_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5722404, + "componentType": 5122, + "count": 266, + "type": "VEC2", + "name": "x2_Landing_Gear_28_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5722408, + "componentType": 5123, + "count": 266, + "type": "VEC4", + "name": "x2_Landing_Gear_28_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 776454, + "componentType": 5123, + "count": 780, + "type": "SCALAR", + "name": "x2_Landing_Gear_28_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5731956, + "componentType": 5126, + "count": 494, + "min": [ + -0.2505377531051636, -0.4637402594089508, -0.11836928874254227 + ], + "max": [ + 0.24867111444473267, 0.47871261835098267, 0.12202662974596024 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_27_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5731968, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5731972, + "componentType": 5120, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5731976, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x2_Landing_Gear_27_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5731980, + "componentType": 5122, + "count": 494, + "type": "VEC2", + "name": "x2_Landing_Gear_27_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5731984, + "componentType": 5123, + "count": 494, + "type": "VEC4", + "name": "x2_Landing_Gear_27_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 778014, + "componentType": 5123, + "count": 1428, + "type": "SCALAR", + "name": "x2_Landing_Gear_27_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5749740, + "componentType": 5126, + "count": 809, + "min": [ + -0.09419665485620499, -0.7866555452346802, -0.8971512317657471 + ], + "max": [ + 0.8547667860984802, 0.09623168408870697, 0.13693545758724213 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_30_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5749752, + "componentType": 5120, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5749756, + "componentType": 5120, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5749760, + "componentType": 5122, + "count": 809, + "type": "VEC2", + "name": "x2_Landing_Gear_30_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5749764, + "componentType": 5122, + "count": 809, + "type": "VEC2", + "name": "x2_Landing_Gear_30_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5749768, + "componentType": 5123, + "count": 809, + "type": "VEC4", + "name": "x2_Landing_Gear_30_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 780870, + "componentType": 5123, + "count": 2250, + "type": "SCALAR", + "name": "x2_Landing_Gear_30_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5778864, + "componentType": 5126, + "count": 381, + "min": [ + -0.09247416257858276, -0.6054469347000122, -0.7013220191001892 + ], + "max": [ + 0.6500998139381409, 0.08501777052879333, 0.09811940789222717 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_32_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5778876, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5778880, + "componentType": 5120, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5778884, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x2_Landing_Gear_32_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5778888, + "componentType": 5122, + "count": 381, + "type": "VEC2", + "name": "x2_Landing_Gear_32_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5778892, + "componentType": 5123, + "count": 381, + "type": "VEC4", + "name": "x2_Landing_Gear_32_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 785370, + "componentType": 5123, + "count": 1092, + "type": "SCALAR", + "name": "x2_Landing_Gear_32_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5792580, + "componentType": 5126, + "count": 402, + "min": [ + -0.07412482053041458, -0.18855290114879608, -0.21611511707305908 + ], + "max": [ + 0.1838916391134262, 0.03681214526295662, 0.074981689453125 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_34_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5792592, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5792596, + "componentType": 5120, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5792600, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Landing_Gear_34_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5792604, + "componentType": 5122, + "count": 402, + "type": "VEC2", + "name": "x2_Landing_Gear_34_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5792608, + "componentType": 5123, + "count": 402, + "type": "VEC4", + "name": "x2_Landing_Gear_34_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 787554, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x2_Landing_Gear_34_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5807052, + "componentType": 5126, + "count": 4135, + "min": [ + -0.33795133233070374, -2.802922487258911, -0.18288905918598175 + ], + "max": [ + 0.3940480053424835, 0.19436147809028625, 1.4807264804840088 + ], + "type": "VEC3", + "name": "x2_Landing_gear_Root_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5807064, + "componentType": 5120, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5807068, + "componentType": 5120, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5807072, + "componentType": 5122, + "count": 4135, + "type": "VEC2", + "name": "x2_Landing_gear_Root_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5807076, + "componentType": 5122, + "count": 4135, + "type": "VEC2", + "name": "x2_Landing_gear_Root_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5807080, + "componentType": 5123, + "count": 4135, + "type": "VEC4", + "name": "x2_Landing_gear_Root_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 789882, + "componentType": 5123, + "count": 11313, + "type": "SCALAR", + "name": "x2_Landing_gear_Root_right_indices#1" + }, { + "bufferView": 4, + "byteOffset": 5955912, + "componentType": 5126, + "count": 115, + "min": [ + -0.03913608938455582, -0.040391772985458374, -0.0042427778244018555 + ], + "max": [ + 0.45004627108573914, 1.0874072313308716, 0.044423818588256836 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5955924, + "componentType": 5120, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5955928, + "componentType": 5120, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5955932, + "componentType": 5122, + "count": 115, + "type": "VEC2", + "name": "x2_Landing_Gear_01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5955936, + "componentType": 5122, + "count": 115, + "type": "VEC2", + "name": "x2_Landing_Gear_01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5955940, + "componentType": 5123, + "count": 115, + "type": "VEC4", + "name": "x2_Landing_Gear_01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 812508, + "componentType": 5123, + "count": 360, + "type": "SCALAR", + "name": "x2_Landing_Gear_01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5960052, + "componentType": 5126, + "count": 826, + "min": [ + -2.120542049407959, -0.26211634278297424, -1.8943557739257812 + ], + "max": [ + 0.2745405435562134, 0.7965261936187744, 1.6294655799865723 + ], + "type": "VEC3", + "name": "x2_Door01_right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5960064, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5960068, + "componentType": 5120, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5960072, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x2_Door01_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5960076, + "componentType": 5122, + "count": 826, + "type": "VEC2", + "name": "x2_Door01_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5960080, + "componentType": 5123, + "count": 826, + "type": "VEC4", + "name": "x2_Door01_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 813228, + "componentType": 5123, + "count": 1806, + "type": "SCALAR", + "name": "x2_Door01_right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 5989788, + "componentType": 5126, + "count": 1974, + "min": [ + -0.7900745868682861, -0.30259478092193604, -0.3225712478160858 + ], + "max": [ + 0.7900731563568115, 1.7006288766860962, 3.0486252307891846 + ], + "type": "VEC3", + "name": "x2_Undercarriage_Front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 5989800, + "componentType": 5120, + "count": 1974, + "type": "VEC4", + "name": "x2_Undercarriage_Front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 5989804, + "componentType": 5120, + "count": 1974, + "type": "VEC4", + "name": "x2_Undercarriage_Front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 5989808, + "componentType": 5122, + "count": 1974, + "type": "VEC2", + "name": "x2_Undercarriage_Front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 5989812, + "componentType": 5122, + "count": 1974, + "type": "VEC2", + "name": "x2_Undercarriage_Front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 5989816, + "componentType": 5123, + "count": 1974, + "type": "VEC4", + "name": "x2_Undercarriage_Front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 816840, + "componentType": 5123, + "count": 3258, + "type": "SCALAR", + "name": "x2_Undercarriage_Front_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6060852, + "componentType": 5126, + "count": 2662, + "min": [ + -2.821240186691284, 1.1378698348999023, -26.904094696044922 + ], + "max": [ + 2.821239709854126, 1.78813636302948, 22.001354217529297 + ], + "type": "VEC3", + "name": "x2_windowGlass_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6060864, + "componentType": 5120, + "count": 2662, + "type": "VEC4", + "name": "x2_windowGlass_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6060868, + "componentType": 5120, + "count": 2662, + "type": "VEC4", + "name": "x2_windowGlass_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6060872, + "componentType": 5122, + "count": 2662, + "type": "VEC2", + "name": "x2_windowGlass_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6060876, + "componentType": 5122, + "count": 2662, + "type": "VEC2", + "name": "x2_windowGlass_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6060880, + "componentType": 5123, + "count": 2662, + "type": "VEC4", + "name": "x2_windowGlass_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 823356, + "componentType": 5123, + "count": 7950, + "type": "SCALAR", + "name": "x2_windowGlass_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 6156684, + "componentType": 5126, + "count": 35120, + "min": [ + -3.255725860595703, -2.764528751373291, -39.45466613769531 + ], + "max": [ + 3.255725860595703, 12.46463394165039, 28.476634979248047 + ], + "type": "VEC3", + "name": "x2_Body_front_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 6156696, + "componentType": 5120, + "count": 35120, + "type": "VEC4", + "name": "x2_Body_front_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 6156700, + "componentType": 5120, + "count": 35120, + "type": "VEC4", + "name": "x2_Body_front_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 6156704, + "componentType": 5122, + "count": 35120, + "type": "VEC2", + "name": "x2_Body_front_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 6156708, + "componentType": 5122, + "count": 35120, + "type": "VEC2", + "name": "x2_Body_front_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 6156712, + "componentType": 5123, + "count": 35120, + "type": "VEC4", + "name": "x2_Body_front_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 839256, + "componentType": 5123, + "count": 104124, + "type": "SCALAR", + "name": "x2_Body_front_center_indices#6" + }, { + "bufferView": 4, + "byteOffset": 7421004, + "componentType": 5126, + "count": 1094, + "min": [ + 20.769201278686523, -546.4342651367188, -284.7441711425781 + ], + "max": [ + 264.7677307128906, 558.10791015625, 352.2733459472656 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7421016, + "componentType": 5120, + "count": 1094, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7421020, + "componentType": 5120, + "count": 1094, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7421024, + "componentType": 5122, + "count": 1094, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7421028, + "componentType": 5122, + "count": 1094, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7421032, + "componentType": 5123, + "count": 1094, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1047504, + "componentType": 5123, + "count": 4146, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_2_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7460388, + "componentType": 5126, + "count": 634, + "min": [ + -0.2635972499847412, -1.0020675659179688, -0.5850601196289062 + ], + "max": [ + 0.2920658588409424, 0.995248556137085, 0.5904827117919922 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7460400, + "componentType": 5120, + "count": 634, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7460404, + "componentType": 5120, + "count": 634, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7460408, + "componentType": 5122, + "count": 634, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7460412, + "componentType": 5122, + "count": 634, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7460416, + "componentType": 5123, + "count": 634, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1055796, + "componentType": 5123, + "count": 1578, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_2_OUTSIDE_indices#5" + }, { + "bufferView": 4, + "byteOffset": 7483212, + "componentType": 5126, + "count": 4, + "min": [ + -0.06730365753173828, -0.25341153144836426, -0.12473678588867188 + ], + "max": [ + 0.06730318069458008, 0.25341153144836426, 0.12474441528320312 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7483224, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7483228, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7483232, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7483236, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7483240, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1058952, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_2_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7483356, + "componentType": 5126, + "count": 515, + "min": [ + -0.2689533233642578, -0.9986552596092224, -0.5877723693847656 + ], + "max": [ + 0.2689530849456787, 0.9986556768417358, 0.5877704620361328 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7483368, + "componentType": 5120, + "count": 515, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7483372, + "componentType": 5120, + "count": 515, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7483376, + "componentType": 5122, + "count": 515, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7483380, + "componentType": 5122, + "count": 515, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7483384, + "componentType": 5123, + "count": 515, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1058964, + "componentType": 5123, + "count": 1164, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7501896, + "componentType": 5126, + "count": 311, + "min": [ + -14.75634765625, -108.09103393554688, -110.657470703125 + ], + "max": [ + 220.56134033203125, 105.70939636230469, 97.27890014648438 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7501908, + "componentType": 5120, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7501912, + "componentType": 5120, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7501916, + "componentType": 5122, + "count": 311, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7501920, + "componentType": 5122, + "count": 311, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7501924, + "componentType": 5123, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_2_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1061292, + "componentType": 5123, + "count": 849, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_2_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7513092, + "componentType": 5126, + "count": 7185, + "min": [ + -1.9094319343566895, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.222184658050537, 2.7935128211975098, 4.094302654266357 + ], + "type": "VEC3", + "name": "x2_INTERIOR2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7513104, + "componentType": 5120, + "count": 7185, + "type": "VEC4", + "name": "x2_INTERIOR2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7513108, + "componentType": 5120, + "count": 7185, + "type": "VEC4", + "name": "x2_INTERIOR2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7513112, + "componentType": 5122, + "count": 7185, + "type": "VEC2", + "name": "x2_INTERIOR2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7513116, + "componentType": 5122, + "count": 7185, + "type": "VEC2", + "name": "x2_INTERIOR2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7513120, + "componentType": 5123, + "count": 7185, + "type": "VEC4", + "name": "x2_INTERIOR2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1062990, + "componentType": 5123, + "count": 20586, + "type": "SCALAR", + "name": "x2_INTERIOR2_indices#1" + }, { + "bufferView": 4, + "byteOffset": 7771752, + "componentType": 5126, + "count": 3684, + "min": [ + -1.2718836069107056, -0.14246384799480438, -1.0497738122940063 + ], + "max": [ + -0.020523952320218086, 0.969785749912262, 1.0876803398132324 + ], + "type": "VEC3", + "name": "x2_CARGO_DOOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7771764, + "componentType": 5120, + "count": 3684, + "type": "VEC4", + "name": "x2_CARGO_DOOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7771768, + "componentType": 5120, + "count": 3684, + "type": "VEC4", + "name": "x2_CARGO_DOOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7771772, + "componentType": 5122, + "count": 3684, + "type": "VEC2", + "name": "x2_CARGO_DOOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7771776, + "componentType": 5122, + "count": 3684, + "type": "VEC2", + "name": "x2_CARGO_DOOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7771780, + "componentType": 5123, + "count": 3684, + "type": "VEC4", + "name": "x2_CARGO_DOOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1104162, + "componentType": 5123, + "count": 10611, + "type": "SCALAR", + "name": "x2_CARGO_DOOR_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7904376, + "componentType": 5126, + "count": 787, + "min": [ + -2.804260730743408, -1.6293405294418335, 16.014720916748047 + ], + "max": [ + -1.7330682277679443, 0.1519838571548462, 18.839290618896484 + ], + "type": "VEC3", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7904388, + "componentType": 5120, + "count": 787, + "type": "VEC4", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7904392, + "componentType": 5120, + "count": 787, + "type": "VEC4", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7904396, + "componentType": 5122, + "count": 787, + "type": "VEC2", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7904400, + "componentType": 5122, + "count": 787, + "type": "VEC2", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7904404, + "componentType": 5123, + "count": 787, + "type": "VEC4", + "name": "x2_CARGO_DOOR_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1125384, + "componentType": 5123, + "count": 1461, + "type": "SCALAR", + "name": "x2_CARGO_DOOR_OUTSIDE_indices#1" + }, { + "bufferView": 4, + "byteOffset": 7932708, + "componentType": 5126, + "count": 40, + "min": [ + -0.41249793767929077, -0.008579938672482967, -0.5145538449287415 + ], + "max": [ + -0.09042167663574219, 0.008579599671065807, 0.009906592778861523 + ], + "type": "VEC3", + "name": "x2_CARGO_PISTON_2_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7932720, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x2_CARGO_PISTON_2_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7932724, + "componentType": 5120, + "count": 40, + "type": "VEC4", + "name": "x2_CARGO_PISTON_2_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7932728, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x2_CARGO_PISTON_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7932732, + "componentType": 5122, + "count": 40, + "type": "VEC2", + "name": "x2_CARGO_PISTON_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7932736, + "componentType": 5123, + "count": 40, + "type": "VEC4", + "name": "x2_CARGO_PISTON_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1128306, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x2_CARGO_PISTON_2_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7934148, + "componentType": 5126, + "count": 394, + "min": [ + -0.07517385482788086, -0.2227616310119629, -1.4064998626708984 + ], + "max": [ + 0.07517385482788086, 0.2227616310119629, 1.4065017700195312 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_Cargo_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7934160, + "componentType": 5120, + "count": 394, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7934164, + "componentType": 5120, + "count": 394, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7934168, + "componentType": 5122, + "count": 394, + "type": "VEC2", + "name": "x0_Livery_KLM_Cargo_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7934172, + "componentType": 5122, + "count": 394, + "type": "VEC2", + "name": "x0_Livery_KLM_Cargo_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7934176, + "componentType": 5123, + "count": 394, + "type": "VEC4", + "name": "x0_Livery_KLM_Cargo_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1128450, + "componentType": 5123, + "count": 951, + "type": "SCALAR", + "name": "x0_Livery_KLM_Cargo_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7948332, + "componentType": 5126, + "count": 232, + "min": [ + -0.4534035921096802, -0.04287149757146835, -0.6643233299255371 + ], + "max": [ + 0.04951593279838562, 0.042871467769145966, 0.1568007469177246 + ], + "type": "VEC3", + "name": "x2_CARGO_PISTON_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7948344, + "componentType": 5120, + "count": 232, + "type": "VEC4", + "name": "x2_CARGO_PISTON_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7948348, + "componentType": 5120, + "count": 232, + "type": "VEC4", + "name": "x2_CARGO_PISTON_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7948352, + "componentType": 5122, + "count": 232, + "type": "VEC2", + "name": "x2_CARGO_PISTON_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7948356, + "componentType": 5122, + "count": 232, + "type": "VEC2", + "name": "x2_CARGO_PISTON_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7948360, + "componentType": 5123, + "count": 232, + "type": "VEC4", + "name": "x2_CARGO_PISTON_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1130352, + "componentType": 5123, + "count": 432, + "type": "SCALAR", + "name": "x2_CARGO_PISTON_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7956684, + "componentType": 5126, + "count": 1083, + "min": [ + -0.2068568468093872, -0.9027069807052612, -0.4470391273498535 + ], + "max": [ + 0.516179084777832, 0.9267082214355469, 0.5946054458618164 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7956696, + "componentType": 5120, + "count": 1083, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7956700, + "componentType": 5120, + "count": 1083, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7956704, + "componentType": 5122, + "count": 1083, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7956708, + "componentType": 5122, + "count": 1083, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7956712, + "componentType": 5123, + "count": 1083, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1131216, + "componentType": 5123, + "count": 4104, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_1_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7995672, + "componentType": 5126, + "count": 4, + "min": [ + -0.08108523488044739, -0.25504860281944275, -0.11194915324449539 + ], + "max": [ + 0.08108523488044739, 0.25504860281944275, 0.11194915324449539 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7995684, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7995688, + "componentType": 5120, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7995692, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7995696, + "componentType": 5122, + "count": 4, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7995700, + "componentType": 5123, + "count": 4, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1139424, + "componentType": 5123, + "count": 6, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_1_PORTHOLE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 7995816, + "componentType": 5126, + "count": 570, + "min": [ + -0.42726200819015503, -0.9855458736419678, -0.6262664198875427 + ], + "max": [ + 0.3890361189842224, 0.9744555354118347, 0.6192359328269958 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 7995828, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 7995832, + "componentType": 5120, + "count": 570, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 7995836, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 7995840, + "componentType": 5122, + "count": 570, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 7995844, + "componentType": 5123, + "count": 570, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1139436, + "componentType": 5123, + "count": 1554, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_1_OUTSIDE_indices#4" + }, { + "bufferView": 4, + "byteOffset": 8016336, + "componentType": 5126, + "count": 380, + "min": [ + -0.4061325490474701, -0.9798181056976318, -0.6227510571479797 + ], + "max": [ + 0.406132310628891, 0.9798181653022766, 0.6227510571479797 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8016348, + "componentType": 5120, + "count": 380, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8016352, + "componentType": 5120, + "count": 380, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8016356, + "componentType": 5122, + "count": 380, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8016360, + "componentType": 5122, + "count": 380, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8016364, + "componentType": 5123, + "count": 380, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1142544, + "componentType": 5123, + "count": 948, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorA_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8030016, + "componentType": 5126, + "count": 311, + "min": [ + -14.75634765625, -108.09103393554688, -110.657470703125 + ], + "max": [ + 220.56134033203125, 105.70939636230469, 97.27890014648438 + ], + "type": "VEC3", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8030028, + "componentType": 5120, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8030032, + "componentType": 5120, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8030036, + "componentType": 5122, + "count": 311, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8030040, + "componentType": 5122, + "count": 311, + "type": "VEC2", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8030044, + "componentType": 5123, + "count": 311, + "type": "VEC4", + "name": "x2_PASSENGER_DOOR_1_PIVOT_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1144440, + "componentType": 5123, + "count": 849, + "type": "SCALAR", + "name": "x2_PASSENGER_DOOR_1_PIVOT_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8041212, + "componentType": 5126, + "count": 8257, + "min": [ + -2.0217103958129883, 0.6013185977935791, 1.8379120826721191 + ], + "max": [ + 3.275524377822876, 2.7935128211975098, 4.094302177429199 + ], + "type": "VEC3", + "name": "x2_INTERIOR1_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8041224, + "componentType": 5120, + "count": 8257, + "type": "VEC4", + "name": "x2_INTERIOR1_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8041228, + "componentType": 5120, + "count": 8257, + "type": "VEC4", + "name": "x2_INTERIOR1_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8041232, + "componentType": 5122, + "count": 8257, + "type": "VEC2", + "name": "x2_INTERIOR1_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8041236, + "componentType": 5122, + "count": 8257, + "type": "VEC2", + "name": "x2_INTERIOR1_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8041240, + "componentType": 5123, + "count": 8257, + "type": "VEC4", + "name": "x2_INTERIOR1_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1146138, + "componentType": 5123, + "count": 24609, + "type": "SCALAR", + "name": "x2_INTERIOR1_indices#1" + }, { + "bufferView": 4, + "byteOffset": 8338464, + "componentType": 5126, + "count": 244, + "min": [ + -0.052213918417692184, -0.10866785049438477, -0.10006412118673325 + ], + "max": [ + 0.052213896065950394, -0.016576290130615234, 0.059315815567970276 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8338476, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8338480, + "componentType": 5120, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8338484, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8338488, + "componentType": 5122, + "count": 244, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8338492, + "componentType": 5123, + "count": 244, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1195356, + "componentType": 5123, + "count": 450, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Top_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8347248, + "componentType": 5126, + "count": 229, + "min": [ + -0.008507311344146729, -0.04374814033508301, -0.027210235595703125 + ], + "max": [ + 0.03227478265762329, 0.04374802112579346, 0.004940032958984375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8347260, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8347264, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8347268, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8347272, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8347276, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1196256, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8355492, + "componentType": 5126, + "count": 229, + "min": [ + -0.02412658929824829, -0.04374802112579346, -0.025226593017578125 + ], + "max": [ + 0.01665550470352173, 0.04374814033508301, 0.006923675537109375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8355504, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8355508, + "componentType": 5120, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8355512, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8355516, + "componentType": 5122, + "count": 229, + "type": "VEC2", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8355520, + "componentType": 5123, + "count": 229, + "type": "VEC4", + "name": "LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1197720, + "componentType": 5123, + "count": 732, + "type": "SCALAR", + "name": "LIGHT_ASOBO_StrobeTail_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8363736, + "componentType": 5126, + "count": 30, + "min": [ + -0.08172552287578583, 0.017889738082885742, -0.08321332931518555 + ], + "max": [ + 0.08172552287578583, 0.08187198638916016, 0.08321332931518555 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8363748, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8363752, + "componentType": 5120, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8363756, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8363760, + "componentType": 5122, + "count": 30, + "type": "VEC2", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8363764, + "componentType": 5123, + "count": 30, + "type": "VEC4", + "name": "LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1199184, + "componentType": 5123, + "count": 84, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Beacon_Belly_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8364816, + "componentType": 5126, + "count": 680, + "min": [ + -0.07676506042480469, -0.11109365522861481, -0.025456905364990234 + ], + "max": [ + 0.06343841552734375, 0.11109364032745361, 0.07862234115600586 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8364828, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8364832, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8364836, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8364840, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8364844, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1199352, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8389296, + "componentType": 5126, + "count": 680, + "min": [ + -0.06620979309082031, -0.11109365522861481, -0.039273738861083984 + ], + "max": [ + 0.07399368286132812, 0.11109364777803421, 0.06480550765991211 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8389308, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8389312, + "componentType": 5120, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8389316, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8389320, + "componentType": 5122, + "count": 680, + "type": "VEC2", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8389324, + "componentType": 5123, + "count": 680, + "type": "VEC4", + "name": "LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1201800, + "componentType": 5123, + "count": 1224, + "type": "SCALAR", + "name": "LIGHT_ASOBO_LandingWing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8413776, + "componentType": 5126, + "count": 536, + "min": [ + -5.37684440612793, -0.25504857301712036, -48.81943130493164 + ], + "max": [ + 0.23528826236724854, 0.4213467836380005, 0.11194980144500732 + ], + "type": "VEC3", + "name": "x2_Porthole_Blocker_center_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8413788, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x2_Porthole_Blocker_center_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8413792, + "componentType": 5120, + "count": 536, + "type": "VEC4", + "name": "x2_Porthole_Blocker_center_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8413796, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x2_Porthole_Blocker_center_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8413800, + "componentType": 5122, + "count": 536, + "type": "VEC2", + "name": "x2_Porthole_Blocker_center_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8413804, + "componentType": 5123, + "count": 536, + "type": "VEC4", + "name": "x2_Porthole_Blocker_center_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1204248, + "componentType": 5123, + "count": 804, + "type": "SCALAR", + "name": "x2_Porthole_Blocker_center_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8433072, + "componentType": 5126, + "count": 340, + "min": [ + -0.01639246940612793, -0.06915506720542908, -0.05549764633178711 + ], + "max": [ + 0.05934309959411621, 0.05938568711280823, 0.0732574462890625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8433084, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8433088, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8433092, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8433096, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8433100, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1205856, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8445312, + "componentType": 5126, + "count": 340, + "min": [ + -0.06169295310974121, -0.06915506720542908, -0.05634450912475586 + ], + "max": [ + 0.01404261589050293, 0.059385694563388824, 0.07241058349609375 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8445324, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8445328, + "componentType": 5120, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8445332, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8445336, + "componentType": 5122, + "count": 340, + "type": "VEC2", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8445340, + "componentType": 5123, + "count": 340, + "type": "VEC4", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1207080, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "LIGHT_ASOBO_RunwayTurnOff_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8457552, + "componentType": 5126, + "count": 135, + "min": [ + -0.4384760856628418, -0.05299597978591919, -3.7419772148132324 + ], + "max": [ + 0.0001952648162841797, 0.052995964884757996, 0.0551910400390625 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8457564, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8457568, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8457572, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8457576, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8457580, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1208304, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Right_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8462412, + "componentType": 5126, + "count": 135, + "min": [ + 0.0012729167938232422, -0.05299597978591919, -1.9658722877502441 + ], + "max": [ + 0.29711246490478516, 0.052995964884757996, 0.055190086364746094 + ], + "type": "VEC3", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8462424, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8462428, + "componentType": 5120, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8462432, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8462436, + "componentType": 5122, + "count": 135, + "type": "VEC2", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8462440, + "componentType": 5123, + "count": 135, + "type": "VEC4", + "name": "LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1209354, + "componentType": 5123, + "count": 525, + "type": "SCALAR", + "name": "LIGHT_ASOBO_Wing_Left_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8467272, + "componentType": 5126, + "count": 2348, + "min": [ + -0.7071259617805481, -0.6450793743133545, -5.709773063659668 + ], + "max": [ + 3.2146384716033936, 0.8630454540252686, 1.4669808149337769 + ], + "type": "VEC3", + "name": "x2_CARGO_INTERIOR_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8467284, + "componentType": 5120, + "count": 2348, + "type": "VEC4", + "name": "x2_CARGO_INTERIOR_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8467288, + "componentType": 5120, + "count": 2348, + "type": "VEC4", + "name": "x2_CARGO_INTERIOR_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8467292, + "componentType": 5122, + "count": 2348, + "type": "VEC2", + "name": "x2_CARGO_INTERIOR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8467296, + "componentType": 5122, + "count": 2348, + "type": "VEC2", + "name": "x2_CARGO_INTERIOR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8467300, + "componentType": 5123, + "count": 2348, + "type": "VEC4", + "name": "x2_CARGO_INTERIOR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1210404, + "componentType": 5123, + "count": 8292, + "type": "SCALAR", + "name": "x2_CARGO_INTERIOR_indices#1" + }, { + "bufferView": 4, + "byteOffset": 8551800, + "componentType": 5126, + "count": 6665, + "min": [ + -3.222182273864746, -2.5606632232666016, -37.96046447753906 + ], + "max": [ + 3.222182273864746, 12.329360008239746, 28.496612548828125 + ], + "type": "VEC3", + "name": "FROST_FUSELAGE_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8551812, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8551816, + "componentType": 5120, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8551820, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8551824, + "componentType": 5122, + "count": 6665, + "type": "VEC2", + "name": "FROST_FUSELAGE_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8551828, + "componentType": 5123, + "count": 6665, + "type": "VEC4", + "name": "FROST_FUSELAGE_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1226988, + "componentType": 5123, + "count": 16674, + "type": "SCALAR", + "name": "FROST_FUSELAGE_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8791740, + "componentType": 5126, + "count": 89, + "min": [ + -0.8693204522132874, -0.580319881439209, -0.16406798362731934 + ], + "max": [ + 0.04584038257598877, 2.2225449085235596, 3.8975183963775635 + ], + "type": "VEC3", + "name": "x2_GROUND_GPUPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8791752, + "componentType": 5120, + "count": 89, + "type": "VEC4", + "name": "x2_GROUND_GPUPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8791756, + "componentType": 5120, + "count": 89, + "type": "VEC4", + "name": "x2_GROUND_GPUPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8791760, + "componentType": 5122, + "count": 89, + "type": "VEC2", + "name": "x2_GROUND_GPUPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8791764, + "componentType": 5122, + "count": 89, + "type": "VEC2", + "name": "x2_GROUND_GPUPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8791768, + "componentType": 5123, + "count": 89, + "type": "VEC4", + "name": "x2_GROUND_GPUPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1260336, + "componentType": 5123, + "count": 219, + "type": "SCALAR", + "name": "x2_GROUND_GPUPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8794944, + "componentType": 5126, + "count": 116, + "min": [ + 10.277151107788086, -3.656996726989746, -1.9222218990325928 + ], + "max": [ + 16.683135986328125, 1.310456395149231, 0.028977783396840096 + ], + "type": "VEC3", + "name": "x2_GROUND_FuelPipe_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8794956, + "componentType": 5120, + "count": 116, + "type": "VEC4", + "name": "x2_GROUND_FuelPipe_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8794960, + "componentType": 5120, + "count": 116, + "type": "VEC4", + "name": "x2_GROUND_FuelPipe_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8794964, + "componentType": 5122, + "count": 116, + "type": "VEC2", + "name": "x2_GROUND_FuelPipe_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8794968, + "componentType": 5122, + "count": 116, + "type": "VEC2", + "name": "x2_GROUND_FuelPipe_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8794972, + "componentType": 5123, + "count": 116, + "type": "VEC4", + "name": "x2_GROUND_FuelPipe_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1260774, + "componentType": 5123, + "count": 486, + "type": "SCALAR", + "name": "x2_GROUND_FuelPipe_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8799120, + "componentType": 5126, + "count": 162, + "min": [ + -1.63723886013031, 1.1248418092727661, 25.029531478881836 + ], + "max": [ + 1.63723886013031, 1.8481528759002686, 27.02076530456543 + ], + "type": "VEC3", + "name": "x2_WINDSHIELD_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8799132, + "componentType": 5120, + "count": 162, + "type": "VEC4", + "name": "x2_WINDSHIELD_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8799136, + "componentType": 5120, + "count": 162, + "type": "VEC4", + "name": "x2_WINDSHIELD_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8799140, + "componentType": 5122, + "count": 162, + "type": "VEC2", + "name": "x2_WINDSHIELD_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8799144, + "componentType": 5122, + "count": 162, + "type": "VEC2", + "name": "x2_WINDSHIELD_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8799148, + "componentType": 5123, + "count": 162, + "type": "VEC4", + "name": "x2_WINDSHIELD_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1261746, + "componentType": 5123, + "count": 612, + "type": "SCALAR", + "name": "x2_WINDSHIELD_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8804952, + "componentType": 5126, + "count": 18, + "min": [ + -2.667531967163086, -0.20421838760375977, -0.8157100677490234 + ], + "max": [ + 2.667531967163086, 0.20421838760375977, 0.8157100677490234 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_RegNumber_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8804964, + "componentType": 5120, + "count": 18, + "type": "VEC4", + "name": "x2_Livery_KLM_RegNumber_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8804968, + "componentType": 5120, + "count": 18, + "type": "VEC4", + "name": "x2_Livery_KLM_RegNumber_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8804972, + "componentType": 5122, + "count": 18, + "type": "VEC2", + "name": "x2_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8804976, + "componentType": 5122, + "count": 18, + "type": "VEC2", + "name": "x2_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8804980, + "componentType": 5123, + "count": 18, + "type": "VEC4", + "name": "x2_Livery_KLM_RegNumber_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1262970, + "componentType": 5123, + "count": 48, + "type": "SCALAR", + "name": "x2_Livery_KLM_RegNumber_indices#0" + }, { + "bufferView": 4, + "byteOffset": 8805600, + "componentType": 5126, + "count": 7478, + "min": [ + -2.8717989921569824, -3.3233344554901123, -30.958940505981445 + ], + "max": [ + 2.8717989921569824, 3.3233346939086914, 30.958940505981445 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageB_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 8805612, + "componentType": 5120, + "count": 7478, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 8805616, + "componentType": 5120, + "count": 7478, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 8805620, + "componentType": 5122, + "count": 7478, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 8805624, + "componentType": 5122, + "count": 7478, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 8805628, + "componentType": 5123, + "count": 7478, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageB_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1263066, + "componentType": 5123, + "count": 23250, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageB_indices#0" + }, { + "bufferView": 4, + "byteOffset": 9074808, + "componentType": 5126, + "count": 15507, + "min": [ + -3.0187995433807373, -4.274344444274902, -32.947532653808594 + ], + "max": [ + 3.019928216934204, 4.495274543762207, 32.94788360595703 + ], + "type": "VEC3", + "name": "x2_Livery_KLM_FuselageA_vertices#0_POSITION" + }, { + "bufferView": 4, + "byteOffset": 9074820, + "componentType": 5120, + "count": 15507, + "type": "VEC4", + "name": "x2_Livery_KLM_FuselageA_vertices#0_TANGENT" + }, { + "bufferView": 4, + "byteOffset": 9074824, + "componentType": 5120, + "count": 15507, + "type": "VEC4", + "name": "x2_Livery_KLM_FuselageA_vertices#0_NORMAL" + }, { + "bufferView": 4, + "byteOffset": 9074828, + "componentType": 5122, + "count": 15507, + "type": "VEC2", + "name": "x2_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0" + }, { + "bufferView": 4, + "byteOffset": 9074832, + "componentType": 5122, + "count": 15507, + "type": "VEC2", + "name": "x2_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1" + }, { + "bufferView": 4, + "byteOffset": 9074836, + "componentType": 5123, + "count": 15507, + "type": "VEC4", + "name": "x2_Livery_KLM_FuselageA_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1309566, + "componentType": 5123, + "count": 43179, + "type": "SCALAR", + "name": "x2_Livery_KLM_FuselageA_indices#0" + }, { + "bufferView": 6, + "componentType": 5126, + "count": 1553, + "min": [ + 11.163616180419922, -0.10810039937496185, -1.609161615371704 + ], + "max": [ + 20.709306716918945, 0.14637230336666107, -0.3714170455932617 + ], + "type": "VEC3", + "name": "x2_Spoiler_2_1_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 12, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 16, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 20, + "componentType": 5122, + "count": 1553, + "type": "VEC2", + "name": "x2_Spoiler_2_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 24, + "componentType": 5122, + "count": 1553, + "type": "VEC2", + "name": "x2_Spoiler_2_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 28, + "componentType": 5123, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 36, + "componentType": 5123, + "count": 1553, + "normalized": true, + "type": "VEC4", + "name": "x2_Spoiler_2_1_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 44, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1395924, + "componentType": 5123, + "count": 4254, + "type": "SCALAR", + "name": "x2_Spoiler_2_1_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 74544, + "componentType": 5126, + "count": 7531, + "min": [ + 7.807620048522949, -3.5472006797790527, -6.900039196014404 + ], + "max": [ + 11.804464340209961, 0.5861704349517822, 4.58245325088501 + ], + "type": "VEC3", + "name": "x2_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 74556, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 74560, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 74564, + "componentType": 5122, + "count": 7531, + "type": "VEC2", + "name": "x2_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 74568, + "componentType": 5122, + "count": 7531, + "type": "VEC2", + "name": "x2_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 74572, + "componentType": 5123, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 74580, + "componentType": 5123, + "count": 7531, + "normalized": true, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 74588, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1404432, + "componentType": 5123, + "count": 16074, + "type": "SCALAR", + "name": "x2_Engine_Body_left_indices#0" + }, { + "bufferView": 7, + "componentType": 5126, + "count": 166, + "min": [ + 7.805755615234375, -3.5147926807403564, 1.382395625114441 + ], + "max": [ + 11.807357788085938, -0.8350050449371338, 4.257199764251709 + ], + "type": "VEC3", + "name": "x2_Engine_Body_left_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 12, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 16, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 20, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Engine_Body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 24, + "componentType": 5122, + "count": 166, + "type": "VEC2", + "name": "x2_Engine_Body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 28, + "componentType": 5123, + "count": 166, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 36, + "componentType": 5126, + "count": 166, + "type": "SCALAR", + "name": "x2_Engine_Body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 40, + "componentType": 5120, + "count": 166, + "type": "VEC4", + "name": "x2_Engine_Body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1436580, + "componentType": 5123, + "count": 426, + "type": "SCALAR", + "name": "x2_Engine_Body_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 436032, + "componentType": 5126, + "count": 7531, + "min": [ + -11.804459571838379, -0.586169421672821, -4.582455635070801 + ], + "max": [ + -7.807616710662842, 3.5472018718719482, 6.900044918060303 + ], + "type": "VEC3", + "name": "x2_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 436044, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 436048, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 436052, + "componentType": 5122, + "count": 7531, + "type": "VEC2", + "name": "x2_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 436056, + "componentType": 5122, + "count": 7531, + "type": "VEC2", + "name": "x2_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 436060, + "componentType": 5123, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 436068, + "componentType": 5123, + "count": 7531, + "normalized": true, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 436076, + "componentType": 5120, + "count": 7531, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1437432, + "componentType": 5123, + "count": 16074, + "type": "SCALAR", + "name": "x2_Engine_Body_right_indices#0" + }, { + "bufferView": 7, + "byteOffset": 7304, + "componentType": 5126, + "count": 160, + "min": [ + -11.806539535522461, 0.8350065350532532, -4.257201194763184 + ], + "max": [ + -7.804647922515869, 3.5147948265075684, -1.3823938369750977 + ], + "type": "VEC3", + "name": "x2_Engine_Body_right_vertices#0_POSITION" + }, { + "bufferView": 7, + "byteOffset": 7316, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_TANGENT" + }, { + "bufferView": 7, + "byteOffset": 7320, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_NORMAL" + }, { + "bufferView": 7, + "byteOffset": 7324, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x2_Engine_Body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 7, + "byteOffset": 7328, + "componentType": 5122, + "count": 160, + "type": "VEC2", + "name": "x2_Engine_Body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 7, + "byteOffset": 7332, + "componentType": 5123, + "count": 160, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 7, + "byteOffset": 7340, + "componentType": 5126, + "count": 160, + "type": "SCALAR", + "name": "x2_Engine_Body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 7, + "byteOffset": 7344, + "componentType": 5120, + "count": 160, + "type": "VEC4", + "name": "x2_Engine_Body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1469580, + "componentType": 5123, + "count": 414, + "type": "SCALAR", + "name": "x2_Engine_Body_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 797520, + "componentType": 5126, + "count": 1553, + "min": [ + -20.709299087524414, -0.14637620747089386, 0.3714272975921631 + ], + "max": [ + -11.163603782653809, 0.10810026526451111, 1.6091699600219727 + ], + "type": "VEC3", + "name": "x2_Spoiler_2_1_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 797532, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 797536, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 797540, + "componentType": 5122, + "count": 1553, + "type": "VEC2", + "name": "x2_Spoiler_2_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 797544, + "componentType": 5122, + "count": 1553, + "type": "VEC2", + "name": "x2_Spoiler_2_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 797548, + "componentType": 5123, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 797556, + "componentType": 5123, + "count": 1553, + "normalized": true, + "type": "VEC4", + "name": "x2_Spoiler_2_1_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 797564, + "componentType": 5120, + "count": 1553, + "type": "VEC4", + "name": "x2_Spoiler_2_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1470408, + "componentType": 5123, + "count": 4254, + "type": "SCALAR", + "name": "x2_Spoiler_2_1_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 872064, + "componentType": 5126, + "count": 219, + "min": [ + 21.344999313354492, 1.8990801572799683, -14.584488868713379 + ], + "max": [ + 24.889142990112305, 2.498643636703491, -11.97108268737793 + ], + "type": "VEC3", + "name": "x2_Aileron_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 872076, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 872080, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 872084, + "componentType": 5122, + "count": 219, + "type": "VEC2", + "name": "x2_Aileron_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 872088, + "componentType": 5122, + "count": 219, + "type": "VEC2", + "name": "x2_Aileron_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 872092, + "componentType": 5123, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 872100, + "componentType": 5123, + "count": 219, + "normalized": true, + "type": "VEC4", + "name": "x2_Aileron_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 872108, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1478916, + "componentType": 5123, + "count": 600, + "type": "SCALAR", + "name": "x2_Aileron_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 882576, + "componentType": 5126, + "count": 928, + "min": [ + 11.763893127441406, 0.5558161735534668, -13.092536926269531 + ], + "max": [ + 21.10556411743164, 2.0732462406158447, -7.418601989746094 + ], + "type": "VEC3", + "name": "x2_Flaps_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 882588, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 882592, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 882596, + "componentType": 5122, + "count": 928, + "type": "VEC2", + "name": "x2_Flaps_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 882600, + "componentType": 5122, + "count": 928, + "type": "VEC2", + "name": "x2_Flaps_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 882604, + "componentType": 5123, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 882612, + "componentType": 5123, + "count": 928, + "normalized": true, + "type": "VEC4", + "name": "x2_Flaps_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 882620, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1480116, + "componentType": 5123, + "count": 2616, + "type": "SCALAR", + "name": "x2_Flaps_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 927120, + "componentType": 5126, + "count": 1192, + "min": [ + 3.043844699859619, -0.6274316906929016, -7.404511451721191 + ], + "max": [ + 10.421204566955566, 0.8745605945587158, -6.343608856201172 + ], + "type": "VEC3", + "name": "x2_Spoiler_1_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 927132, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 927136, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 927140, + "componentType": 5122, + "count": 1192, + "type": "VEC2", + "name": "x2_Spoiler_1_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 927144, + "componentType": 5122, + "count": 1192, + "type": "VEC2", + "name": "x2_Spoiler_1_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 927148, + "componentType": 5123, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 927156, + "componentType": 5123, + "count": 1192, + "normalized": true, + "type": "VEC4", + "name": "x2_Spoiler_1_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 927164, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1485348, + "componentType": 5123, + "count": 3246, + "type": "SCALAR", + "name": "x2_Spoiler_1_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 984336, + "componentType": 5126, + "count": 1324, + "min": [ + 10.154913902282715, 0.5402969121932983, -13.395139694213867 + ], + "max": [ + 26.88677978515625, 2.791901111602783, -1.4753355979919434 + ], + "type": "VEC3", + "name": "x2_FlapsKrueger_2_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 984348, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 984352, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 984356, + "componentType": 5122, + "count": 1324, + "type": "VEC2", + "name": "x2_FlapsKrueger_2_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 984360, + "componentType": 5122, + "count": 1324, + "type": "VEC2", + "name": "x2_FlapsKrueger_2_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 984364, + "componentType": 5123, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 984372, + "componentType": 5123, + "count": 1324, + "normalized": true, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 984380, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1491840, + "componentType": 5123, + "count": 2718, + "type": "SCALAR", + "name": "x2_FlapsKrueger_2_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1047888, + "componentType": 5126, + "count": 219, + "min": [ + -24.889142990112305, 1.8990797996520996, -14.584486961364746 + ], + "max": [ + -21.34499740600586, 2.498643636703491, -11.97108268737793 + ], + "type": "VEC3", + "name": "x2_Aileron_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1047900, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1047904, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1047908, + "componentType": 5122, + "count": 219, + "type": "VEC2", + "name": "x2_Aileron_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1047912, + "componentType": 5122, + "count": 219, + "type": "VEC2", + "name": "x2_Aileron_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1047916, + "componentType": 5123, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1047924, + "componentType": 5123, + "count": 219, + "normalized": true, + "type": "VEC4", + "name": "x2_Aileron_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1047932, + "componentType": 5120, + "count": 219, + "type": "VEC4", + "name": "x2_Aileron_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1497276, + "componentType": 5123, + "count": 600, + "type": "SCALAR", + "name": "x2_Aileron_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1058400, + "componentType": 5126, + "count": 928, + "min": [ + -21.105566024780273, 0.555815577507019, -13.092538833618164 + ], + "max": [ + -11.76388931274414, 2.073246479034424, -7.418602466583252 + ], + "type": "VEC3", + "name": "x2_Flaps_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1058412, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1058416, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1058420, + "componentType": 5122, + "count": 928, + "type": "VEC2", + "name": "x2_Flaps_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1058424, + "componentType": 5122, + "count": 928, + "type": "VEC2", + "name": "x2_Flaps_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1058428, + "componentType": 5123, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1058436, + "componentType": 5123, + "count": 928, + "normalized": true, + "type": "VEC4", + "name": "x2_Flaps_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1058444, + "componentType": 5120, + "count": 928, + "type": "VEC4", + "name": "x2_Flaps_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1498476, + "componentType": 5123, + "count": 2616, + "type": "SCALAR", + "name": "x2_Flaps_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1102944, + "componentType": 5126, + "count": 1300, + "min": [ + -5.82675313949585, -2.3647263050079346, -6.911769390106201 + ], + "max": [ + -0.22731135785579681, 0.32777005434036255, -3.3855366706848145 + ], + "type": "VEC3", + "name": "x2_Undercarriage_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1102956, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1102960, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1102964, + "componentType": 5122, + "count": 1300, + "type": "VEC2", + "name": "x2_Undercarriage_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1102968, + "componentType": 5122, + "count": 1300, + "type": "VEC2", + "name": "x2_Undercarriage_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1102972, + "componentType": 5123, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1102980, + "componentType": 5123, + "count": 1300, + "normalized": true, + "type": "VEC4", + "name": "x2_Undercarriage_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1102988, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1503708, + "componentType": 5123, + "count": 2592, + "type": "SCALAR", + "name": "x2_Undercarriage_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1165344, + "componentType": 5126, + "count": 1324, + "min": [ + -26.861019134521484, -2.7919068336486816, 1.495353102684021 + ], + "max": [ + -10.129152297973633, -0.5402963161468506, 13.415162086486816 + ], + "type": "VEC3", + "name": "x2_FlapsKrueger_2_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1165356, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1165360, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1165364, + "componentType": 5122, + "count": 1324, + "type": "VEC2", + "name": "x2_FlapsKrueger_2_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1165368, + "componentType": 5122, + "count": 1324, + "type": "VEC2", + "name": "x2_FlapsKrueger_2_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1165372, + "componentType": 5123, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1165380, + "componentType": 5123, + "count": 1324, + "normalized": true, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1165388, + "componentType": 5120, + "count": 1324, + "type": "VEC4", + "name": "x2_FlapsKrueger_2_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1508892, + "componentType": 5123, + "count": 2718, + "type": "SCALAR", + "name": "x2_FlapsKrueger_2_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1228896, + "componentType": 5126, + "count": 1192, + "min": [ + -10.421098709106445, -0.8745613694190979, 6.343608856201172 + ], + "max": [ + -3.04384183883667, 0.6274292469024658, 7.4052019119262695 + ], + "type": "VEC3", + "name": "x2_Spoiler_1_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1228908, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1228912, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1228916, + "componentType": 5122, + "count": 1192, + "type": "VEC2", + "name": "x2_Spoiler_1_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1228920, + "componentType": 5122, + "count": 1192, + "type": "VEC2", + "name": "x2_Spoiler_1_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1228924, + "componentType": 5123, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1228932, + "componentType": 5123, + "count": 1192, + "normalized": true, + "type": "VEC4", + "name": "x2_Spoiler_1_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1228940, + "componentType": 5120, + "count": 1192, + "type": "VEC4", + "name": "x2_Spoiler_1_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1514328, + "componentType": 5123, + "count": 3246, + "type": "SCALAR", + "name": "x2_Spoiler_1_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1286112, + "componentType": 5126, + "count": 1300, + "min": [ + 0.22731135785579681, -2.3647263050079346, -6.911769390106201 + ], + "max": [ + 5.826752662658691, 0.327769935131073, -3.3855369091033936 + ], + "type": "VEC3", + "name": "x2_Undercarriage_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1286124, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1286128, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1286132, + "componentType": 5122, + "count": 1300, + "type": "VEC2", + "name": "x2_Undercarriage_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1286136, + "componentType": 5122, + "count": 1300, + "type": "VEC2", + "name": "x2_Undercarriage_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1286140, + "componentType": 5123, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1286148, + "componentType": 5123, + "count": 1300, + "normalized": true, + "type": "VEC4", + "name": "x2_Undercarriage_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1286156, + "componentType": 5120, + "count": 1300, + "type": "VEC4", + "name": "x2_Undercarriage_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1520820, + "componentType": 5123, + "count": 2592, + "type": "SCALAR", + "name": "x2_Undercarriage_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1348512, + "componentType": 5126, + "count": 766, + "min": [ + 4.801580905914307, -3.5907132625579834, -6.57771635055542 + ], + "max": [ + 5.325787544250488, -1.0680676698684692, -5.280616283416748 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_04_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1348524, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1348528, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1348532, + "componentType": 5122, + "count": 766, + "type": "VEC2", + "name": "x2_Landing_Gear_04_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1348536, + "componentType": 5122, + "count": 766, + "type": "VEC2", + "name": "x2_Landing_Gear_04_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1348540, + "componentType": 5123, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1348548, + "componentType": 5123, + "count": 766, + "normalized": true, + "type": "VEC4", + "name": "x2_Landing_Gear_04_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1348556, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1526004, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "x2_Landing_Gear_04_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1385280, + "componentType": 5126, + "count": 766, + "min": [ + -5.325788974761963, -3.5907182693481445, -6.57771635055542 + ], + "max": [ + -4.801581382751465, -1.0680688619613647, -5.280617713928223 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_04_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1385292, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1385296, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1385300, + "componentType": 5122, + "count": 766, + "type": "VEC2", + "name": "x2_Landing_Gear_04_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1385304, + "componentType": 5122, + "count": 766, + "type": "VEC2", + "name": "x2_Landing_Gear_04_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1385308, + "componentType": 5123, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1385316, + "componentType": 5123, + "count": 766, + "normalized": true, + "type": "VEC4", + "name": "x2_Landing_Gear_04_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1385324, + "componentType": 5120, + "count": 766, + "type": "VEC4", + "name": "x2_Landing_Gear_04_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1531764, + "componentType": 5123, + "count": 2880, + "type": "SCALAR", + "name": "x2_Landing_Gear_04_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1422048, + "componentType": 5126, + "count": 112, + "min": [ + 4.489045143127441, -2.268216133117676, -5.978176116943359 + ], + "max": [ + 4.814070224761963, -1.6262123584747314, -5.6633453369140625 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_22_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1422060, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1422064, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1422068, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x2_Landing_Gear_22_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1422072, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x2_Landing_Gear_22_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1422076, + "componentType": 5123, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1422084, + "componentType": 5123, + "count": 112, + "normalized": true, + "type": "VEC4", + "name": "x2_Landing_Gear_22_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1422092, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1537524, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x2_Landing_Gear_22_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1427424, + "componentType": 5126, + "count": 112, + "min": [ + -4.814070701599121, -2.2682156562805176, -5.978175640106201 + ], + "max": [ + -4.489045143127441, -1.6262123584747314, -5.6633453369140625 + ], + "type": "VEC3", + "name": "x2_Landing_Gear_22_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1427436, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1427440, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1427444, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x2_Landing_Gear_22_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1427448, + "componentType": 5122, + "count": 112, + "type": "VEC2", + "name": "x2_Landing_Gear_22_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1427452, + "componentType": 5123, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1427460, + "componentType": 5123, + "count": 112, + "normalized": true, + "type": "VEC4", + "name": "x2_Landing_Gear_22_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1427468, + "componentType": 5120, + "count": 112, + "type": "VEC4", + "name": "x2_Landing_Gear_22_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1538100, + "componentType": 5123, + "count": 288, + "type": "SCALAR", + "name": "x2_Landing_Gear_22_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1432800, + "componentType": 5126, + "count": 6403, + "min": [ + -30.05951499938965, -1.3455458879470825, -18.055572509765625 + ], + "max": [ + -2.83021879196167, 3.451648712158203, 3.613905906677246 + ], + "type": "VEC3", + "name": "FROST_WINGR_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1432812, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1432816, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1432820, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1432824, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGR_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1432828, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1432836, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1432844, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGR_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1538676, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGR_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1740144, + "componentType": 5126, + "count": 424, + "min": [ + 10.141216278076172, 0.5165859460830688, -13.39698314666748 + ], + "max": [ + 26.875797271728516, 2.8301968574523926, -1.468531608581543 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1740156, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1740160, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1740164, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1740168, + "componentType": 5122, + "count": 424, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1740172, + "componentType": 5123, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1740180, + "componentType": 5123, + "count": 424, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1740188, + "componentType": 5120, + "count": 424, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_L_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1569156, + "componentType": 5123, + "count": 648, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_L_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1760496, + "componentType": 5126, + "count": 432, + "min": [ + -26.875783920288086, -2.830195903778076, 1.4685382843017578 + ], + "max": [ + -10.141209602355957, -0.5165848731994629, 13.396985054016113 + ], + "type": "VEC3", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1760508, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1760512, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1760516, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1760520, + "componentType": 5122, + "count": 432, + "type": "VEC2", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1760524, + "componentType": 5123, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1760532, + "componentType": 5123, + "count": 432, + "normalized": true, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1760540, + "componentType": 5120, + "count": 432, + "type": "VEC4", + "name": "x0_FROST_KRUEGER_R_2_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1570452, + "componentType": 5123, + "count": 654, + "type": "SCALAR", + "name": "x0_FROST_KRUEGER_R_2_indices#0" + }, { + "bufferView": 6, + "byteOffset": 1781232, + "componentType": 5126, + "count": 6403, + "min": [ + 2.8302183151245117, -1.3455458879470825, -18.05556869506836 + ], + "max": [ + 30.059513092041016, 3.451648235321045, 3.6139049530029297 + ], + "type": "VEC3", + "name": "FROST_WINGL_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 1781244, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 1781248, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 1781252, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 1781256, + "componentType": 5122, + "count": 6403, + "type": "VEC2", + "name": "FROST_WINGL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 1781260, + "componentType": 5123, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 1781268, + "componentType": 5123, + "count": 6403, + "normalized": true, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 1781276, + "componentType": 5120, + "count": 6403, + "type": "VEC4", + "name": "FROST_WINGL_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1571760, + "componentType": 5123, + "count": 15240, + "type": "SCALAR", + "name": "FROST_WINGL_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2088576, + "componentType": 5126, + "count": 1182, + "min": [ + -0.21939370036125183, 0.9390157461166382, 26.39491844177246 + ], + "max": [ + 0.21939389407634735, 1.7470015287399292, 27.31182098388672 + ], + "type": "VEC3", + "name": "x2_wiper_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2088588, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x2_wiper_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2088592, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x2_wiper_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2088596, + "componentType": 5122, + "count": 1182, + "type": "VEC2", + "name": "x2_wiper_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2088600, + "componentType": 5122, + "count": 1182, + "type": "VEC2", + "name": "x2_wiper_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2088604, + "componentType": 5123, + "count": 1182, + "type": "VEC4", + "name": "x2_wiper_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2088612, + "componentType": 5123, + "count": 1182, + "normalized": true, + "type": "VEC4", + "name": "x2_wiper_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2088620, + "componentType": 5120, + "count": 1182, + "type": "VEC4", + "name": "x2_wiper_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1602240, + "componentType": 5123, + "count": 2652, + "type": "SCALAR", + "name": "x2_wiper_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2145312, + "componentType": 5126, + "count": 641, + "min": [ + -2.7366485595703125, -2.528285026550293, -37.0194091796875 + ], + "max": [ + 30.011348724365234, 3.8645033836364746, 16.32292938232422 + ], + "type": "VEC3", + "name": "x2_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2145324, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2145328, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2145332, + "componentType": 5122, + "count": 641, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2145336, + "componentType": 5122, + "count": 641, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2145340, + "componentType": 5123, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2145348, + "componentType": 5123, + "count": 641, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2145356, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1607544, + "componentType": 5123, + "count": 2559, + "type": "SCALAR", + "name": "x2_Wing_body_left_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2176080, + "componentType": 5126, + "count": 6546, + "min": [ + 2.8388671875, -1.3049407005310059, -18.019275665283203 + ], + "max": [ + 30.1192626953125, 3.411315441131592, 3.5839900970458984 + ], + "type": "VEC3", + "name": "x2_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2176092, + "componentType": 5120, + "count": 6546, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2176096, + "componentType": 5120, + "count": 6546, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2176100, + "componentType": 5122, + "count": 6546, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2176104, + "componentType": 5122, + "count": 6546, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2176108, + "componentType": 5123, + "count": 6546, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2176116, + "componentType": 5123, + "count": 6546, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2176124, + "componentType": 5120, + "count": 6546, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1612662, + "componentType": 5123, + "count": 16755, + "type": "SCALAR", + "name": "x2_Wing_body_left_indices#1" + }, { + "bufferView": 6, + "byteOffset": 2490288, + "componentType": 5126, + "count": 213, + "min": [ + 3.2889938354492188, -0.30581068992614746, -18.01360321044922 + ], + "max": [ + 29.99734115600586, 3.3970823287963867, 3.388570785522461 + ], + "type": "VEC3", + "name": "x2_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2490300, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2490304, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2490308, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2490312, + "componentType": 5122, + "count": 213, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2490316, + "componentType": 5123, + "count": 213, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2490324, + "componentType": 5123, + "count": 213, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2490332, + "componentType": 5120, + "count": 213, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1646172, + "componentType": 5123, + "count": 501, + "type": "SCALAR", + "name": "x2_Wing_body_left_indices#2" + }, { + "bufferView": 6, + "byteOffset": 2500512, + "componentType": 5126, + "count": 10, + "min": [ + 5.00861930847168, 0.4827752113342285, -1.5732488632202148 + ], + "max": [ + 9.076507568359375, 0.9196901321411133, 1.0862865447998047 + ], + "type": "VEC3", + "name": "x2_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2500524, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2500528, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2500532, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2500536, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2500540, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2500548, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2500556, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1647174, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x2_Wing_body_left_indices#3" + }, { + "bufferView": 6, + "byteOffset": 2500992, + "componentType": 5126, + "count": 20, + "min": [ + 19.140178680419922, 1.411563515663147, -12.029855728149414 + ], + "max": [ + 23.02213478088379, 1.9682183265686035, -8.97712516784668 + ], + "type": "VEC3", + "name": "x2_Wing_body_left_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2501004, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2501008, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2501012, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2501016, + "componentType": 5122, + "count": 20, + "type": "VEC2", + "name": "x2_Wing_body_left_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2501020, + "componentType": 5123, + "count": 20, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2501028, + "componentType": 5123, + "count": 20, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2501036, + "componentType": 5120, + "count": 20, + "type": "VEC4", + "name": "x2_Wing_body_left_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1647210, + "componentType": 5123, + "count": 72, + "type": "SCALAR", + "name": "x2_Wing_body_left_indices#4" + }, { + "bufferView": 6, + "byteOffset": 2501952, + "componentType": 5126, + "count": 641, + "min": [ + -30.011350631713867, -2.5282795429229736, -37.0194091796875 + ], + "max": [ + 2.7366466522216797, 3.8645081520080566, 16.32292938232422 + ], + "type": "VEC3", + "name": "x2_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2501964, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2501968, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2501972, + "componentType": 5122, + "count": 641, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2501976, + "componentType": 5122, + "count": 641, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2501980, + "componentType": 5123, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2501988, + "componentType": 5123, + "count": 641, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2501996, + "componentType": 5120, + "count": 641, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1647354, + "componentType": 5123, + "count": 2559, + "type": "SCALAR", + "name": "x2_Wing_body_right_indices#0" + }, { + "bufferView": 6, + "byteOffset": 2532720, + "componentType": 5126, + "count": 6618, + "min": [ + -30.119264602661133, -1.3049373626708984, -18.019277572631836 + ], + "max": [ + -2.838865280151367, 3.4113144874572754, 3.5839929580688477 + ], + "type": "VEC3", + "name": "x2_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2532732, + "componentType": 5120, + "count": 6618, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2532736, + "componentType": 5120, + "count": 6618, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2532740, + "componentType": 5122, + "count": 6618, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2532744, + "componentType": 5122, + "count": 6618, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2532748, + "componentType": 5123, + "count": 6618, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2532756, + "componentType": 5123, + "count": 6618, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2532764, + "componentType": 5120, + "count": 6618, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1652472, + "componentType": 5123, + "count": 17175, + "type": "SCALAR", + "name": "x2_Wing_body_right_indices#1" + }, { + "bufferView": 6, + "byteOffset": 2850384, + "componentType": 5126, + "count": 191, + "min": [ + -27.72353172302246, -0.305804967880249, -13.931132316589355 + ], + "max": [ + -3.288991928100586, 2.8370320796966553, 3.38857364654541 + ], + "type": "VEC3", + "name": "x2_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2850396, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2850400, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2850404, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2850408, + "componentType": 5122, + "count": 191, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2850412, + "componentType": 5123, + "count": 191, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2850420, + "componentType": 5123, + "count": 191, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2850428, + "componentType": 5120, + "count": 191, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1686822, + "componentType": 5123, + "count": 441, + "type": "SCALAR", + "name": "x2_Wing_body_right_indices#2" + }, { + "bufferView": 6, + "byteOffset": 2859552, + "componentType": 5126, + "count": 10, + "min": [ + -9.076505661010742, 0.48278045654296875, -1.5732492208480835 + ], + "max": [ + -5.008617401123047, 0.9196944236755371, 1.086287260055542 + ], + "type": "VEC3", + "name": "x2_Wing_body_right_vertices#0_POSITION" + }, { + "bufferView": 6, + "byteOffset": 2859564, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_TANGENT" + }, { + "bufferView": 6, + "byteOffset": 2859568, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_NORMAL" + }, { + "bufferView": 6, + "byteOffset": 2859572, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_0" + }, { + "bufferView": 6, + "byteOffset": 2859576, + "componentType": 5122, + "count": 10, + "type": "VEC2", + "name": "x2_Wing_body_right_vertices#0_TEXCOORD_1" + }, { + "bufferView": 6, + "byteOffset": 2859580, + "componentType": 5123, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_JOINTS_0" + }, { + "bufferView": 6, + "byteOffset": 2859588, + "componentType": 5123, + "count": 10, + "normalized": true, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_WEIGHTS_0" + }, { + "bufferView": 6, + "byteOffset": 2859596, + "componentType": 5120, + "count": 10, + "type": "VEC4", + "name": "x2_Wing_body_right_vertices#0_COLOR_0" + }, { + "bufferView": 5, + "byteOffset": 1687704, + "componentType": 5123, + "count": 18, + "type": "SCALAR", + "name": "x2_Wing_body_right_indices#3" + }, { + "bufferView": 9, + "byteOffset": 28, + "componentType": 5123, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 16, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "componentType": 5126, + "count": 1084, + "min": [ + -6.898191452026367, -2.385265350341797, -0.27293723821640015 + ], + "max": [ + 4.0452880859375, 0.5350360870361328, 0.27293795347213745 + ], + "type": "VEC3", + "name": "x1_Rudder_center.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 12, + "componentType": 5120, + "count": 1084, + "type": "VEC4", + "name": "x1_Rudder_center.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 20, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 24, + "componentType": 5122, + "count": 1084, + "type": "VEC2", + "name": "x1_Rudder_center.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "componentType": 5123, + "count": 5460, + "type": "SCALAR", + "name": "x1_Rudder_center.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 39052, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 39040, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 39024, + "componentType": 5126, + "count": 43, + "min": [ + -0.48449012637138367, 0.054303597658872604, -0.7407507300376892 + ], + "max": [ + 0.5785654187202454, 0.16718320548534393, -0.044933248311281204 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 39036, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 39044, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 39048, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 10920, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_Left.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 40600, + "componentType": 5123, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 40588, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 40572, + "componentType": 5126, + "count": 43, + "min": [ + -0.5787447690963745, -0.16539137065410614, 0.044925887137651443 + ], + "max": [ + 0.4843108654022217, -0.05251185968518257, 0.7407436966896057 + ], + "type": "VEC3", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 40584, + "componentType": 5120, + "count": 43, + "type": "VEC4", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 40592, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 40596, + "componentType": 5122, + "count": 43, + "type": "VEC2", + "name": "x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11100, + "componentType": 5123, + "count": 90, + "type": "SCALAR", + "name": "x1_Livery_C_Door_02_right.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 42148, + "componentType": 5123, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 42136, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 42120, + "componentType": 5126, + "count": 345, + "min": [ + -0.2698783874511719, -0.9995222091674805, -0.5886659622192383 + ], + "max": [ + 0.0020599365234375, 0.5340242385864258, 0.5886745452880859 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 42132, + "componentType": 5120, + "count": 345, + "type": "VEC4", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 42140, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 42144, + "componentType": 5122, + "count": 345, + "type": "VEC2", + "name": "x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 11280, + "componentType": 5123, + "count": 906, + "type": "SCALAR", + "name": "x0_Livery_KLM_DoorB.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 54568, + "componentType": 5123, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 54556, + "componentType": 5120, + "count": 24, + "type": "VEC4", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 54540, + "componentType": 5126, + "count": 24, + "min": [ + 2.5483758449554443, 1.5735995769500732, 5.896169662475586 + ], + "max": [ + 2.77527117729187, 1.843569040298462, 21.52033805847168 + ], + "type": "VEC3", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 54560, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 54564, + "componentType": 5122, + "count": 24, + "type": "VEC2", + "name": "x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13092, + "componentType": 5123, + "count": 63, + "type": "SCALAR", + "name": "x0_Livery_KLM_FuselageA.005_indices#0" + }, { + "bufferView": 9, + "byteOffset": 55432, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 55420, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 55404, + "componentType": 5126, + "count": 31, + "min": [ + -0.27521419525146484, -0.27002182602882385, -1.6258187294006348 + ], + "max": [ + -0.24078130722045898, 0.6198497414588928, 1.8943886756896973 + ], + "type": "VEC3", + "name": "x0_R_Door01_left.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 55416, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_R_Door01_left.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 55424, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 55428, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_R_Door01_left.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13220, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_R_Door01_left.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 56548, + "componentType": 5123, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 56536, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 56520, + "componentType": 5126, + "count": 31, + "min": [ + 0.24078059196472168, -0.6198493242263794, -1.8943934440612793 + ], + "max": [ + 0.27521395683288574, 0.2700219750404358, 1.625821590423584 + ], + "type": "VEC3", + "name": "x0_Door01_right.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 56532, + "componentType": 5120, + "count": 31, + "type": "VEC4", + "name": "x0_Door01_right.001_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 56540, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 56544, + "componentType": 5122, + "count": 31, + "type": "VEC2", + "name": "x0_Door01_right.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13396, + "componentType": 5123, + "count": 87, + "type": "SCALAR", + "name": "x0_Door01_right.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 57664, + "componentType": 5123, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 57652, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 57636, + "componentType": 5126, + "count": 2356, + "min": [ + -0.5303040146827698, 2.561161756515503, -39.11258316040039 + ], + "max": [ + 0.5303040146827698, 12.468074798583984, -25.891597747802734 + ], + "type": "VEC3", + "name": "livery_vstab_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 57648, + "componentType": 5120, + "count": 2356, + "type": "VEC4", + "name": "livery_vstab_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 57656, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 57660, + "componentType": 5122, + "count": 2356, + "type": "VEC2", + "name": "livery_vstab_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 13572, + "componentType": 5123, + "count": 12342, + "type": "SCALAR", + "name": "livery_vstab_indices#0" + }, { + "bufferView": 9, + "byteOffset": 142480, + "componentType": 5123, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 142468, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 142452, + "componentType": 5126, + "count": 35, + "min": [ + 0.38646888732910156, -1.475200891494751, -1.4131393432617188 + ], + "max": [ + 0.8847513198852539, -0.9122163653373718, 1.4013233184814453 + ], + "type": "VEC3", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 142464, + "componentType": 5120, + "count": 35, + "type": "VEC4", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 142472, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 142476, + "componentType": 5122, + "count": 35, + "type": "VEC2", + "name": "Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38256, + "componentType": 5123, + "count": 120, + "type": "SCALAR", + "name": "Cargo_Door_LIVERYDECAL_indices#0" + }, { + "bufferView": 9, + "byteOffset": 143740, + "componentType": 5123, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 143728, + "componentType": 5120, + "count": 270, + "type": "VEC4", + "name": "Plane.002_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 143712, + "componentType": 5126, + "count": 270, + "min": [ + -2.8634743690490723, -0.27878737449645996, -25.152372360229492 + ], + "max": [ + 2.863468647003174, 2.3880088329315186, -20.129650115966797 + ], + "type": "VEC3", + "name": "Plane.002_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 143732, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 143736, + "componentType": 5122, + "count": 270, + "type": "VEC2", + "name": "Plane.002_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 38496, + "componentType": 5123, + "count": 918, + "type": "SCALAR", + "name": "Plane.002_indices#0" + }, { + "bufferView": 9, + "byteOffset": 153460, + "componentType": 5123, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 153448, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 153432, + "componentType": 5126, + "count": 2765, + "min": [ + -1.2694666385650635, -2.546407699584961, -15.50222110748291 + ], + "max": [ + 1.269464135169983, -1.9093613624572754, 8.595946311950684 + ], + "type": "VEC3", + "name": "Plane.004_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 153444, + "componentType": 5120, + "count": 2765, + "type": "VEC4", + "name": "Plane.004_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 153452, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 153456, + "componentType": 5122, + "count": 2765, + "type": "VEC2", + "name": "Plane.004_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 40332, + "componentType": 5123, + "count": 8436, + "type": "SCALAR", + "name": "Plane.004_indices#0" + }, { + "bufferView": 9, + "byteOffset": 253000, + "componentType": 5123, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 252988, + "componentType": 5120, + "count": 12650, + "type": "VEC4", + "name": "Plane.001_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 252972, + "componentType": 5126, + "count": 12650, + "min": [ + -2.848564624786377, 1.0104148387908936, -2.4503250122070312 + ], + "max": [ + 2.848580837249756, 2.654226064682007, 19.7845458984375 + ], + "type": "VEC3", + "name": "Plane.001_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 252992, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 252996, + "componentType": 5122, + "count": 12650, + "type": "VEC2", + "name": "Plane.001_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 57204, + "componentType": 5123, + "count": 39384, + "type": "SCALAR", + "name": "Plane.001_indices#0" + }, { + "bufferView": 9, + "byteOffset": 708400, + "componentType": 5123, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 708388, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 708372, + "componentType": 5126, + "count": 92, + "min": [ + -2.3540401458740234, 0.9106197357177734, 23.448795318603516 + ], + "max": [ + 2.3526997566223145, 1.9353947639465332, 24.303451538085938 + ], + "type": "VEC3", + "name": "Plane.003_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 708384, + "componentType": 5120, + "count": 92, + "type": "VEC4", + "name": "Plane.003_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 708392, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 708396, + "componentType": 5122, + "count": 92, + "type": "VEC2", + "name": "Plane.003_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 135972, + "componentType": 5123, + "count": 336, + "type": "SCALAR", + "name": "Plane.003_indices#0" + }, { + "bufferView": 9, + "byteOffset": 711712, + "componentType": 5123, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_COLOR_0" + }, { + "bufferView": 9, + "byteOffset": 711700, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_NORMAL" + }, { + "bufferView": 9, + "byteOffset": 711684, + "componentType": 5126, + "count": 3715, + "min": [ + -3.255725383758545, -1.545548439025879, -30.79000473022461 + ], + "max": [ + 3.2557260990142822, -0.9825637340545654, 28.268733978271484 + ], + "type": "VEC3", + "name": "Plane.008_vertices#0_POSITION" + }, { + "bufferView": 9, + "byteOffset": 711696, + "componentType": 5120, + "count": 3715, + "type": "VEC4", + "name": "Plane.008_vertices#0_TANGENT" + }, { + "bufferView": 9, + "byteOffset": 711704, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_0" + }, { + "bufferView": 9, + "byteOffset": 711708, + "componentType": 5122, + "count": 3715, + "type": "VEC2", + "name": "Plane.008_vertices#0_TEXCOORD_1" + }, { + "bufferView": 8, + "byteOffset": 136644, + "componentType": 5123, + "count": 11496, + "type": "SCALAR", + "name": "Plane.008_indices#0" + }, { + "bufferView": 10, + "componentType": 5126, + "count": 81, + "min": [0.041666666666666664], + "max": [3.375], + "type": "SCALAR" + }, { + "bufferView": 11, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 12, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, { + "bufferView": 13, + "componentType": 5126, + "count": 161, + "min": [0.041666666666666664], + "max": [6.708333333333333], + "type": "SCALAR" + }, { + "bufferView": 14, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 15, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 16, + "componentType": 5126, + "count": 161, + "type": "VEC3" + }, { + "bufferView": 17, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 18, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 19, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 20, + "componentType": 5126, + "count": 161, + "type": "VEC4" + }, { + "bufferView": 21, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, { + "bufferView": 22, + "componentType": 5126, + "count": 81, + "type": "VEC4" + } + ], + "animations": [ + { + "name": "c_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 168, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 168, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 191, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 191, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 191, + "path": "scale" + } + }, { + "sampler": 5, + "target": { + "node": 192, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 192, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 192, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 8, + "path": "rotation" + } + }, { + "sampler": 9, + "target": { + "node": 187, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 187, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 187, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 4, + "path": "rotation" + } + }, { + "sampler": 13, + "target": { + "node": 203, + "path": "translation" + } + }, { + "sampler": 14, + "target": { + "node": 203, + "path": "rotation" + } + }, { + "sampler": 15, + "target": { + "node": 203, + "path": "scale" + } + }, { + "sampler": 16, + "target": { + "node": 204, + "path": "translation" + } + }, { + "sampler": 17, + "target": { + "node": 204, + "path": "rotation" + } + }, { + "sampler": 18, + "target": { + "node": 204, + "path": "scale" + } + }, { + "sampler": 19, + "target": { + "node": 207, + "path": "translation" + } + }, { + "sampler": 20, + "target": { + "node": 207, + "path": "rotation" + } + }, { + "sampler": 21, + "target": { + "node": 207, + "path": "scale" + } + }, { + "sampler": 22, + "target": { + "node": 205, + "path": "translation" + } + }, { + "sampler": 23, + "target": { + "node": 205, + "path": "rotation" + } + }, { + "sampler": 24, + "target": { + "node": 205, + "path": "scale" + } + }, { + "sampler": 25, + "target": { + "node": 12, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 16, + "path": "rotation" + } + }, { + "sampler": 27, + "target": { + "node": 17, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 17, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 17, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 176, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 176, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 176, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 177, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 177, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 177, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 179, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 179, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 179, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 188, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 188, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 188, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 13, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 13, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 13, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 5, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 5, + "path": "scale" + } + }, { + "sampler": 47, + "target": { + "node": 9, + "path": "translation" + } + }, { + "sampler": 48, + "target": { + "node": 9, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 9, + "path": "scale" + } + }, { + "sampler": 50, + "target": { + "node": 189, + "path": "translation" + } + }, { + "sampler": 51, + "target": { + "node": 189, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 189, + "path": "scale" + } + }, { + "sampler": 53, + "target": { + "node": 195, + "path": "translation" + } + }, { + "sampler": 54, + "target": { + "node": 195, + "path": "rotation" + } + }, { + "sampler": 55, + "target": { + "node": 195, + "path": "scale" + } + }, { + "sampler": 56, + "target": { + "node": 196, + "path": "translation" + } + }, { + "sampler": 57, + "target": { + "node": 196, + "path": "rotation" + } + }, { + "sampler": 58, + "target": { + "node": 196, + "path": "scale" + } + }, { + "sampler": 59, + "target": { + "node": 178, + "path": "translation" + } + }, { + "sampler": 60, + "target": { + "node": 178, + "path": "rotation" + } + }, { + "sampler": 61, + "target": { + "node": 178, + "path": "scale" + } + }, { + "sampler": 62, + "target": { + "node": 184, + "path": "translation" + } + }, { + "sampler": 63, + "target": { + "node": 184, + "path": "rotation" + } + }, { + "sampler": 64, + "target": { + "node": 184, + "path": "scale" + } + }, { + "sampler": 65, + "target": { + "node": 185, + "path": "translation" + } + }, { + "sampler": 66, + "target": { + "node": 185, + "path": "rotation" + } + }, { + "sampler": 67, + "target": { + "node": 185, + "path": "scale" + } + }, { + "sampler": 68, + "target": { + "node": 186, + "path": "translation" + } + }, { + "sampler": 69, + "target": { + "node": 186, + "path": "rotation" + } + }, { + "sampler": 70, + "target": { + "node": 186, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 25, + "output": 26, + "interpolation": "LINEAR" + }, { + "input": 27, + "output": 28, + "interpolation": "LINEAR" + }, { + "input": 29, + "output": 30, + "interpolation": "LINEAR" + }, { + "input": 31, + "output": 32, + "interpolation": "LINEAR" + }, { + "input": 33, + "output": 34, + "interpolation": "LINEAR" + }, { + "input": 35, + "output": 36, + "interpolation": "LINEAR" + }, { + "input": 37, + "output": 38, + "interpolation": "LINEAR" + }, { + "input": 39, + "output": 40, + "interpolation": "LINEAR" + }, { + "input": 41, + "output": 42, + "interpolation": "LINEAR" + }, { + "input": 43, + "output": 44, + "interpolation": "LINEAR" + }, { + "input": 45, + "output": 46, + "interpolation": "LINEAR" + }, { + "input": 47, + "output": 48, + "interpolation": "LINEAR" + }, { + "input": 49, + "output": 50, + "interpolation": "LINEAR" + }, { + "input": 51, + "output": 52, + "interpolation": "LINEAR" + }, { + "input": 53, + "output": 54, + "interpolation": "LINEAR" + }, { + "input": 55, + "output": 56, + "interpolation": "LINEAR" + }, { + "input": 57, + "output": 58, + "interpolation": "LINEAR" + }, { + "input": 59, + "output": 60, + "interpolation": "LINEAR" + }, { + "input": 61, + "output": 62, + "interpolation": "LINEAR" + }, { + "input": 63, + "output": 64, + "interpolation": "LINEAR" + }, { + "input": 65, + "output": 66, + "interpolation": "LINEAR" + }, { + "input": 67, + "output": 68, + "interpolation": "LINEAR" + }, { + "input": 69, + "output": 70, + "interpolation": "LINEAR" + }, { + "input": 71, + "output": 72, + "interpolation": "LINEAR" + }, { + "input": 73, + "output": 74, + "interpolation": "LINEAR" + }, { + "input": 75, + "output": 76, + "interpolation": "LINEAR" + }, { + "input": 77, + "output": 78, + "interpolation": "LINEAR" + }, { + "input": 79, + "output": 80, + "interpolation": "LINEAR" + }, { + "input": 81, + "output": 82, + "interpolation": "LINEAR" + }, { + "input": 83, + "output": 84, + "interpolation": "LINEAR" + }, { + "input": 85, + "output": 86, + "interpolation": "LINEAR" + }, { + "input": 87, + "output": 88, + "interpolation": "LINEAR" + }, { + "input": 89, + "output": 90, + "interpolation": "LINEAR" + }, { + "input": 91, + "output": 92, + "interpolation": "LINEAR" + }, { + "input": 93, + "output": 94, + "interpolation": "LINEAR" + }, { + "input": 95, + "output": 96, + "interpolation": "LINEAR" + }, { + "input": 97, + "output": 98, + "interpolation": "LINEAR" + }, { + "input": 99, + "output": 100, + "interpolation": "LINEAR" + }, { + "input": 101, + "output": 102, + "interpolation": "LINEAR" + }, { + "input": 103, + "output": 104, + "interpolation": "LINEAR" + }, { + "input": 105, + "output": 106, + "interpolation": "LINEAR" + }, { + "input": 107, + "output": 108, + "interpolation": "LINEAR" + }, { + "input": 109, + "output": 110, + "interpolation": "LINEAR" + }, { + "input": 111, + "output": 112, + "interpolation": "LINEAR" + }, { + "input": 113, + "output": 114, + "interpolation": "LINEAR" + }, { + "input": 115, + "output": 116, + "interpolation": "LINEAR" + }, { + "input": 117, + "output": 118, + "interpolation": "LINEAR" + }, { + "input": 119, + "output": 120, + "interpolation": "LINEAR" + }, { + "input": 121, + "output": 122, + "interpolation": "LINEAR" + }, { + "input": 123, + "output": 124, + "interpolation": "LINEAR" + }, { + "input": 125, + "output": 126, + "interpolation": "LINEAR" + }, { + "input": 127, + "output": 128, + "interpolation": "LINEAR" + }, { + "input": 129, + "output": 130, + "interpolation": "LINEAR" + }, { + "input": 131, + "output": 132, + "interpolation": "LINEAR" + }, { + "input": 133, + "output": 134, + "interpolation": "LINEAR" + }, { + "input": 135, + "output": 136, + "interpolation": "LINEAR" + }, { + "input": 137, + "output": 138, + "interpolation": "LINEAR" + }, { + "input": 139, + "output": 140, + "interpolation": "LINEAR" + }, { + "input": 141, + "output": 142, + "interpolation": "LINEAR" + }, { + "input": 143, + "output": 144, + "interpolation": "LINEAR" + }, { + "input": 145, + "output": 146, + "interpolation": "LINEAR" + }, { + "input": 147, + "output": 148, + "interpolation": "LINEAR" + }, { + "input": 149, + "output": 150, + "interpolation": "LINEAR" + }, { + "input": 151, + "output": 152, + "interpolation": "LINEAR" + }, { + "input": 153, + "output": 154, + "interpolation": "LINEAR" + }, { + "input": 155, + "output": 156, + "interpolation": "LINEAR" + }, { + "input": 157, + "output": 158, + "interpolation": "LINEAR" + }, { + "input": 159, + "output": 160, + "interpolation": "LINEAR" + }, { + "input": 161, + "output": 162, + "interpolation": "LINEAR" + }, { + "input": 163, + "output": 164, + "interpolation": "LINEAR" + }, { + "input": 165, + "output": 166, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 180, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 167, + "output": 168, + "interpolation": "LINEAR" + } + ] + }, { + "name": "c_wheel", + "channels": [ + { + "sampler": 0, + "target": { + "node": 175, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 175, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 175, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 169, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 169, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 169, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 171, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 171, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 171, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 172, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 172, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 172, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 174, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 174, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 174, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 169, + "output": 170, + "interpolation": "LINEAR" + }, { + "input": 171, + "output": 172, + "interpolation": "LINEAR" + }, { + "input": 173, + "output": 174, + "interpolation": "LINEAR" + }, { + "input": 175, + "output": 176, + "interpolation": "LINEAR" + }, { + "input": 177, + "output": 178, + "interpolation": "LINEAR" + }, { + "input": 179, + "output": 180, + "interpolation": "LINEAR" + }, { + "input": 181, + "output": 182, + "interpolation": "LINEAR" + }, { + "input": 183, + "output": 184, + "interpolation": "LINEAR" + }, { + "input": 185, + "output": 186, + "interpolation": "LINEAR" + }, { + "input": 187, + "output": 188, + "interpolation": "LINEAR" + }, { + "input": 189, + "output": 190, + "interpolation": "LINEAR" + }, { + "input": 191, + "output": 192, + "interpolation": "LINEAR" + }, { + "input": 193, + "output": 194, + "interpolation": "LINEAR" + }, { + "input": 195, + "output": 196, + "interpolation": "LINEAR" + }, { + "input": 197, + "output": 198, + "interpolation": "LINEAR" + } + ] + }, { + "name": "elevator_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 22, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 22, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 22, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 215, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 215, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 215, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 199, + "output": 200, + "interpolation": "LINEAR" + }, { + "input": 201, + "output": 202, + "interpolation": "LINEAR" + }, { + "input": 203, + "output": 204, + "interpolation": "LINEAR" + }, { + "input": 205, + "output": 206, + "interpolation": "LINEAR" + }, { + "input": 207, + "output": 208, + "interpolation": "LINEAR" + }, { + "input": 209, + "output": 210, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 39, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 39, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 39, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 38, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 38, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 38, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 211, + "output": 212, + "interpolation": "LINEAR" + }, { + "input": 213, + "output": 214, + "interpolation": "LINEAR" + }, { + "input": 215, + "output": 216, + "interpolation": "LINEAR" + }, { + "input": 217, + "output": 218, + "interpolation": "LINEAR" + }, { + "input": 219, + "output": 220, + "interpolation": "LINEAR" + }, { + "input": 221, + "output": 222, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 55, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 55, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 43, + "path": "translation" + } + }, { + "sampler": 3, + "target": { + "node": 43, + "path": "rotation" + } + }, { + "sampler": 4, + "target": { + "node": 44, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 56, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 56, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 56, + "path": "scale" + } + }, { + "sampler": 8, + "target": { + "node": 69, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 69, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 69, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 70, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 223, + "output": 224, + "interpolation": "LINEAR" + }, { + "input": 225, + "output": 226, + "interpolation": "LINEAR" + }, { + "input": 227, + "output": 228, + "interpolation": "LINEAR" + }, { + "input": 229, + "output": 230, + "interpolation": "LINEAR" + }, { + "input": 231, + "output": 232, + "interpolation": "LINEAR" + }, { + "input": 233, + "output": 234, + "interpolation": "LINEAR" + }, { + "input": 235, + "output": 236, + "interpolation": "LINEAR" + }, { + "input": 237, + "output": 238, + "interpolation": "LINEAR" + }, { + "input": 239, + "output": 240, + "interpolation": "LINEAR" + }, { + "input": 241, + "output": 242, + "interpolation": "LINEAR" + }, { + "input": 243, + "output": 244, + "interpolation": "LINEAR" + }, { + "input": 245, + "output": 246, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 49, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 49, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 49, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 50, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 50, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 50, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 51, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 51, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 51, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 47, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 47, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 47, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 41, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 41, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 41, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 45, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 45, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 45, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 46, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 46, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 46, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 42, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 42, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 42, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 63, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 63, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 63, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 64, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 64, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 64, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 53, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 53, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 53, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 157, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 157, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 157, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 158, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 158, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 158, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 156, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 156, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 156, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 154, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 154, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 154, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 159, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 159, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 159, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 160, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 160, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 160, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 155, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 155, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 155, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 131, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 131, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 131, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 132, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 132, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 132, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 247, + "output": 248, + "interpolation": "LINEAR" + }, { + "input": 249, + "output": 250, + "interpolation": "LINEAR" + }, { + "input": 251, + "output": 252, + "interpolation": "LINEAR" + }, { + "input": 253, + "output": 254, + "interpolation": "LINEAR" + }, { + "input": 255, + "output": 256, + "interpolation": "LINEAR" + }, { + "input": 257, + "output": 258, + "interpolation": "LINEAR" + }, { + "input": 259, + "output": 260, + "interpolation": "LINEAR" + }, { + "input": 261, + "output": 262, + "interpolation": "LINEAR" + }, { + "input": 263, + "output": 264, + "interpolation": "LINEAR" + }, { + "input": 265, + "output": 266, + "interpolation": "LINEAR" + }, { + "input": 267, + "output": 268, + "interpolation": "LINEAR" + }, { + "input": 269, + "output": 270, + "interpolation": "LINEAR" + }, { + "input": 271, + "output": 272, + "interpolation": "LINEAR" + }, { + "input": 273, + "output": 274, + "interpolation": "LINEAR" + }, { + "input": 275, + "output": 276, + "interpolation": "LINEAR" + }, { + "input": 277, + "output": 278, + "interpolation": "LINEAR" + }, { + "input": 279, + "output": 280, + "interpolation": "LINEAR" + }, { + "input": 281, + "output": 282, + "interpolation": "LINEAR" + }, { + "input": 283, + "output": 284, + "interpolation": "LINEAR" + }, { + "input": 285, + "output": 286, + "interpolation": "LINEAR" + }, { + "input": 287, + "output": 288, + "interpolation": "LINEAR" + }, { + "input": 289, + "output": 290, + "interpolation": "LINEAR" + }, { + "input": 291, + "output": 292, + "interpolation": "LINEAR" + }, { + "input": 293, + "output": 294, + "interpolation": "LINEAR" + }, { + "input": 295, + "output": 296, + "interpolation": "LINEAR" + }, { + "input": 297, + "output": 298, + "interpolation": "LINEAR" + }, { + "input": 299, + "output": 300, + "interpolation": "LINEAR" + }, { + "input": 301, + "output": 302, + "interpolation": "LINEAR" + }, { + "input": 303, + "output": 304, + "interpolation": "LINEAR" + }, { + "input": 305, + "output": 306, + "interpolation": "LINEAR" + }, { + "input": 307, + "output": 308, + "interpolation": "LINEAR" + }, { + "input": 309, + "output": 310, + "interpolation": "LINEAR" + }, { + "input": 311, + "output": 312, + "interpolation": "LINEAR" + }, { + "input": 313, + "output": 314, + "interpolation": "LINEAR" + }, { + "input": 315, + "output": 316, + "interpolation": "LINEAR" + }, { + "input": 317, + "output": 318, + "interpolation": "LINEAR" + }, { + "input": 319, + "output": 320, + "interpolation": "LINEAR" + }, { + "input": 321, + "output": 322, + "interpolation": "LINEAR" + }, { + "input": 323, + "output": 324, + "interpolation": "LINEAR" + }, { + "input": 325, + "output": 326, + "interpolation": "LINEAR" + }, { + "input": 327, + "output": 328, + "interpolation": "LINEAR" + }, { + "input": 329, + "output": 330, + "interpolation": "LINEAR" + }, { + "input": 331, + "output": 332, + "interpolation": "LINEAR" + }, { + "input": 333, + "output": 334, + "interpolation": "LINEAR" + }, { + "input": 335, + "output": 336, + "interpolation": "LINEAR" + }, { + "input": 337, + "output": 338, + "interpolation": "LINEAR" + }, { + "input": 339, + "output": 340, + "interpolation": "LINEAR" + }, { + "input": 341, + "output": 342, + "interpolation": "LINEAR" + }, { + "input": 343, + "output": 344, + "interpolation": "LINEAR" + }, { + "input": 345, + "output": 346, + "interpolation": "LINEAR" + }, { + "input": 347, + "output": 348, + "interpolation": "LINEAR" + }, { + "input": 349, + "output": 350, + "interpolation": "LINEAR" + }, { + "input": 351, + "output": 352, + "interpolation": "LINEAR" + }, { + "input": 353, + "output": 354, + "interpolation": "LINEAR" + }, { + "input": 355, + "output": 356, + "interpolation": "LINEAR" + }, { + "input": 357, + "output": 358, + "interpolation": "LINEAR" + }, { + "input": 359, + "output": 360, + "interpolation": "LINEAR" + }, { + "input": 361, + "output": 362, + "interpolation": "LINEAR" + }, { + "input": 363, + "output": 364, + "interpolation": "LINEAR" + }, { + "input": 365, + "output": 366, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 119, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 119, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 119, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 122, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 122, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 122, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 367, + "output": 368, + "interpolation": "LINEAR" + }, { + "input": 369, + "output": 370, + "interpolation": "LINEAR" + }, { + "input": 371, + "output": 372, + "interpolation": "LINEAR" + }, { + "input": 373, + "output": 374, + "interpolation": "LINEAR" + }, { + "input": 375, + "output": 376, + "interpolation": "LINEAR" + }, { + "input": 377, + "output": 378, + "interpolation": "LINEAR" + } + ] + }, { + "name": "rudder_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 1, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 1, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 1, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 379, + "output": 380, + "interpolation": "LINEAR" + }, { + "input": 381, + "output": 382, + "interpolation": "LINEAR" + }, { + "input": 383, + "output": 384, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_1", + "channels": [ + { + "sampler": 0, + "target": { + "node": 147, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 147, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 147, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 385, + "output": 386, + "interpolation": "LINEAR" + }, { + "input": 387, + "output": 388, + "interpolation": "LINEAR" + }, { + "input": 389, + "output": 390, + "interpolation": "LINEAR" + } + ] + }, { + "name": "trimtab_elevator_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 21, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 21, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 21, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 214, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 214, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 214, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 391, + "output": 392, + "interpolation": "LINEAR" + }, { + "input": 393, + "output": 394, + "interpolation": "LINEAR" + }, { + "input": 395, + "output": 396, + "interpolation": "LINEAR" + }, { + "input": 397, + "output": 398, + "interpolation": "LINEAR" + }, { + "input": 399, + "output": 400, + "interpolation": "LINEAR" + }, { + "input": 401, + "output": 402, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 72, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 72, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 72, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 73, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 73, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 73, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 75, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 75, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 75, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 76, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 76, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 76, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 77, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 77, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 77, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 79, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 79, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 79, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 82, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 82, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 82, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 83, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 83, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 83, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 84, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 84, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 84, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 85, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 85, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 85, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 86, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 86, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 86, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 88, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 88, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 88, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 90, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 90, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 90, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 94, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 94, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 94, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 95, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 95, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 95, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 96, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 96, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 96, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 98, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 98, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 98, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 101, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 101, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 101, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 102, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 102, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 102, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 106, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 106, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 106, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 107, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 107, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 107, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 110, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 110, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 110, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 111, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 111, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 111, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 112, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 112, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 112, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 117, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 117, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 117, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 127, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 127, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 127, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 129, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 129, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 129, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 140, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 140, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 140, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 138, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 138, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 138, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 136, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 136, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 136, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 133, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 133, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 133, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 134, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 134, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 134, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 164, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 164, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 164, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 165, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 165, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 165, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 162, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 162, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 162, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 403, + "output": 404, + "interpolation": "LINEAR" + }, { + "input": 405, + "output": 406, + "interpolation": "LINEAR" + }, { + "input": 407, + "output": 408, + "interpolation": "LINEAR" + }, { + "input": 409, + "output": 410, + "interpolation": "LINEAR" + }, { + "input": 411, + "output": 412, + "interpolation": "LINEAR" + }, { + "input": 413, + "output": 414, + "interpolation": "LINEAR" + }, { + "input": 415, + "output": 416, + "interpolation": "LINEAR" + }, { + "input": 417, + "output": 418, + "interpolation": "LINEAR" + }, { + "input": 419, + "output": 420, + "interpolation": "LINEAR" + }, { + "input": 421, + "output": 422, + "interpolation": "LINEAR" + }, { + "input": 423, + "output": 424, + "interpolation": "LINEAR" + }, { + "input": 425, + "output": 426, + "interpolation": "LINEAR" + }, { + "input": 427, + "output": 428, + "interpolation": "LINEAR" + }, { + "input": 429, + "output": 430, + "interpolation": "LINEAR" + }, { + "input": 431, + "output": 432, + "interpolation": "LINEAR" + }, { + "input": 433, + "output": 434, + "interpolation": "LINEAR" + }, { + "input": 435, + "output": 436, + "interpolation": "LINEAR" + }, { + "input": 437, + "output": 438, + "interpolation": "LINEAR" + }, { + "input": 439, + "output": 440, + "interpolation": "LINEAR" + }, { + "input": 441, + "output": 442, + "interpolation": "LINEAR" + }, { + "input": 443, + "output": 444, + "interpolation": "LINEAR" + }, { + "input": 445, + "output": 446, + "interpolation": "LINEAR" + }, { + "input": 447, + "output": 448, + "interpolation": "LINEAR" + }, { + "input": 449, + "output": 450, + "interpolation": "LINEAR" + }, { + "input": 451, + "output": 452, + "interpolation": "LINEAR" + }, { + "input": 453, + "output": 454, + "interpolation": "LINEAR" + }, { + "input": 455, + "output": 456, + "interpolation": "LINEAR" + }, { + "input": 457, + "output": 458, + "interpolation": "LINEAR" + }, { + "input": 459, + "output": 460, + "interpolation": "LINEAR" + }, { + "input": 461, + "output": 462, + "interpolation": "LINEAR" + }, { + "input": 463, + "output": 464, + "interpolation": "LINEAR" + }, { + "input": 465, + "output": 466, + "interpolation": "LINEAR" + }, { + "input": 467, + "output": 468, + "interpolation": "LINEAR" + }, { + "input": 469, + "output": 470, + "interpolation": "LINEAR" + }, { + "input": 471, + "output": 472, + "interpolation": "LINEAR" + }, { + "input": 473, + "output": 474, + "interpolation": "LINEAR" + }, { + "input": 475, + "output": 476, + "interpolation": "LINEAR" + }, { + "input": 477, + "output": 478, + "interpolation": "LINEAR" + }, { + "input": 479, + "output": 480, + "interpolation": "LINEAR" + }, { + "input": 481, + "output": 482, + "interpolation": "LINEAR" + }, { + "input": 483, + "output": 484, + "interpolation": "LINEAR" + }, { + "input": 485, + "output": 486, + "interpolation": "LINEAR" + }, { + "input": 487, + "output": 488, + "interpolation": "LINEAR" + }, { + "input": 489, + "output": 490, + "interpolation": "LINEAR" + }, { + "input": 491, + "output": 492, + "interpolation": "LINEAR" + }, { + "input": 493, + "output": 494, + "interpolation": "LINEAR" + }, { + "input": 495, + "output": 496, + "interpolation": "LINEAR" + }, { + "input": 497, + "output": 498, + "interpolation": "LINEAR" + }, { + "input": 499, + "output": 500, + "interpolation": "LINEAR" + }, { + "input": 501, + "output": 502, + "interpolation": "LINEAR" + }, { + "input": 503, + "output": 504, + "interpolation": "LINEAR" + }, { + "input": 505, + "output": 506, + "interpolation": "LINEAR" + }, { + "input": 507, + "output": 508, + "interpolation": "LINEAR" + }, { + "input": 509, + "output": 510, + "interpolation": "LINEAR" + }, { + "input": 511, + "output": 512, + "interpolation": "LINEAR" + }, { + "input": 513, + "output": 514, + "interpolation": "LINEAR" + }, { + "input": 515, + "output": 516, + "interpolation": "LINEAR" + }, { + "input": 517, + "output": 518, + "interpolation": "LINEAR" + }, { + "input": 519, + "output": 520, + "interpolation": "LINEAR" + }, { + "input": 521, + "output": 522, + "interpolation": "LINEAR" + }, { + "input": 523, + "output": 524, + "interpolation": "LINEAR" + }, { + "input": 525, + "output": 526, + "interpolation": "LINEAR" + }, { + "input": 527, + "output": 528, + "interpolation": "LINEAR" + }, { + "input": 529, + "output": 530, + "interpolation": "LINEAR" + }, { + "input": 531, + "output": 532, + "interpolation": "LINEAR" + }, { + "input": 533, + "output": 534, + "interpolation": "LINEAR" + }, { + "input": 535, + "output": 536, + "interpolation": "LINEAR" + }, { + "input": 537, + "output": 538, + "interpolation": "LINEAR" + }, { + "input": 539, + "output": 540, + "interpolation": "LINEAR" + }, { + "input": 541, + "output": 542, + "interpolation": "LINEAR" + }, { + "input": 543, + "output": 544, + "interpolation": "LINEAR" + }, { + "input": 545, + "output": 546, + "interpolation": "LINEAR" + }, { + "input": 547, + "output": 548, + "interpolation": "LINEAR" + }, { + "input": 549, + "output": 550, + "interpolation": "LINEAR" + }, { + "input": 551, + "output": 552, + "interpolation": "LINEAR" + }, { + "input": 553, + "output": 554, + "interpolation": "LINEAR" + }, { + "input": 555, + "output": 556, + "interpolation": "LINEAR" + }, { + "input": 557, + "output": 558, + "interpolation": "LINEAR" + }, { + "input": 559, + "output": 560, + "interpolation": "LINEAR" + }, { + "input": 561, + "output": 562, + "interpolation": "LINEAR" + }, { + "input": 563, + "output": 564, + "interpolation": "LINEAR" + }, { + "input": 565, + "output": 566, + "interpolation": "LINEAR" + }, { + "input": 567, + "output": 568, + "interpolation": "LINEAR" + }, { + "input": 569, + "output": 570, + "interpolation": "LINEAR" + }, { + "input": 571, + "output": 572, + "interpolation": "LINEAR" + }, { + "input": 573, + "output": 574, + "interpolation": "LINEAR" + }, { + "input": 575, + "output": 576, + "interpolation": "LINEAR" + }, { + "input": 577, + "output": 578, + "interpolation": "LINEAR" + }, { + "input": 579, + "output": 580, + "interpolation": "LINEAR" + }, { + "input": 581, + "output": 582, + "interpolation": "LINEAR" + }, { + "input": 583, + "output": 584, + "interpolation": "LINEAR" + }, { + "input": 585, + "output": 586, + "interpolation": "LINEAR" + }, { + "input": 587, + "output": 588, + "interpolation": "LINEAR" + }, { + "input": 589, + "output": 590, + "interpolation": "LINEAR" + }, { + "input": 591, + "output": 592, + "interpolation": "LINEAR" + }, { + "input": 593, + "output": 594, + "interpolation": "LINEAR" + }, { + "input": 595, + "output": 596, + "interpolation": "LINEAR" + }, { + "input": 597, + "output": 598, + "interpolation": "LINEAR" + }, { + "input": 599, + "output": 600, + "interpolation": "LINEAR" + }, { + "input": 601, + "output": 602, + "interpolation": "LINEAR" + }, { + "input": 603, + "output": 604, + "interpolation": "LINEAR" + }, { + "input": 605, + "output": 606, + "interpolation": "LINEAR" + }, { + "input": 607, + "output": 608, + "interpolation": "LINEAR" + }, { + "input": 609, + "output": 610, + "interpolation": "LINEAR" + }, { + "input": 611, + "output": 612, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_1_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 143, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 143, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 143, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 613, + "output": 614, + "interpolation": "LINEAR" + }, { + "input": 615, + "output": 616, + "interpolation": "LINEAR" + }, { + "input": 617, + "output": 618, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_aileron_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 276, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 276, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 276, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 275, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 275, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 275, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 619, + "output": 620, + "interpolation": "LINEAR" + }, { + "input": 621, + "output": 622, + "interpolation": "LINEAR" + }, { + "input": 623, + "output": 624, + "interpolation": "LINEAR" + }, { + "input": 625, + "output": 626, + "interpolation": "LINEAR" + }, { + "input": 627, + "output": 628, + "interpolation": "LINEAR" + }, { + "input": 629, + "output": 630, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flap_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 241, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 241, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 241, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 257, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 257, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 266, + "path": "translation" + } + }, { + "sampler": 6, + "target": { + "node": 266, + "path": "rotation" + } + }, { + "sampler": 7, + "target": { + "node": 242, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 258, + "path": "translation" + } + }, { + "sampler": 9, + "target": { + "node": 258, + "path": "rotation" + } + }, { + "sampler": 10, + "target": { + "node": 258, + "path": "scale" + } + }, { + "sampler": 11, + "target": { + "node": 267, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 631, + "output": 632, + "interpolation": "LINEAR" + }, { + "input": 633, + "output": 634, + "interpolation": "LINEAR" + }, { + "input": 635, + "output": 636, + "interpolation": "LINEAR" + }, { + "input": 637, + "output": 638, + "interpolation": "LINEAR" + }, { + "input": 639, + "output": 640, + "interpolation": "LINEAR" + }, { + "input": 641, + "output": 642, + "interpolation": "LINEAR" + }, { + "input": 643, + "output": 644, + "interpolation": "LINEAR" + }, { + "input": 645, + "output": 646, + "interpolation": "LINEAR" + }, { + "input": 647, + "output": 648, + "interpolation": "LINEAR" + }, { + "input": 649, + "output": 650, + "interpolation": "LINEAR" + }, { + "input": 651, + "output": 652, + "interpolation": "LINEAR" + }, { + "input": 653, + "output": 654, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_gear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 295, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 295, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 295, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 296, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 296, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 296, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 300, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 300, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 300, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 303, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 303, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 303, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 305, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 305, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 305, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 308, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 308, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 308, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 310, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 310, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 310, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 319, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 319, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 319, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 323, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 323, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 323, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 324, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 324, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 324, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 326, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 326, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 326, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 327, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 327, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 327, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 328, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 328, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 328, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 329, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 329, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 329, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 332, + "path": "translation" + } + }, { + "sampler": 43, + "target": { + "node": 332, + "path": "rotation" + } + }, { + "sampler": 44, + "target": { + "node": 332, + "path": "scale" + } + }, { + "sampler": 45, + "target": { + "node": 333, + "path": "translation" + } + }, { + "sampler": 46, + "target": { + "node": 333, + "path": "rotation" + } + }, { + "sampler": 47, + "target": { + "node": 333, + "path": "scale" + } + }, { + "sampler": 48, + "target": { + "node": 334, + "path": "translation" + } + }, { + "sampler": 49, + "target": { + "node": 334, + "path": "rotation" + } + }, { + "sampler": 50, + "target": { + "node": 334, + "path": "scale" + } + }, { + "sampler": 51, + "target": { + "node": 336, + "path": "translation" + } + }, { + "sampler": 52, + "target": { + "node": 336, + "path": "rotation" + } + }, { + "sampler": 53, + "target": { + "node": 336, + "path": "scale" + } + }, { + "sampler": 54, + "target": { + "node": 339, + "path": "translation" + } + }, { + "sampler": 55, + "target": { + "node": 339, + "path": "rotation" + } + }, { + "sampler": 56, + "target": { + "node": 339, + "path": "scale" + } + }, { + "sampler": 57, + "target": { + "node": 340, + "path": "translation" + } + }, { + "sampler": 58, + "target": { + "node": 340, + "path": "rotation" + } + }, { + "sampler": 59, + "target": { + "node": 340, + "path": "scale" + } + }, { + "sampler": 60, + "target": { + "node": 341, + "path": "translation" + } + }, { + "sampler": 61, + "target": { + "node": 341, + "path": "rotation" + } + }, { + "sampler": 62, + "target": { + "node": 341, + "path": "scale" + } + }, { + "sampler": 63, + "target": { + "node": 342, + "path": "translation" + } + }, { + "sampler": 64, + "target": { + "node": 342, + "path": "rotation" + } + }, { + "sampler": 65, + "target": { + "node": 342, + "path": "scale" + } + }, { + "sampler": 66, + "target": { + "node": 343, + "path": "translation" + } + }, { + "sampler": 67, + "target": { + "node": 343, + "path": "rotation" + } + }, { + "sampler": 68, + "target": { + "node": 343, + "path": "scale" + } + }, { + "sampler": 69, + "target": { + "node": 344, + "path": "translation" + } + }, { + "sampler": 70, + "target": { + "node": 344, + "path": "rotation" + } + }, { + "sampler": 71, + "target": { + "node": 344, + "path": "scale" + } + }, { + "sampler": 72, + "target": { + "node": 347, + "path": "translation" + } + }, { + "sampler": 73, + "target": { + "node": 347, + "path": "rotation" + } + }, { + "sampler": 74, + "target": { + "node": 347, + "path": "scale" + } + }, { + "sampler": 75, + "target": { + "node": 222, + "path": "translation" + } + }, { + "sampler": 76, + "target": { + "node": 222, + "path": "rotation" + } + }, { + "sampler": 77, + "target": { + "node": 222, + "path": "scale" + } + }, { + "sampler": 78, + "target": { + "node": 244, + "path": "translation" + } + }, { + "sampler": 79, + "target": { + "node": 244, + "path": "rotation" + } + }, { + "sampler": 80, + "target": { + "node": 244, + "path": "scale" + } + }, { + "sampler": 81, + "target": { + "node": 224, + "path": "translation" + } + }, { + "sampler": 82, + "target": { + "node": 224, + "path": "rotation" + } + }, { + "sampler": 83, + "target": { + "node": 224, + "path": "scale" + } + }, { + "sampler": 84, + "target": { + "node": 245, + "path": "translation" + } + }, { + "sampler": 85, + "target": { + "node": 245, + "path": "rotation" + } + }, { + "sampler": 86, + "target": { + "node": 245, + "path": "scale" + } + }, { + "sampler": 87, + "target": { + "node": 293, + "path": "translation" + } + }, { + "sampler": 88, + "target": { + "node": 293, + "path": "rotation" + } + }, { + "sampler": 89, + "target": { + "node": 293, + "path": "scale" + } + }, { + "sampler": 90, + "target": { + "node": 298, + "path": "translation" + } + }, { + "sampler": 91, + "target": { + "node": 298, + "path": "rotation" + } + }, { + "sampler": 92, + "target": { + "node": 298, + "path": "scale" + } + }, { + "sampler": 93, + "target": { + "node": 301, + "path": "translation" + } + }, { + "sampler": 94, + "target": { + "node": 301, + "path": "rotation" + } + }, { + "sampler": 95, + "target": { + "node": 301, + "path": "scale" + } + }, { + "sampler": 96, + "target": { + "node": 354, + "path": "translation" + } + }, { + "sampler": 97, + "target": { + "node": 354, + "path": "rotation" + } + }, { + "sampler": 98, + "target": { + "node": 354, + "path": "scale" + } + }, { + "sampler": 99, + "target": { + "node": 355, + "path": "translation" + } + }, { + "sampler": 100, + "target": { + "node": 355, + "path": "rotation" + } + }, { + "sampler": 101, + "target": { + "node": 355, + "path": "scale" + } + }, { + "sampler": 102, + "target": { + "node": 212, + "path": "translation" + } + }, { + "sampler": 103, + "target": { + "node": 212, + "path": "rotation" + } + }, { + "sampler": 104, + "target": { + "node": 212, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 655, + "output": 656, + "interpolation": "LINEAR" + }, { + "input": 657, + "output": 658, + "interpolation": "LINEAR" + }, { + "input": 659, + "output": 660, + "interpolation": "LINEAR" + }, { + "input": 661, + "output": 662, + "interpolation": "LINEAR" + }, { + "input": 663, + "output": 664, + "interpolation": "LINEAR" + }, { + "input": 665, + "output": 666, + "interpolation": "LINEAR" + }, { + "input": 667, + "output": 668, + "interpolation": "LINEAR" + }, { + "input": 669, + "output": 670, + "interpolation": "LINEAR" + }, { + "input": 671, + "output": 672, + "interpolation": "LINEAR" + }, { + "input": 673, + "output": 674, + "interpolation": "LINEAR" + }, { + "input": 675, + "output": 676, + "interpolation": "LINEAR" + }, { + "input": 677, + "output": 678, + "interpolation": "LINEAR" + }, { + "input": 679, + "output": 680, + "interpolation": "LINEAR" + }, { + "input": 681, + "output": 682, + "interpolation": "LINEAR" + }, { + "input": 683, + "output": 684, + "interpolation": "LINEAR" + }, { + "input": 685, + "output": 686, + "interpolation": "LINEAR" + }, { + "input": 687, + "output": 688, + "interpolation": "LINEAR" + }, { + "input": 689, + "output": 690, + "interpolation": "LINEAR" + }, { + "input": 691, + "output": 692, + "interpolation": "LINEAR" + }, { + "input": 693, + "output": 694, + "interpolation": "LINEAR" + }, { + "input": 695, + "output": 696, + "interpolation": "LINEAR" + }, { + "input": 697, + "output": 698, + "interpolation": "LINEAR" + }, { + "input": 699, + "output": 700, + "interpolation": "LINEAR" + }, { + "input": 701, + "output": 702, + "interpolation": "LINEAR" + }, { + "input": 703, + "output": 704, + "interpolation": "LINEAR" + }, { + "input": 705, + "output": 706, + "interpolation": "LINEAR" + }, { + "input": 707, + "output": 708, + "interpolation": "LINEAR" + }, { + "input": 709, + "output": 710, + "interpolation": "LINEAR" + }, { + "input": 711, + "output": 712, + "interpolation": "LINEAR" + }, { + "input": 713, + "output": 714, + "interpolation": "LINEAR" + }, { + "input": 715, + "output": 716, + "interpolation": "LINEAR" + }, { + "input": 717, + "output": 718, + "interpolation": "LINEAR" + }, { + "input": 719, + "output": 720, + "interpolation": "LINEAR" + }, { + "input": 721, + "output": 722, + "interpolation": "LINEAR" + }, { + "input": 723, + "output": 724, + "interpolation": "LINEAR" + }, { + "input": 725, + "output": 726, + "interpolation": "LINEAR" + }, { + "input": 727, + "output": 728, + "interpolation": "LINEAR" + }, { + "input": 729, + "output": 730, + "interpolation": "LINEAR" + }, { + "input": 731, + "output": 732, + "interpolation": "LINEAR" + }, { + "input": 733, + "output": 734, + "interpolation": "LINEAR" + }, { + "input": 735, + "output": 736, + "interpolation": "LINEAR" + }, { + "input": 737, + "output": 738, + "interpolation": "LINEAR" + }, { + "input": 739, + "output": 740, + "interpolation": "LINEAR" + }, { + "input": 741, + "output": 742, + "interpolation": "LINEAR" + }, { + "input": 743, + "output": 744, + "interpolation": "LINEAR" + }, { + "input": 745, + "output": 746, + "interpolation": "LINEAR" + }, { + "input": 747, + "output": 748, + "interpolation": "LINEAR" + }, { + "input": 749, + "output": 750, + "interpolation": "LINEAR" + }, { + "input": 751, + "output": 752, + "interpolation": "LINEAR" + }, { + "input": 753, + "output": 754, + "interpolation": "LINEAR" + }, { + "input": 755, + "output": 756, + "interpolation": "LINEAR" + }, { + "input": 757, + "output": 758, + "interpolation": "LINEAR" + }, { + "input": 759, + "output": 760, + "interpolation": "LINEAR" + }, { + "input": 761, + "output": 762, + "interpolation": "LINEAR" + }, { + "input": 763, + "output": 764, + "interpolation": "LINEAR" + }, { + "input": 765, + "output": 766, + "interpolation": "LINEAR" + }, { + "input": 767, + "output": 768, + "interpolation": "LINEAR" + }, { + "input": 769, + "output": 770, + "interpolation": "LINEAR" + }, { + "input": 771, + "output": 772, + "interpolation": "LINEAR" + }, { + "input": 773, + "output": 774, + "interpolation": "LINEAR" + }, { + "input": 775, + "output": 776, + "interpolation": "LINEAR" + }, { + "input": 777, + "output": 778, + "interpolation": "LINEAR" + }, { + "input": 779, + "output": 780, + "interpolation": "LINEAR" + }, { + "input": 781, + "output": 782, + "interpolation": "LINEAR" + }, { + "input": 783, + "output": 784, + "interpolation": "LINEAR" + }, { + "input": 785, + "output": 786, + "interpolation": "LINEAR" + }, { + "input": 787, + "output": 788, + "interpolation": "LINEAR" + }, { + "input": 789, + "output": 790, + "interpolation": "LINEAR" + }, { + "input": 791, + "output": 792, + "interpolation": "LINEAR" + }, { + "input": 793, + "output": 794, + "interpolation": "LINEAR" + }, { + "input": 795, + "output": 796, + "interpolation": "LINEAR" + }, { + "input": 797, + "output": 798, + "interpolation": "LINEAR" + }, { + "input": 799, + "output": 800, + "interpolation": "LINEAR" + }, { + "input": 801, + "output": 802, + "interpolation": "LINEAR" + }, { + "input": 803, + "output": 804, + "interpolation": "LINEAR" + }, { + "input": 805, + "output": 806, + "interpolation": "LINEAR" + }, { + "input": 807, + "output": 808, + "interpolation": "LINEAR" + }, { + "input": 809, + "output": 810, + "interpolation": "LINEAR" + }, { + "input": 811, + "output": 812, + "interpolation": "LINEAR" + }, { + "input": 813, + "output": 814, + "interpolation": "LINEAR" + }, { + "input": 815, + "output": 816, + "interpolation": "LINEAR" + }, { + "input": 817, + "output": 818, + "interpolation": "LINEAR" + }, { + "input": 819, + "output": 820, + "interpolation": "LINEAR" + }, { + "input": 821, + "output": 822, + "interpolation": "LINEAR" + }, { + "input": 823, + "output": 824, + "interpolation": "LINEAR" + }, { + "input": 825, + "output": 826, + "interpolation": "LINEAR" + }, { + "input": 827, + "output": 828, + "interpolation": "LINEAR" + }, { + "input": 829, + "output": 830, + "interpolation": "LINEAR" + }, { + "input": 831, + "output": 832, + "interpolation": "LINEAR" + }, { + "input": 833, + "output": 834, + "interpolation": "LINEAR" + }, { + "input": 835, + "output": 836, + "interpolation": "LINEAR" + }, { + "input": 837, + "output": 838, + "interpolation": "LINEAR" + }, { + "input": 839, + "output": 840, + "interpolation": "LINEAR" + }, { + "input": 841, + "output": 842, + "interpolation": "LINEAR" + }, { + "input": 843, + "output": 844, + "interpolation": "LINEAR" + }, { + "input": 845, + "output": 846, + "interpolation": "LINEAR" + }, { + "input": 847, + "output": 848, + "interpolation": "LINEAR" + }, { + "input": 849, + "output": 850, + "interpolation": "LINEAR" + }, { + "input": 851, + "output": 852, + "interpolation": "LINEAR" + }, { + "input": 853, + "output": 854, + "interpolation": "LINEAR" + }, { + "input": 855, + "output": 856, + "interpolation": "LINEAR" + }, { + "input": 857, + "output": 858, + "interpolation": "LINEAR" + }, { + "input": 859, + "output": 860, + "interpolation": "LINEAR" + }, { + "input": 861, + "output": 862, + "interpolation": "LINEAR" + }, { + "input": 863, + "output": 864, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_spoiler_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 247, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 247, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 247, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 248, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 248, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 248, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 249, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 249, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 249, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 250, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 250, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 250, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 251, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 251, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 251, + "path": "scale" + } + }, { + "sampler": 15, + "target": { + "node": 252, + "path": "translation" + } + }, { + "sampler": 16, + "target": { + "node": 252, + "path": "rotation" + } + }, { + "sampler": 17, + "target": { + "node": 252, + "path": "scale" + } + }, { + "sampler": 18, + "target": { + "node": 253, + "path": "translation" + } + }, { + "sampler": 19, + "target": { + "node": 253, + "path": "rotation" + } + }, { + "sampler": 20, + "target": { + "node": 253, + "path": "scale" + } + }, { + "sampler": 21, + "target": { + "node": 254, + "path": "translation" + } + }, { + "sampler": 22, + "target": { + "node": 254, + "path": "rotation" + } + }, { + "sampler": 23, + "target": { + "node": 254, + "path": "scale" + } + }, { + "sampler": 24, + "target": { + "node": 255, + "path": "translation" + } + }, { + "sampler": 25, + "target": { + "node": 255, + "path": "rotation" + } + }, { + "sampler": 26, + "target": { + "node": 255, + "path": "scale" + } + }, { + "sampler": 27, + "target": { + "node": 282, + "path": "translation" + } + }, { + "sampler": 28, + "target": { + "node": 282, + "path": "rotation" + } + }, { + "sampler": 29, + "target": { + "node": 282, + "path": "scale" + } + }, { + "sampler": 30, + "target": { + "node": 284, + "path": "translation" + } + }, { + "sampler": 31, + "target": { + "node": 284, + "path": "rotation" + } + }, { + "sampler": 32, + "target": { + "node": 284, + "path": "scale" + } + }, { + "sampler": 33, + "target": { + "node": 285, + "path": "translation" + } + }, { + "sampler": 34, + "target": { + "node": 285, + "path": "rotation" + } + }, { + "sampler": 35, + "target": { + "node": 285, + "path": "scale" + } + }, { + "sampler": 36, + "target": { + "node": 286, + "path": "translation" + } + }, { + "sampler": 37, + "target": { + "node": 286, + "path": "rotation" + } + }, { + "sampler": 38, + "target": { + "node": 286, + "path": "scale" + } + }, { + "sampler": 39, + "target": { + "node": 290, + "path": "translation" + } + }, { + "sampler": 40, + "target": { + "node": 290, + "path": "rotation" + } + }, { + "sampler": 41, + "target": { + "node": 290, + "path": "scale" + } + }, { + "sampler": 42, + "target": { + "node": 264, + "path": "rotation" + } + }, { + "sampler": 43, + "target": { + "node": 259, + "path": "translation" + } + }, { + "sampler": 44, + "target": { + "node": 259, + "path": "rotation" + } + }, { + "sampler": 45, + "target": { + "node": 271, + "path": "rotation" + } + }, { + "sampler": 46, + "target": { + "node": 268, + "path": "translation" + } + }, { + "sampler": 47, + "target": { + "node": 268, + "path": "rotation" + } + }, { + "sampler": 48, + "target": { + "node": 272, + "path": "rotation" + } + }, { + "sampler": 49, + "target": { + "node": 269, + "path": "translation" + } + }, { + "sampler": 50, + "target": { + "node": 269, + "path": "rotation" + } + }, { + "sampler": 51, + "target": { + "node": 273, + "path": "rotation" + } + }, { + "sampler": 52, + "target": { + "node": 270, + "path": "translation" + } + }, { + "sampler": 53, + "target": { + "node": 270, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 865, + "output": 866, + "interpolation": "LINEAR" + }, { + "input": 867, + "output": 868, + "interpolation": "LINEAR" + }, { + "input": 869, + "output": 870, + "interpolation": "LINEAR" + }, { + "input": 871, + "output": 872, + "interpolation": "LINEAR" + }, { + "input": 873, + "output": 874, + "interpolation": "LINEAR" + }, { + "input": 875, + "output": 876, + "interpolation": "LINEAR" + }, { + "input": 877, + "output": 878, + "interpolation": "LINEAR" + }, { + "input": 879, + "output": 880, + "interpolation": "LINEAR" + }, { + "input": 881, + "output": 882, + "interpolation": "LINEAR" + }, { + "input": 883, + "output": 884, + "interpolation": "LINEAR" + }, { + "input": 885, + "output": 886, + "interpolation": "LINEAR" + }, { + "input": 887, + "output": 888, + "interpolation": "LINEAR" + }, { + "input": 889, + "output": 890, + "interpolation": "LINEAR" + }, { + "input": 891, + "output": 892, + "interpolation": "LINEAR" + }, { + "input": 893, + "output": 894, + "interpolation": "LINEAR" + }, { + "input": 895, + "output": 896, + "interpolation": "LINEAR" + }, { + "input": 897, + "output": 898, + "interpolation": "LINEAR" + }, { + "input": 899, + "output": 900, + "interpolation": "LINEAR" + }, { + "input": 901, + "output": 902, + "interpolation": "LINEAR" + }, { + "input": 903, + "output": 904, + "interpolation": "LINEAR" + }, { + "input": 905, + "output": 906, + "interpolation": "LINEAR" + }, { + "input": 907, + "output": 908, + "interpolation": "LINEAR" + }, { + "input": 909, + "output": 910, + "interpolation": "LINEAR" + }, { + "input": 911, + "output": 912, + "interpolation": "LINEAR" + }, { + "input": 913, + "output": 914, + "interpolation": "LINEAR" + }, { + "input": 915, + "output": 916, + "interpolation": "LINEAR" + }, { + "input": 917, + "output": 918, + "interpolation": "LINEAR" + }, { + "input": 919, + "output": 920, + "interpolation": "LINEAR" + }, { + "input": 921, + "output": 922, + "interpolation": "LINEAR" + }, { + "input": 923, + "output": 924, + "interpolation": "LINEAR" + }, { + "input": 925, + "output": 926, + "interpolation": "LINEAR" + }, { + "input": 927, + "output": 928, + "interpolation": "LINEAR" + }, { + "input": 929, + "output": 930, + "interpolation": "LINEAR" + }, { + "input": 931, + "output": 932, + "interpolation": "LINEAR" + }, { + "input": 933, + "output": 934, + "interpolation": "LINEAR" + }, { + "input": 935, + "output": 936, + "interpolation": "LINEAR" + }, { + "input": 937, + "output": 938, + "interpolation": "LINEAR" + }, { + "input": 939, + "output": 940, + "interpolation": "LINEAR" + }, { + "input": 941, + "output": 942, + "interpolation": "LINEAR" + }, { + "input": 943, + "output": 944, + "interpolation": "LINEAR" + }, { + "input": 945, + "output": 946, + "interpolation": "LINEAR" + }, { + "input": 947, + "output": 948, + "interpolation": "LINEAR" + }, { + "input": 949, + "output": 950, + "interpolation": "LINEAR" + }, { + "input": 951, + "output": 952, + "interpolation": "LINEAR" + }, { + "input": 953, + "output": 954, + "interpolation": "LINEAR" + }, { + "input": 955, + "output": 956, + "interpolation": "LINEAR" + }, { + "input": 957, + "output": 958, + "interpolation": "LINEAR" + }, { + "input": 959, + "output": 960, + "interpolation": "LINEAR" + }, { + "input": 961, + "output": 962, + "interpolation": "LINEAR" + }, { + "input": 963, + "output": 964, + "interpolation": "LINEAR" + }, { + "input": 965, + "output": 966, + "interpolation": "LINEAR" + }, { + "input": 967, + "output": 968, + "interpolation": "LINEAR" + }, { + "input": 969, + "output": 970, + "interpolation": "LINEAR" + }, { + "input": 971, + "output": 972, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_tire_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 312, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 312, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 312, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 315, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 315, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 315, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 973, + "output": 974, + "interpolation": "LINEAR" + }, { + "input": 975, + "output": 976, + "interpolation": "LINEAR" + }, { + "input": 977, + "output": 978, + "interpolation": "LINEAR" + }, { + "input": 979, + "output": 980, + "interpolation": "LINEAR" + }, { + "input": 981, + "output": 982, + "interpolation": "LINEAR" + }, { + "input": 983, + "output": 984, + "interpolation": "LINEAR" + } + ] + }, { + "name": "thrust_rev_2", + "channels": [ + { + "sampler": 0, + "target": { + "node": 227, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 227, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 227, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 985, + "output": 986, + "interpolation": "LINEAR" + }, { + "input": 987, + "output": 988, + "interpolation": "LINEAR" + }, { + "input": 989, + "output": 990, + "interpolation": "LINEAR" + } + ] + }, { + "name": "N1_2_Anim", + "channels": [ + { + "sampler": 0, + "target": { + "node": 230, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 230, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 230, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 991, + "output": 992, + "interpolation": "LINEAR" + }, { + "input": 993, + "output": 994, + "interpolation": "LINEAR" + }, { + "input": 995, + "output": 996, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 260, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 260, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 260, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 261, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 261, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 261, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 288, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 288, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 288, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 263, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 263, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 263, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 997, + "output": 998, + "interpolation": "LINEAR" + }, { + "input": 999, + "output": 1000, + "interpolation": "LINEAR" + }, { + "input": 1001, + "output": 1002, + "interpolation": "LINEAR" + }, { + "input": 1003, + "output": 1004, + "interpolation": "LINEAR" + }, { + "input": 1005, + "output": 1006, + "interpolation": "LINEAR" + }, { + "input": 1007, + "output": 1008, + "interpolation": "LINEAR" + }, { + "input": 1009, + "output": 1010, + "interpolation": "LINEAR" + }, { + "input": 1011, + "output": 1012, + "interpolation": "LINEAR" + }, { + "input": 1013, + "output": 1014, + "interpolation": "LINEAR" + }, { + "input": 1015, + "output": 1016, + "interpolation": "LINEAR" + }, { + "input": 1017, + "output": 1018, + "interpolation": "LINEAR" + }, { + "input": 1019, + "output": 1020, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_flaperon_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 59, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 59, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 59, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 60, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 60, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 60, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 62, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 62, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 62, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 57, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 57, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 57, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1021, + "output": 1022, + "interpolation": "LINEAR" + }, { + "input": 1023, + "output": 1024, + "interpolation": "LINEAR" + }, { + "input": 1025, + "output": 1026, + "interpolation": "LINEAR" + }, { + "input": 1027, + "output": 1028, + "interpolation": "LINEAR" + }, { + "input": 1029, + "output": 1030, + "interpolation": "LINEAR" + }, { + "input": 1031, + "output": 1032, + "interpolation": "LINEAR" + }, { + "input": 1033, + "output": 1034, + "interpolation": "LINEAR" + }, { + "input": 1035, + "output": 1036, + "interpolation": "LINEAR" + }, { + "input": 1037, + "output": 1038, + "interpolation": "LINEAR" + }, { + "input": 1039, + "output": 1040, + "interpolation": "LINEAR" + }, { + "input": 1041, + "output": 1042, + "interpolation": "LINEAR" + }, { + "input": 1043, + "output": 1044, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_cargo", + "channels": [ + { + "sampler": 0, + "target": { + "node": 370, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 376, + "path": "translation" + } + }, { + "sampler": 2, + "target": { + "node": 376, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 376, + "path": "scale" + } + }, { + "sampler": 4, + "target": { + "node": 373, + "path": "translation" + } + }, { + "sampler": 5, + "target": { + "node": 373, + "path": "rotation" + } + }, { + "sampler": 6, + "target": { + "node": 373, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1045, + "output": 1046, + "interpolation": "LINEAR" + }, { + "input": 1047, + "output": 1048, + "interpolation": "LINEAR" + }, { + "input": 1049, + "output": 1050, + "interpolation": "LINEAR" + }, { + "input": 1051, + "output": 1052, + "interpolation": "LINEAR" + }, { + "input": 1053, + "output": 1054, + "interpolation": "LINEAR" + }, { + "input": 1055, + "output": 1056, + "interpolation": "LINEAR" + }, { + "input": 1057, + "output": 1058, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_passenger", + "channels": [ + { + "sampler": 0, + "target": { + "node": 380, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 385, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1059, + "output": 1060, + "interpolation": "LINEAR" + }, { + "input": 1061, + "output": 1062, + "interpolation": "LINEAR" + } + ] + }, { + "name": "door_rear", + "channels": [ + { + "sampler": 0, + "target": { + "node": 367, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 362, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 1063, + "output": 1064, + "interpolation": "LINEAR" + }, { + "input": 1065, + "output": 1066, + "interpolation": "LINEAR" + } + ] + }, { + "name": "HANDLING_Wipers", + "channels": [ + { + "sampler": 0, + "target": { + "node": 388, + "path": "rotation" + } + }, { + "sampler": 1, + "target": { + "node": 389, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 390, + "path": "rotation" + } + }, { + "sampler": 3, + "target": { + "node": 391, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 1067, + "output": 1068, + "interpolation": "LINEAR" + }, { + "input": 1069, + "output": 1070, + "interpolation": "LINEAR" + }, { + "input": 1071, + "output": 1072, + "interpolation": "LINEAR" + }, { + "input": 1073, + "output": 1074, + "interpolation": "LINEAR" + } + ] + }, { + "name": "l_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 66, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 66, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 66, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 65, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 65, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 65, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 52, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 52, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 52, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 40, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 40, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 40, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 36, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 36, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 36, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1075, + "output": 1076, + "interpolation": "LINEAR" + }, { + "input": 1077, + "output": 1078, + "interpolation": "LINEAR" + }, { + "input": 1079, + "output": 1080, + "interpolation": "LINEAR" + }, { + "input": 1081, + "output": 1082, + "interpolation": "LINEAR" + }, { + "input": 1083, + "output": 1084, + "interpolation": "LINEAR" + }, { + "input": 1085, + "output": 1086, + "interpolation": "LINEAR" + }, { + "input": 1087, + "output": 1088, + "interpolation": "LINEAR" + }, { + "input": 1089, + "output": 1090, + "interpolation": "LINEAR" + }, { + "input": 1091, + "output": 1092, + "interpolation": "LINEAR" + }, { + "input": 1093, + "output": 1094, + "interpolation": "LINEAR" + }, { + "input": 1095, + "output": 1096, + "interpolation": "LINEAR" + }, { + "input": 1097, + "output": 1098, + "interpolation": "LINEAR" + }, { + "input": 1099, + "output": 1100, + "interpolation": "LINEAR" + }, { + "input": 1101, + "output": 1102, + "interpolation": "LINEAR" + }, { + "input": 1103, + "output": 1104, + "interpolation": "LINEAR" + } + ] + }, { + "name": "r_slats_percent_key", + "channels": [ + { + "sampler": 0, + "target": { + "node": 238, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 238, + "path": "rotation" + } + }, { + "sampler": 2, + "target": { + "node": 238, + "path": "scale" + } + }, { + "sampler": 3, + "target": { + "node": 292, + "path": "translation" + } + }, { + "sampler": 4, + "target": { + "node": 292, + "path": "rotation" + } + }, { + "sampler": 5, + "target": { + "node": 292, + "path": "scale" + } + }, { + "sampler": 6, + "target": { + "node": 287, + "path": "translation" + } + }, { + "sampler": 7, + "target": { + "node": 287, + "path": "rotation" + } + }, { + "sampler": 8, + "target": { + "node": 287, + "path": "scale" + } + }, { + "sampler": 9, + "target": { + "node": 283, + "path": "translation" + } + }, { + "sampler": 10, + "target": { + "node": 283, + "path": "rotation" + } + }, { + "sampler": 11, + "target": { + "node": 283, + "path": "scale" + } + }, { + "sampler": 12, + "target": { + "node": 281, + "path": "translation" + } + }, { + "sampler": 13, + "target": { + "node": 281, + "path": "rotation" + } + }, { + "sampler": 14, + "target": { + "node": 281, + "path": "scale" + } + } + ], + "samplers": [ + { + "input": 1105, + "output": 1106, + "interpolation": "LINEAR" + }, { + "input": 1107, + "output": 1108, + "interpolation": "LINEAR" + }, { + "input": 1109, + "output": 1110, + "interpolation": "LINEAR" + }, { + "input": 1111, + "output": 1112, + "interpolation": "LINEAR" + }, { + "input": 1113, + "output": 1114, + "interpolation": "LINEAR" + }, { + "input": 1115, + "output": 1116, + "interpolation": "LINEAR" + }, { + "input": 1117, + "output": 1118, + "interpolation": "LINEAR" + }, { + "input": 1119, + "output": 1120, + "interpolation": "LINEAR" + }, { + "input": 1121, + "output": 1122, + "interpolation": "LINEAR" + }, { + "input": 1123, + "output": 1124, + "interpolation": "LINEAR" + }, { + "input": 1125, + "output": 1126, + "interpolation": "LINEAR" + }, { + "input": 1127, + "output": 1128, + "interpolation": "LINEAR" + }, { + "input": 1129, + "output": 1130, + "interpolation": "LINEAR" + }, { + "input": 1131, + "output": 1132, + "interpolation": "LINEAR" + }, { + "input": 1133, + "output": 1134, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Rudder_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 432, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 432, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2726, + "output": 2727, + "interpolation": "LINEAR" + }, { + "input": 2726, + "output": 2728, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_Left_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 433, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 433, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2729, + "output": 2730, + "interpolation": "LINEAR" + }, { + "input": 2729, + "output": 2731, + "interpolation": "LINEAR" + } + ] + }, { + "name": "C_Door_02_right_LIVERYDECALS", + "channels": [ + { + "sampler": 0, + "target": { + "node": 434, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 434, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2729, + "output": 2732, + "interpolation": "LINEAR" + }, { + "input": 2729, + "output": 2733, + "interpolation": "LINEAR" + } + ] + }, { + "name": "DoorB_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 435, + "path": "translation" + } + } + ], + "samplers": [ + { + "input": 2726, + "output": 2734, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_left_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 437, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2729, + "output": 2735, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Door01_right_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 438, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2729, + "output": 2736, + "interpolation": "LINEAR" + } + ] + }, { + "name": "Cargo_Door_LIVERYDECAL", + "channels": [ + { + "sampler": 0, + "target": { + "node": 440, + "path": "translation" + } + }, { + "sampler": 1, + "target": { + "node": 440, + "path": "rotation" + } + } + ], + "samplers": [ + { + "input": 2726, + "output": 2737, + "interpolation": "LINEAR" + }, { + "input": 2726, + "output": 2738, + "interpolation": "LINEAR" + } + ] + } + ], + "asset": { + "generator": "babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344", + "version": "2.0", + "extensions": { + "ASOBO_asset_optimized": { + "BoundingBoxMax": [ + 257.1712951660156, 493.95538330078125, 402.8728942871094 + ], + "BoundingBoxMin": [ + -30.119264602661133, -483.62359619140625, -325.6440124511719 + ], + "MajorVersion": 4, + "MinorVersion": 4, + "UseCheckerboardMaterialForMissingTextures": true + }, + "ASOBO_normal_map_convention": { + "tangent_space_convention": "DirectX" + } + } + }, + "bufferViews": [ + { + "buffer": 0, + "byteLength": 11200, + "name": "bufferViewFloatMat4" + }, { + "buffer": 0, + "byteLength": 335052, + "byteOffset": 11200, + "name": "bufferViewAnimationFloatScalar" + }, { + "buffer": 0, + "byteLength": 649848, + "byteOffset": 346252, + "name": "bufferViewAnimationFloatVec3" + }, { + "buffer": 0, + "byteLength": 473744, + "byteOffset": 996100, + "name": "bufferViewAnimationFloatVec4" + }, { + "buffer": 0, + "byteLength": 9633060, + "byteStride": 36, + "byteOffset": 1469844, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 1687740, + "byteOffset": 11102904, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 2860032, + "byteStride": 48, + "byteOffset": 12790644, + "target": 34962, + "name": "BufferViewVertex4Blend" + }, { + "buffer": 0, + "byteLength": 14344, + "byteStride": 44, + "byteOffset": 15650676, + "target": 34962, + "name": "BufferViewVertex1Blend" + }, { + "buffer": 0, + "byteLength": 159636, + "byteOffset": 15665020, + "target": 34963, + "name": "BufferViewIndex" + }, { + "buffer": 0, + "byteLength": 845424, + "byteStride": 36, + "byteOffset": 15824656, + "target": 34962, + "name": "BufferViewVertexND" + }, { + "buffer": 0, + "byteLength": 324, + "byteOffset": 16670080 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 16670404 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 16671376 + }, { + "buffer": 0, + "byteLength": 644, + "byteOffset": 16672672 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 16673316 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 16675248 + }, { + "buffer": 0, + "byteLength": 1932, + "byteOffset": 16677824 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 16679756 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 16682332 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 16683304 + }, { + "buffer": 0, + "byteLength": 2576, + "byteOffset": 16685880 + }, { + "buffer": 0, + "byteLength": 972, + "byteOffset": 16688456 + }, { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 16689428 + } + ], + "extensionsRequired": ["MSFT_texture_dds"], + "materials": [ + { + "name": "TAIL", + "normalTexture": { + "index": 2 + }, + "occlusionTexture": { + "index": 1 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 0 + }, + "metallicRoughnessTexture": { + "index": 1 + } + } + }, { + "name": "Livery_KLM", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 3 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "FUSELAGE1", + "normalTexture": { + "index": 6 + }, + "occlusionTexture": { + "index": 5 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 4 + }, + "metallicRoughnessTexture": { + "index": 5 + } + } + }, { + "name": "LIVERY1", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 7 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "Livery_KLM2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 8 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "WINDSHIELD", + "alphaMode": "BLEND", + "occlusionTexture": { + "index": 9 + }, + "emissiveTexture": { + "index": 10 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.623529434, 0.623529434, 0.623529434, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0, + "metallicRoughnessTexture": { + "index": 9 + } + }, + "extensions": { + "ASOBO_material_detail_map": { + "UVScale": 2, + "detailColorTexture": { + "index": 11 + }, + "detailNormalTexture": { + "index": 12 + } + } + }, + "extras": { + "ASOBO_material_code": "Windshield" + } + }, { + "name": "LIGHTS", + "occlusionTexture": { + "index": 13 + }, + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.9, 0.9, 0.9, 1 + ], + "metallicRoughnessTexture": { + "index": 13 + } + } + }, { + "name": "FROST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 16, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 15 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 14 + }, + "metallicRoughnessTexture": { + "index": 15 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "FROST_BLAST", + "alphaMode": "BLEND", + "normalTexture": { + "index": 19, + "scale": 0.84 + }, + "occlusionTexture": { + "index": 18 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0.94, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 17 + }, + "metallicRoughnessTexture": { + "index": 18 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0.99, + "metallicBlendFactor": 0.99, + "normalBlendFactor": 0.81, + "roughnessBlendFactor": 0.99 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 50 + } + }, + "extras": { + "ASOBO_material_code": "GeoDecalFrosted" + } + }, { + "name": "WINGS", + "normalTexture": { + "index": 22 + }, + "occlusionTexture": { + "index": 21 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 20 + }, + "metallicRoughnessTexture": { + "index": 21 + } + } + }, { + "name": "REARGEAR", + "normalTexture": { + "index": 25 + }, + "occlusionTexture": { + "index": 24 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 23 + }, + "metallicRoughnessTexture": { + "index": 24 + } + } + }, { + "name": "TIRE", + "normalTexture": { + "index": 28 + }, + "occlusionTexture": { + "index": 27 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 26 + }, + "metallicRoughnessTexture": { + "index": 27 + } + } + }, { + "name": "TIREBLUR", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.5, + "baseColorTexture": { + "index": 29 + } + } + }, { + "name": "DECALS2", + "alphaMode": "BLEND", + "normalTexture": { + "index": 31 + }, + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.3, + "baseColorTexture": { + "index": 30 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 15 + } + } + }, { + "name": "ENGSTILL", + "occlusionTexture": { + "index": 33 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 32 + }, + "metallicRoughnessTexture": { + "index": 33 + } + } + }, { + "name": "ENGSLOW", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 34 + } + } + }, { + "name": "ENGBLUR", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, 1, 1, 0.95 + ], + "metallicFactor": 0, + "roughnessFactor": 0.25, + "baseColorTexture": { + "index": 35 + } + } + }, { + "name": "ENGINE", + "normalTexture": { + "index": 38 + }, + "occlusionTexture": { + "index": 37 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 36 + }, + "metallicRoughnessTexture": { + "index": 37 + } + } + }, { + "name": "DECALS1", + "alphaMode": "BLEND", + "normalTexture": { + "index": 41, + "scale": 0.5 + }, + "occlusionTexture": { + "index": 40 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 39 + }, + "metallicRoughnessTexture": { + "index": 40 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "baseColorBlendFactor": 0, + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "occlusionBlendFactor": 0, + "roughnessBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 16 + } + } + }, { + "name": "Generic_LOD5", + "occlusionTexture": { + "index": 43 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 42 + }, + "metallicRoughnessTexture": { + "index": 43 + } + } + }, { + "name": "UNDERCARRIAGE", + "normalTexture": { + "index": 46 + }, + "occlusionTexture": { + "index": 45 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 44 + }, + "metallicRoughnessTexture": { + "index": 45 + } + } + }, { + "name": "FUSELAGE2", + "normalTexture": { + "index": 49 + }, + "occlusionTexture": { + "index": 48 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 47 + }, + "metallicRoughnessTexture": { + "index": 48 + } + } + }, { + "name": "FRONTGEAR", + "normalTexture": { + "index": 52 + }, + "occlusionTexture": { + "index": 51 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 50 + }, + "metallicRoughnessTexture": { + "index": 51 + } + } + }, { + "name": "GLASS", + "alphaCutoff": 0.01, + "alphaMode": "MASK", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.66906476, 0.66906476, 0.66906476, 0.01 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + } + }, { + "name": "LIVERY1_3", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 53 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 5 + } + } + }, { + "name": "HANDLE", + "normalTexture": { + "index": 56 + }, + "occlusionTexture": { + "index": 55 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 54 + }, + "metallicRoughnessTexture": { + "index": 55 + } + } + }, { + "name": "Passenger_Door", + "normalTexture": { + "index": 59 + }, + "occlusionTexture": { + "index": 58 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 57 + }, + "metallicRoughnessTexture": { + "index": 58 + } + } + }, { + "name": "HUBLOT", + "normalTexture": { + "index": 62 + }, + "occlusionTexture": { + "index": 61 + }, + "emissiveTexture": { + "index": 63 + }, + "emissiveFactor": [ + 0.48201438784599304, 0.48171502351760864, 0.4404016137123108 + ], + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 60 + }, + "metallicRoughnessTexture": { + "index": 61 + } + }, + "extensions": { + "ASOBO_material_draw_order": { + "drawOrderOffset": 11 + } + }, + "extras": { + "ASOBO_material_code": "Porthole" + } + }, { + "name": "Cargo_Door", + "normalTexture": { + "index": 66 + }, + "occlusionTexture": { + "index": 65 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 64 + }, + "metallicRoughnessTexture": { + "index": 65 + } + } + }, { + "name": "Cargo_Soute", + "normalTexture": { + "index": 69 + }, + "occlusionTexture": { + "index": 68 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 67 + }, + "metallicRoughnessTexture": { + "index": 68 + } + } + }, { + "name": "RegistrationNumber", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.8, 0.8, 0.8, 1 + ], + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 8 + } + } + }, { + "name": "RegistrationNumber2", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0 + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "metallicBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + } + } + }, { + "name": "LIVERYDECALS", + "alphaMode": "BLEND", + "pbrMetallicRoughness": { + "metallicFactor": 0, + "roughnessFactor": 0.05, + "baseColorTexture": { + "index": 70 + } + }, + "extensions": { + "ASOBO_material_blend_gbuffer": { + "emissiveBlendFactor": 0, + "normalBlendFactor": 0, + "occlusionBlendFactor": 0 + }, + "ASOBO_material_draw_order": { + "drawOrderOffset": 1 + } + } + }, { + "name": "ENGINE0", + "normalTexture": { + "index": 38 + }, + "occlusionTexture": { + "index": 37 + }, + "pbrMetallicRoughness": { + "baseColorTexture": { + "index": 71 + }, + "metallicRoughnessTexture": { + "index": 37 + } + } + } + ], + "meshes": [ + { + "primitives": [ + { + "attributes": { + "COLOR_0": 1140, + "NORMAL": 1137, + "POSITION": 1135, + "TANGENT": 1136, + "TEXCOORD_0": 1138, + "TEXCOORD_1": 1139 + }, + "indices": 1141, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1078, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Rudder_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1147, + "NORMAL": 1144, + "POSITION": 1142, + "TANGENT": 1143, + "TEXCOORD_0": 1145, + "TEXCOORD_1": 1146 + }, + "indices": 1148, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 43, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "X2_Livery_KLM_Ruder" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1154, + "NORMAL": 1151, + "POSITION": 1149, + "TANGENT": 1150, + "TEXCOORD_0": 1152, + "TEXCOORD_1": 1153 + }, + "indices": 1155, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1154, + "NORMAL": 1151, + "POSITION": 1149, + "TANGENT": 1150, + "TEXCOORD_0": 1152, + "TEXCOORD_1": 1153 + }, + "indices": 1155, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 2880, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1161, + "NORMAL": 1158, + "POSITION": 1156, + "TANGENT": 1157, + "TEXCOORD_0": 1159, + "TEXCOORD_1": 1160 + }, + "indices": 1162, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_RGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1168, + "NORMAL": 1165, + "POSITION": 1163, + "TANGENT": 1164, + "TEXCOORD_0": 1166, + "TEXCOORD_1": 1167 + }, + "indices": 1169, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_3_hydraulic01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1175, + "NORMAL": 1172, + "POSITION": 1170, + "TANGENT": 1171, + "TEXCOORD_0": 1173, + "TEXCOORD_1": 1174 + }, + "indices": 1176, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1234, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1182, + "NORMAL": 1179, + "POSITION": 1177, + "TANGENT": 1178, + "TEXCOORD_0": 1180, + "TEXCOORD_1": 1181 + }, + "indices": 1183, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1182, + "NORMAL": 1179, + "POSITION": 1177, + "TANGENT": 1178, + "TEXCOORD_0": 1180, + "TEXCOORD_1": 1181 + }, + "indices": 1183, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 3780, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1189, + "NORMAL": 1186, + "POSITION": 1184, + "TANGENT": 1185, + "TEXCOORD_0": 1187, + "TEXCOORD_1": 1188 + }, + "indices": 1190, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_LGDoor" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1196, + "NORMAL": 1193, + "POSITION": 1191, + "TANGENT": 1192, + "TEXCOORD_0": 1194, + "TEXCOORD_1": 1195 + }, + "indices": 1197, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 254, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_03_hydraulic01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1203, + "NORMAL": 1200, + "POSITION": 1198, + "TANGENT": 1199, + "TEXCOORD_0": 1201, + "TEXCOORD_1": 1202 + }, + "indices": 1204, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1234, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_C_Door_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1210, + "NORMAL": 1207, + "POSITION": 1205, + "TANGENT": 1206, + "TEXCOORD_0": 1208, + "TEXCOORD_1": 1209 + }, + "indices": 1211, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 868, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1217, + "NORMAL": 1214, + "POSITION": 1212, + "TANGENT": 1213, + "TEXCOORD_0": 1215, + "TEXCOORD_1": 1216 + }, + "indices": 1218, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 642, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Trim_Elevator_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1224, + "NORMAL": 1221, + "POSITION": 1219, + "TANGENT": 1220, + "TEXCOORD_0": 1222, + "TEXCOORD_1": 1223 + }, + "indices": 1225, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1224, + "NORMAL": 1221, + "POSITION": 1219, + "TANGENT": 1220, + "TEXCOORD_0": 1222, + "TEXCOORD_1": 1223 + }, + "indices": 1225, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1231, + "NORMAL": 1228, + "POSITION": 1226, + "TANGENT": 1227, + "TEXCOORD_0": 1229, + "TEXCOORD_1": 1230 + }, + "indices": 1232, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1231, + "NORMAL": 1228, + "POSITION": 1226, + "TANGENT": 1227, + "TEXCOORD_0": 1229, + "TEXCOORD_1": 1230 + }, + "indices": 1232, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1238, + "NORMAL": 1235, + "POSITION": 1233, + "TANGENT": 1234, + "TEXCOORD_0": 1236, + "TEXCOORD_1": 1237 + }, + "indices": 1239, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 226, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_ElevatorTrimL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1245, + "NORMAL": 1242, + "POSITION": 1240, + "TANGENT": 1241, + "TEXCOORD_0": 1243, + "TEXCOORD_1": 1244 + }, + "indices": 1246, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1252, + "NORMAL": 1249, + "POSITION": 1247, + "TANGENT": 1248, + "TEXCOORD_0": 1250, + "TEXCOORD_1": 1251 + }, + "indices": 1253, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1259, + "NORMAL": 1256, + "POSITION": 1254, + "TANGENT": 1255, + "TEXCOORD_0": 1257, + "TEXCOORD_1": 1258 + }, + "indices": 1260, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2332, + "JOINTS_0": 2330, + "NORMAL": 2327, + "POSITION": 2325, + "TANGENT": 2326, + "TEXCOORD_0": 2328, + "TEXCOORD_1": 2329, + "WEIGHTS_0": 2331 + }, + "indices": 2333, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1418, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_2_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1266, + "NORMAL": 1263, + "POSITION": 1261, + "TANGENT": 1262, + "TEXCOORD_0": 1264, + "TEXCOORD_1": 1265 + }, + "indices": 1267, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 154, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1273, + "NORMAL": 1270, + "POSITION": 1268, + "TANGENT": 1269, + "TEXCOORD_0": 1271, + "TEXCOORD_1": 1272 + }, + "indices": 1274, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 360, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_1_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1280, + "NORMAL": 1277, + "POSITION": 1275, + "TANGENT": 1276, + "TEXCOORD_0": 1278, + "TEXCOORD_1": 1279 + }, + "indices": 1281, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_FlapsKrueger_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1287, + "NORMAL": 1284, + "POSITION": 1282, + "TANGENT": 1283, + "TEXCOORD_0": 1285, + "TEXCOORD_1": 1286 + }, + "indices": 1288, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1294, + "NORMAL": 1291, + "POSITION": 1289, + "TANGENT": 1290, + "TEXCOORD_0": 1292, + "TEXCOORD_1": 1293 + }, + "indices": 1295, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 824, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1301, + "NORMAL": 1298, + "POSITION": 1296, + "TANGENT": 1297, + "TEXCOORD_0": 1299, + "TEXCOORD_1": 1300 + }, + "indices": 1302, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 164, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_Part19_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1308, + "NORMAL": 1305, + "POSITION": 1303, + "TANGENT": 1304, + "TEXCOORD_0": 1306, + "TEXCOORD_1": 1307 + }, + "indices": 1309, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1315, + "NORMAL": 1312, + "POSITION": 1310, + "TANGENT": 1311, + "TEXCOORD_0": 1313, + "TEXCOORD_1": 1314 + }, + "indices": 1316, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 580, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_31_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1322, + "NORMAL": 1319, + "POSITION": 1317, + "TANGENT": 1318, + "TEXCOORD_0": 1320, + "TEXCOORD_1": 1321 + }, + "indices": 1323, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_33_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1329, + "NORMAL": 1326, + "POSITION": 1324, + "TANGENT": 1325, + "TEXCOORD_0": 1327, + "TEXCOORD_1": 1328 + }, + "indices": 1330, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_28_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1336, + "NORMAL": 1333, + "POSITION": 1331, + "TANGENT": 1332, + "TEXCOORD_0": 1334, + "TEXCOORD_1": 1335 + }, + "indices": 1337, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 476, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_27_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1343, + "NORMAL": 1340, + "POSITION": 1338, + "TANGENT": 1339, + "TEXCOORD_0": 1341, + "TEXCOORD_1": 1342 + }, + "indices": 1344, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 750, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_30_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1350, + "NORMAL": 1347, + "POSITION": 1345, + "TANGENT": 1346, + "TEXCOORD_0": 1348, + "TEXCOORD_1": 1349 + }, + "indices": 1351, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 364, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_32_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1357, + "NORMAL": 1354, + "POSITION": 1352, + "TANGENT": 1353, + "TEXCOORD_0": 1355, + "TEXCOORD_1": 1356 + }, + "indices": 1358, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_34_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1364, + "NORMAL": 1361, + "POSITION": 1359, + "TANGENT": 1360, + "TEXCOORD_0": 1362, + "TEXCOORD_1": 1363 + }, + "indices": 1365, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 68, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_Part18_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1371, + "NORMAL": 1368, + "POSITION": 1366, + "TANGENT": 1367, + "TEXCOORD_0": 1369, + "TEXCOORD_1": 1370 + }, + "indices": 1372, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_21_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1378, + "NORMAL": 1375, + "POSITION": 1373, + "TANGENT": 1374, + "TEXCOORD_0": 1376, + "TEXCOORD_1": 1377 + }, + "indices": 1379, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_Part17_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1385, + "NORMAL": 1382, + "POSITION": 1380, + "TANGENT": 1381, + "TEXCOORD_0": 1383, + "TEXCOORD_1": 1384 + }, + "indices": 1386, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_07_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1392, + "NORMAL": 1389, + "POSITION": 1387, + "TANGENT": 1388, + "TEXCOORD_0": 1390, + "TEXCOORD_1": 1391 + }, + "indices": 1393, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 492, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_08_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1399, + "NORMAL": 1396, + "POSITION": 1394, + "TANGENT": 1395, + "TEXCOORD_0": 1397, + "TEXCOORD_1": 1398 + }, + "indices": 1400, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 300, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_35_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1406, + "NORMAL": 1403, + "POSITION": 1401, + "TANGENT": 1402, + "TEXCOORD_0": 1404, + "TEXCOORD_1": 1405 + }, + "indices": 1407, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 284, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_36_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1413, + "NORMAL": 1410, + "POSITION": 1408, + "TANGENT": 1409, + "TEXCOORD_0": 1411, + "TEXCOORD_1": 1412 + }, + "indices": 1414, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_37_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1420, + "NORMAL": 1417, + "POSITION": 1415, + "TANGENT": 1416, + "TEXCOORD_0": 1418, + "TEXCOORD_1": 1419 + }, + "indices": 1421, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_LWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1427, + "NORMAL": 1424, + "POSITION": 1422, + "TANGENT": 1423, + "TEXCOORD_0": 1425, + "TEXCOORD_1": 1426 + }, + "indices": 1428, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1512, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_LWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1434, + "NORMAL": 1431, + "POSITION": 1429, + "TANGENT": 1430, + "TEXCOORD_0": 1432, + "TEXCOORD_1": 1433 + }, + "indices": 1435, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_LWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1441, + "NORMAL": 1438, + "POSITION": 1436, + "TANGENT": 1437, + "TEXCOORD_0": 1439, + "TEXCOORD_1": 1440 + }, + "indices": 1442, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1512, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_LWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1448, + "NORMAL": 1445, + "POSITION": 1443, + "TANGENT": 1444, + "TEXCOORD_0": 1446, + "TEXCOORD_1": 1447 + }, + "indices": 1449, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15747, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_09_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1455, + "NORMAL": 1452, + "POSITION": 1450, + "TANGENT": 1451, + "TEXCOORD_0": 1453, + "TEXCOORD_1": 1454 + }, + "indices": 1456, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1494, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_10_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1462, + "NORMAL": 1459, + "POSITION": 1457, + "TANGENT": 1458, + "TEXCOORD_0": 1460, + "TEXCOORD_1": 1461 + }, + "indices": 1463, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3763, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1462, + "NORMAL": 1459, + "POSITION": 1457, + "TANGENT": 1458, + "TEXCOORD_0": 1460, + "TEXCOORD_1": 1461 + }, + "indices": 1463, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 11289, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_gear_Root_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1469, + "NORMAL": 1466, + "POSITION": 1464, + "TANGENT": 1465, + "TEXCOORD_0": 1467, + "TEXCOORD_1": 1468 + }, + "indices": 1470, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 632, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_16_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1476, + "NORMAL": 1473, + "POSITION": 1471, + "TANGENT": 1472, + "TEXCOORD_0": 1474, + "TEXCOORD_1": 1475 + }, + "indices": 1477, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 323, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1483, + "NORMAL": 1480, + "POSITION": 1478, + "TANGENT": 1479, + "TEXCOORD_0": 1481, + "TEXCOORD_1": 1482 + }, + "indices": 1484, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door03_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1490, + "NORMAL": 1487, + "POSITION": 1485, + "TANGENT": 1486, + "TEXCOORD_0": 1488, + "TEXCOORD_1": 1489 + }, + "indices": 1491, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 678, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1497, + "NORMAL": 1494, + "POSITION": 1492, + "TANGENT": 1493, + "TEXCOORD_0": 1495, + "TEXCOORD_1": 1496 + }, + "indices": 1498, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_1_still_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1504, + "NORMAL": 1501, + "POSITION": 1499, + "TANGENT": 1500, + "TEXCOORD_0": 1502, + "TEXCOORD_1": 1503 + }, + "indices": 1505, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 150, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1504, + "NORMAL": 1501, + "POSITION": 1499, + "TANGENT": 1500, + "TEXCOORD_0": 1502, + "TEXCOORD_1": 1503 + }, + "indices": 1505, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 450, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_1_slow_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1511, + "NORMAL": 1508, + "POSITION": 1506, + "TANGENT": 1507, + "TEXCOORD_0": 1509, + "TEXCOORD_1": 1510 + }, + "indices": 1512, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 150, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1511, + "NORMAL": 1508, + "POSITION": 1506, + "TANGENT": 1507, + "TEXCOORD_0": 1509, + "TEXCOORD_1": 1510 + }, + "indices": 1512, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 450, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_1_blurred_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1518, + "NORMAL": 1515, + "POSITION": 1513, + "TANGENT": 1514, + "TEXCOORD_0": 1516, + "TEXCOORD_1": 1517 + }, + "indices": 1519, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 480, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Details04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1525, + "NORMAL": 1522, + "POSITION": 1520, + "TANGENT": 1521, + "TEXCOORD_0": 1523, + "TEXCOORD_1": 1524 + }, + "indices": 1526, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3528, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1525, + "NORMAL": 1522, + "POSITION": 1520, + "TANGENT": 1521, + "TEXCOORD_0": 1523, + "TEXCOORD_1": 1524 + }, + "indices": 1526, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 10584, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1525, + "NORMAL": 1522, + "POSITION": 1520, + "TANGENT": 1521, + "TEXCOORD_0": 1523, + "TEXCOORD_1": 1524 + }, + "indices": 1526, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 11976, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Duct_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2341, + "JOINTS_0": 2339, + "NORMAL": 2336, + "POSITION": 2334, + "TANGENT": 2335, + "TEXCOORD_0": 2337, + "TEXCOORD_1": 2338, + "WEIGHTS_0": 2340 + }, + "indices": 2342, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5358, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2350, + "JOINTS_0": 2348, + "NORMAL": 2345, + "POSITION": 2343, + "TANGENT": 2344, + "TEXCOORD_0": 2346, + "TEXCOORD_1": 2347, + "WEIGHTS_0": 2349 + }, + "indices": 2351, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 142, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1532, + "NORMAL": 1529, + "POSITION": 1527, + "TANGENT": 1528, + "TEXCOORD_0": 1530, + "TEXCOORD_1": 1531 + }, + "indices": 1533, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_LEFT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1539, + "NORMAL": 1536, + "POSITION": 1534, + "TANGENT": 1535, + "TEXCOORD_0": 1537, + "TEXCOORD_1": 1538 + }, + "indices": 1540, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1539, + "NORMAL": 1536, + "POSITION": 1534, + "TANGENT": 1535, + "TEXCOORD_0": 1537, + "TEXCOORD_1": 1538 + }, + "indices": 1540, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINEL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1546, + "NORMAL": 1543, + "POSITION": 1541, + "TANGENT": 1542, + "TEXCOORD_0": 1544, + "TEXCOORD_1": 1545 + }, + "indices": 1547, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_EngA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1553, + "NORMAL": 1550, + "POSITION": 1548, + "TANGENT": 1549, + "TEXCOORD_0": 1551, + "TEXCOORD_1": 1552 + }, + "indices": 1554, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_02_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1560, + "NORMAL": 1557, + "POSITION": 1555, + "TANGENT": 1556, + "TEXCOORD_0": 1558, + "TEXCOORD_1": 1559 + }, + "indices": 1561, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 120, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1567, + "NORMAL": 1564, + "POSITION": 1562, + "TANGENT": 1563, + "TEXCOORD_0": 1565, + "TEXCOORD_1": 1566 + }, + "indices": 1568, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 602, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door01_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1574, + "NORMAL": 1571, + "POSITION": 1569, + "TANGENT": 1570, + "TEXCOORD_0": 1572, + "TEXCOORD_1": 1573 + }, + "indices": 1575, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 772, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart10_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1581, + "NORMAL": 1578, + "POSITION": 1576, + "TANGENT": 1577, + "TEXCOORD_0": 1579, + "TEXCOORD_1": 1580 + }, + "indices": 1582, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 772, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart09_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1588, + "NORMAL": 1585, + "POSITION": 1583, + "TANGENT": 1584, + "TEXCOORD_0": 1586, + "TEXCOORD_1": 1587 + }, + "indices": 1589, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1952, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Wheel_Nose_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1595, + "NORMAL": 1592, + "POSITION": 1590, + "TANGENT": 1591, + "TEXCOORD_0": 1593, + "TEXCOORD_1": 1594 + }, + "indices": 1596, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1080, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Wheel_Nose_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1602, + "NORMAL": 1599, + "POSITION": 1597, + "TANGENT": 1598, + "TEXCOORD_0": 1600, + "TEXCOORD_1": 1601 + }, + "indices": 1603, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 554, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart13_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1609, + "NORMAL": 1606, + "POSITION": 1604, + "TANGENT": 1605, + "TEXCOORD_0": 1607, + "TEXCOORD_1": 1608 + }, + "indices": 1610, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 76, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart07_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1616, + "NORMAL": 1613, + "POSITION": 1611, + "TANGENT": 1612, + "TEXCOORD_0": 1614, + "TEXCOORD_1": 1615 + }, + "indices": 1617, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart05_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1623, + "NORMAL": 1620, + "POSITION": 1618, + "TANGENT": 1619, + "TEXCOORD_0": 1621, + "TEXCOORD_1": 1622 + }, + "indices": 1624, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 136, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart04_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1630, + "NORMAL": 1627, + "POSITION": 1625, + "TANGENT": 1626, + "TEXCOORD_0": 1628, + "TEXCOORD_1": 1629 + }, + "indices": 1631, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10151, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart16_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1637, + "NORMAL": 1634, + "POSITION": 1632, + "TANGENT": 1633, + "TEXCOORD_0": 1635, + "TEXCOORD_1": 1636 + }, + "indices": 1638, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_cgear_landinglight_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1644, + "NORMAL": 1641, + "POSITION": 1639, + "TANGENT": 1640, + "TEXCOORD_0": 1642, + "TEXCOORD_1": 1643 + }, + "indices": 1645, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1651, + "NORMAL": 1648, + "POSITION": 1646, + "TANGENT": 1647, + "TEXCOORD_0": 1649, + "TEXCOORD_1": 1650 + }, + "indices": 1652, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1658, + "NORMAL": 1655, + "POSITION": 1653, + "TANGENT": 1654, + "TEXCOORD_0": 1656, + "TEXCOORD_1": 1657 + }, + "indices": 1659, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1665, + "NORMAL": 1662, + "POSITION": 1660, + "TANGENT": 1661, + "TEXCOORD_0": 1663, + "TEXCOORD_1": 1664 + }, + "indices": 1666, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 176, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1672, + "NORMAL": 1669, + "POSITION": 1667, + "TANGENT": 1668, + "TEXCOORD_0": 1670, + "TEXCOORD_1": 1671 + }, + "indices": 1673, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 140, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart01_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1679, + "NORMAL": 1676, + "POSITION": 1674, + "TANGENT": 1675, + "TEXCOORD_0": 1677, + "TEXCOORD_1": 1678 + }, + "indices": 1680, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 88, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart03_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1686, + "NORMAL": 1683, + "POSITION": 1681, + "TANGENT": 1682, + "TEXCOORD_0": 1684, + "TEXCOORD_1": 1685 + }, + "indices": 1687, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 306, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart02_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1693, + "NORMAL": 1690, + "POSITION": 1688, + "TANGENT": 1689, + "TEXCOORD_0": 1691, + "TEXCOORD_1": 1692 + }, + "indices": 1694, + "material": 22, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 296, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_NosePart06_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1700, + "NORMAL": 1697, + "POSITION": 1695, + "TANGENT": 1696, + "TEXCOORD_0": 1698, + "TEXCOORD_1": 1699 + }, + "indices": 1701, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1707, + "NORMAL": 1704, + "POSITION": 1702, + "TANGENT": 1703, + "TEXCOORD_0": 1705, + "TEXCOORD_1": 1706 + }, + "indices": 1708, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 868, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1714, + "NORMAL": 1711, + "POSITION": 1709, + "TANGENT": 1710, + "TEXCOORD_0": 1712, + "TEXCOORD_1": 1713 + }, + "indices": 1715, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 642, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Trim_Elevator_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1721, + "NORMAL": 1718, + "POSITION": 1716, + "TANGENT": 1717, + "TEXCOORD_0": 1719, + "TEXCOORD_1": 1720 + }, + "indices": 1722, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 36, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1721, + "NORMAL": 1718, + "POSITION": 1716, + "TANGENT": 1717, + "TEXCOORD_0": 1719, + "TEXCOORD_1": 1720 + }, + "indices": 1722, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12, + "StartIndex": 108, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1728, + "NORMAL": 1725, + "POSITION": 1723, + "TANGENT": 1724, + "TEXCOORD_0": 1726, + "TEXCOORD_1": 1727 + }, + "indices": 1729, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 661, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1728, + "NORMAL": 1725, + "POSITION": 1723, + "TANGENT": 1724, + "TEXCOORD_0": 1726, + "TEXCOORD_1": 1727 + }, + "indices": 1729, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 80, + "StartIndex": 1983, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ELEVATORR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1735, + "NORMAL": 1732, + "POSITION": 1730, + "TANGENT": 1731, + "TEXCOORD_0": 1733, + "TEXCOORD_1": 1734 + }, + "indices": 1736, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 226, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_ElevatorTrimR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1742, + "NORMAL": 1739, + "POSITION": 1737, + "TANGENT": 1738, + "TEXCOORD_0": 1740, + "TEXCOORD_1": 1741 + }, + "indices": 1743, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 323, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door02_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1749, + "NORMAL": 1746, + "POSITION": 1744, + "TANGENT": 1745, + "TEXCOORD_0": 1747, + "TEXCOORD_1": 1748 + }, + "indices": 1750, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door03_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1756, + "NORMAL": 1753, + "POSITION": 1751, + "TANGENT": 1752, + "TEXCOORD_0": 1754, + "TEXCOORD_1": 1755 + }, + "indices": 1757, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3528, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1756, + "NORMAL": 1753, + "POSITION": 1751, + "TANGENT": 1752, + "TEXCOORD_0": 1754, + "TEXCOORD_1": 1755 + }, + "indices": 1757, + "material": 18, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 10584, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1756, + "NORMAL": 1753, + "POSITION": 1751, + "TANGENT": 1752, + "TEXCOORD_0": 1754, + "TEXCOORD_1": 1755 + }, + "indices": 1757, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 48, + "StartIndex": 11976, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Duct_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1763, + "NORMAL": 1760, + "POSITION": 1758, + "TANGENT": 1759, + "TEXCOORD_0": 1761, + "TEXCOORD_1": 1762 + }, + "indices": 1764, + "material": 17, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 480, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Details04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1770, + "NORMAL": 1767, + "POSITION": 1765, + "TANGENT": 1766, + "TEXCOORD_0": 1768, + "TEXCOORD_1": 1769 + }, + "indices": 1771, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 122, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1770, + "NORMAL": 1767, + "POSITION": 1765, + "TANGENT": 1766, + "TEXCOORD_0": 1768, + "TEXCOORD_1": 1769 + }, + "indices": 1771, + "material": 16, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 366, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_2_blurred_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1777, + "NORMAL": 1774, + "POSITION": 1772, + "TANGENT": 1773, + "TEXCOORD_0": 1775, + "TEXCOORD_1": 1776 + }, + "indices": 1778, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 122, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1777, + "NORMAL": 1774, + "POSITION": 1772, + "TANGENT": 1773, + "TEXCOORD_0": 1775, + "TEXCOORD_1": 1776 + }, + "indices": 1778, + "material": 15, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 366, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_2_slow_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1784, + "NORMAL": 1781, + "POSITION": 1779, + "TANGENT": 1780, + "TEXCOORD_0": 1782, + "TEXCOORD_1": 1783 + }, + "indices": 1785, + "material": 14, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_2_still_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2359, + "JOINTS_0": 2357, + "NORMAL": 2354, + "POSITION": 2352, + "TANGENT": 2353, + "TEXCOORD_0": 2355, + "TEXCOORD_1": 2356, + "WEIGHTS_0": 2358 + }, + "indices": 2360, + "material": 33, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5358, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2368, + "JOINTS_0": 2366, + "NORMAL": 2363, + "POSITION": 2361, + "TANGENT": 2362, + "TEXCOORD_0": 2364, + "TEXCOORD_1": 2365, + "WEIGHTS_0": 2367 + }, + "indices": 2369, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 138, + "VertexType": "BLEND1", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Engine_Body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1791, + "NORMAL": 1788, + "POSITION": 1786, + "TANGENT": 1787, + "TEXCOORD_0": 1789, + "TEXCOORD_1": 1790 + }, + "indices": 1792, + "material": 19, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FX_EXHAUST_RIGHT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1798, + "NORMAL": 1795, + "POSITION": 1793, + "TANGENT": 1794, + "TEXCOORD_0": 1796, + "TEXCOORD_1": 1797 + }, + "indices": 1799, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3324, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 1798, + "NORMAL": 1795, + "POSITION": 1793, + "TANGENT": 1794, + "TEXCOORD_0": 1796, + "TEXCOORD_1": 1797 + }, + "indices": 1799, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 652, + "StartIndex": 9972, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_ENGINER" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1805, + "NORMAL": 1802, + "POSITION": 1800, + "TANGENT": 1801, + "TEXCOORD_0": 1803, + "TEXCOORD_1": 1804 + }, + "indices": 1806, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_EngB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1812, + "NORMAL": 1809, + "POSITION": 1807, + "TANGENT": 1808, + "TEXCOORD_0": 1810, + "TEXCOORD_1": 1811 + }, + "indices": 1813, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_FlapsKrueger_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1819, + "NORMAL": 1816, + "POSITION": 1814, + "TANGENT": 1815, + "TEXCOORD_0": 1817, + "TEXCOORD_1": 1818 + }, + "indices": 1820, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 54, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1826, + "NORMAL": 1823, + "POSITION": 1821, + "TANGENT": 1822, + "TEXCOORD_0": 1824, + "TEXCOORD_1": 1825 + }, + "indices": 1827, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 824, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1833, + "NORMAL": 1830, + "POSITION": 1828, + "TANGENT": 1829, + "TEXCOORD_0": 1831, + "TEXCOORD_1": 1832 + }, + "indices": 1834, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 632, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_16_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1840, + "NORMAL": 1837, + "POSITION": 1835, + "TANGENT": 1836, + "TEXCOORD_0": 1838, + "TEXCOORD_1": 1839 + }, + "indices": 1841, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 360, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_1_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1847, + "NORMAL": 1844, + "POSITION": 1842, + "TANGENT": 1843, + "TEXCOORD_0": 1845, + "TEXCOORD_1": 1846 + }, + "indices": 1848, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 152, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1854, + "NORMAL": 1851, + "POSITION": 1849, + "TANGENT": 1850, + "TEXCOORD_0": 1852, + "TEXCOORD_1": 1853 + }, + "indices": 1855, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1861, + "NORMAL": 1858, + "POSITION": 1856, + "TANGENT": 1857, + "TEXCOORD_0": 1859, + "TEXCOORD_1": 1860 + }, + "indices": 1862, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 720, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1868, + "NORMAL": 1865, + "POSITION": 1863, + "TANGENT": 1864, + "TEXCOORD_0": 1866, + "TEXCOORD_1": 1867 + }, + "indices": 1869, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 154, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2377, + "JOINTS_0": 2375, + "NORMAL": 2372, + "POSITION": 2370, + "TANGENT": 2371, + "TEXCOORD_0": 2373, + "TEXCOORD_1": 2374, + "WEIGHTS_0": 2376 + }, + "indices": 2378, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1418, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_2_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1875, + "NORMAL": 1872, + "POSITION": 1870, + "TANGENT": 1871, + "TEXCOORD_0": 1873, + "TEXCOORD_1": 1874 + }, + "indices": 1876, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 678, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1882, + "NORMAL": 1879, + "POSITION": 1877, + "TANGENT": 1878, + "TEXCOORD_0": 1880, + "TEXCOORD_1": 1881 + }, + "indices": 1883, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 540, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_07_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1889, + "NORMAL": 1886, + "POSITION": 1884, + "TANGENT": 1885, + "TEXCOORD_0": 1887, + "TEXCOORD_1": 1888 + }, + "indices": 1890, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 492, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_08_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1896, + "NORMAL": 1893, + "POSITION": 1891, + "TANGENT": 1892, + "TEXCOORD_0": 1894, + "TEXCOORD_1": 1895 + }, + "indices": 1897, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 862, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_37_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1903, + "NORMAL": 1900, + "POSITION": 1898, + "TANGENT": 1899, + "TEXCOORD_0": 1901, + "TEXCOORD_1": 1902 + }, + "indices": 1904, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 300, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_35_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1910, + "NORMAL": 1907, + "POSITION": 1905, + "TANGENT": 1906, + "TEXCOORD_0": 1908, + "TEXCOORD_1": 1909 + }, + "indices": 1911, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 284, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_36_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1917, + "NORMAL": 1914, + "POSITION": 1912, + "TANGENT": 1913, + "TEXCOORD_0": 1915, + "TEXCOORD_1": 1916 + }, + "indices": 1918, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_RWheel_01_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1924, + "NORMAL": 1921, + "POSITION": 1919, + "TANGENT": 1920, + "TEXCOORD_0": 1922, + "TEXCOORD_1": 1923 + }, + "indices": 1925, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1512, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_RWheel_01_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1931, + "NORMAL": 1928, + "POSITION": 1926, + "TANGENT": 1927, + "TEXCOORD_0": 1929, + "TEXCOORD_1": 1930 + }, + "indices": 1932, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2704, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_RWheel_02_still" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1938, + "NORMAL": 1935, + "POSITION": 1933, + "TANGENT": 1934, + "TEXCOORD_0": 1936, + "TEXCOORD_1": 1937 + }, + "indices": 1939, + "material": 12, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1512, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_RWheel_02_blurred" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1945, + "NORMAL": 1942, + "POSITION": 1940, + "TANGENT": 1941, + "TEXCOORD_0": 1943, + "TEXCOORD_1": 1944 + }, + "indices": 1946, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 15747, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_09_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1952, + "NORMAL": 1949, + "POSITION": 1947, + "TANGENT": 1948, + "TEXCOORD_0": 1950, + "TEXCOORD_1": 1951 + }, + "indices": 1953, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1494, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_10_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1959, + "NORMAL": 1956, + "POSITION": 1954, + "TANGENT": 1955, + "TEXCOORD_0": 1957, + "TEXCOORD_1": 1958 + }, + "indices": 1960, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 164, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_Part19_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1966, + "NORMAL": 1963, + "POSITION": 1961, + "TANGENT": 1962, + "TEXCOORD_0": 1964, + "TEXCOORD_1": 1965 + }, + "indices": 1967, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 344, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_21_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1973, + "NORMAL": 1970, + "POSITION": 1968, + "TANGENT": 1969, + "TEXCOORD_0": 1971, + "TEXCOORD_1": 1972 + }, + "indices": 1974, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_Part17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1980, + "NORMAL": 1977, + "POSITION": 1975, + "TANGENT": 1976, + "TEXCOORD_0": 1978, + "TEXCOORD_1": 1979 + }, + "indices": 1981, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 276, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_17_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1987, + "NORMAL": 1984, + "POSITION": 1982, + "TANGENT": 1983, + "TEXCOORD_0": 1985, + "TEXCOORD_1": 1986 + }, + "indices": 1988, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 580, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_31_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 1994, + "NORMAL": 1991, + "POSITION": 1989, + "TANGENT": 1990, + "TEXCOORD_0": 1992, + "TEXCOORD_1": 1993 + }, + "indices": 1995, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 390, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_33_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2001, + "NORMAL": 1998, + "POSITION": 1996, + "TANGENT": 1997, + "TEXCOORD_0": 1999, + "TEXCOORD_1": 2000 + }, + "indices": 2002, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 260, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_28_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2008, + "NORMAL": 2005, + "POSITION": 2003, + "TANGENT": 2004, + "TEXCOORD_0": 2006, + "TEXCOORD_1": 2007 + }, + "indices": 2009, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 476, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_27_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2015, + "NORMAL": 2012, + "POSITION": 2010, + "TANGENT": 2011, + "TEXCOORD_0": 2013, + "TEXCOORD_1": 2014 + }, + "indices": 2016, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 750, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_30_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2022, + "NORMAL": 2019, + "POSITION": 2017, + "TANGENT": 2018, + "TEXCOORD_0": 2020, + "TEXCOORD_1": 2021 + }, + "indices": 2023, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 364, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_32_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2029, + "NORMAL": 2026, + "POSITION": 2024, + "TANGENT": 2025, + "TEXCOORD_0": 2027, + "TEXCOORD_1": 2028 + }, + "indices": 2030, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_34_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2036, + "NORMAL": 2033, + "POSITION": 2031, + "TANGENT": 2032, + "TEXCOORD_0": 2034, + "TEXCOORD_1": 2035 + }, + "indices": 2037, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3763, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2036, + "NORMAL": 2033, + "POSITION": 2031, + "TANGENT": 2032, + "TEXCOORD_0": 2034, + "TEXCOORD_1": 2035 + }, + "indices": 2037, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 11289, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_gear_Root_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2043, + "NORMAL": 2040, + "POSITION": 2038, + "TANGENT": 2039, + "TEXCOORD_0": 2041, + "TEXCOORD_1": 2042 + }, + "indices": 2044, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 120, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2050, + "NORMAL": 2047, + "POSITION": 2045, + "TANGENT": 2046, + "TEXCOORD_0": 2048, + "TEXCOORD_1": 2049 + }, + "indices": 2051, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 602, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Door01_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2057, + "NORMAL": 2054, + "POSITION": 2052, + "TANGENT": 2053, + "TEXCOORD_0": 2055, + "TEXCOORD_1": 2056 + }, + "indices": 2058, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1086, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Undercarriage_Front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2064, + "NORMAL": 2061, + "POSITION": 2059, + "TANGENT": 2060, + "TEXCOORD_0": 2062, + "TEXCOORD_1": 2063 + }, + "indices": 2065, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2650, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_windowGlass_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12479, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 21, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 12853, + "StartIndex": 37437, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7956, + "StartIndex": 75996, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 536, + "StartIndex": 99864, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 3, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 192, + "StartIndex": 101472, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 464, + "StartIndex": 102048, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2071, + "NORMAL": 2068, + "POSITION": 2066, + "TANGENT": 2067, + "TEXCOORD_0": 2069, + "TEXCOORD_1": 2070 + }, + "indices": 2072, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 228, + "StartIndex": 103440, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Body_front_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2078, + "NORMAL": 2075, + "POSITION": 2073, + "TANGENT": 2074, + "TEXCOORD_0": 2076, + "TEXCOORD_1": 2077 + }, + "indices": 2079, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1382, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 118, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 0, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 230, + "StartIndex": 354, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 20, + "StartIndex": 1044, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 10, + "StartIndex": 1104, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 60, + "StartIndex": 1134, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2085, + "NORMAL": 2082, + "POSITION": 2080, + "TANGENT": 2081, + "TEXCOORD_0": 2083, + "TEXCOORD_1": 2084 + }, + "indices": 2086, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 88, + "StartIndex": 1314, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_2_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2092, + "NORMAL": 2089, + "POSITION": 2087, + "TANGENT": 2088, + "TEXCOORD_0": 2090, + "TEXCOORD_1": 2091 + }, + "indices": 2093, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_2_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2099, + "NORMAL": 2096, + "POSITION": 2094, + "TANGENT": 2095, + "TEXCOORD_0": 2097, + "TEXCOORD_1": 2098 + }, + "indices": 2100, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 388, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2106, + "NORMAL": 2103, + "POSITION": 2101, + "TANGENT": 2102, + "TEXCOORD_0": 2104, + "TEXCOORD_1": 2105 + }, + "indices": 2107, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 283, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_2_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2113, + "NORMAL": 2110, + "POSITION": 2108, + "TANGENT": 2109, + "TEXCOORD_0": 2111, + "TEXCOORD_1": 2112 + }, + "indices": 2114, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2113, + "NORMAL": 2110, + "POSITION": 2108, + "TANGENT": 2109, + "TEXCOORD_0": 2111, + "TEXCOORD_1": 2112 + }, + "indices": 2114, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6838, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_INTERIOR2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2120, + "NORMAL": 2117, + "POSITION": 2115, + "TANGENT": 2116, + "TEXCOORD_0": 2118, + "TEXCOORD_1": 2119 + }, + "indices": 2121, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3537, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_CARGO_DOOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2127, + "NORMAL": 2124, + "POSITION": 2122, + "TANGENT": 2123, + "TEXCOORD_0": 2125, + "TEXCOORD_1": 2126 + }, + "indices": 2128, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 481, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2127, + "NORMAL": 2124, + "POSITION": 2122, + "TANGENT": 2123, + "TEXCOORD_0": 2125, + "TEXCOORD_1": 2126 + }, + "indices": 2128, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "StartIndex": 1443, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_CARGO_DOOR_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2134, + "NORMAL": 2131, + "POSITION": 2129, + "TANGENT": 2130, + "TEXCOORD_0": 2132, + "TEXCOORD_1": 2133 + }, + "indices": 2135, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_CARGO_PISTON_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2141, + "NORMAL": 2138, + "POSITION": 2136, + "TANGENT": 2137, + "TEXCOORD_0": 2139, + "TEXCOORD_1": 2140 + }, + "indices": 2142, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 317, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_Cargo" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2148, + "NORMAL": 2145, + "POSITION": 2143, + "TANGENT": 2144, + "TEXCOORD_0": 2146, + "TEXCOORD_1": 2147 + }, + "indices": 2149, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 144, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_CARGO_PISTON_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2155, + "NORMAL": 2152, + "POSITION": 2150, + "TANGENT": 2151, + "TEXCOORD_0": 2153, + "TEXCOORD_1": 2154 + }, + "indices": 2156, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1368, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2162, + "NORMAL": 2159, + "POSITION": 2157, + "TANGENT": 2158, + "TEXCOORD_0": 2160, + "TEXCOORD_1": 2161 + }, + "indices": 2163, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_1_PORTHOLE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2169, + "NORMAL": 2166, + "POSITION": 2164, + "TANGENT": 2165, + "TEXCOORD_0": 2167, + "TEXCOORD_1": 2168 + }, + "indices": 2170, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 318, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2169, + "NORMAL": 2166, + "POSITION": 2164, + "TANGENT": 2165, + "TEXCOORD_0": 2167, + "TEXCOORD_1": 2168 + }, + "indices": 2170, + "material": 23, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 22, + "StartIndex": 954, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2169, + "NORMAL": 2166, + "POSITION": 2164, + "TANGENT": 2165, + "TEXCOORD_0": 2167, + "TEXCOORD_1": 2168 + }, + "indices": 2170, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8, + "StartIndex": 1020, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2169, + "NORMAL": 2166, + "POSITION": 2164, + "TANGENT": 2165, + "TEXCOORD_0": 2167, + "TEXCOORD_1": 2168 + }, + "indices": 2170, + "material": 24, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 62, + "StartIndex": 1044, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2169, + "NORMAL": 2166, + "POSITION": 2164, + "TANGENT": 2165, + "TEXCOORD_0": 2167, + "TEXCOORD_1": 2168 + }, + "indices": 2170, + "material": 25, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 108, + "StartIndex": 1230, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_1_OUTSIDE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2176, + "NORMAL": 2173, + "POSITION": 2171, + "TANGENT": 2172, + "TEXCOORD_0": 2174, + "TEXCOORD_1": 2175 + }, + "indices": 2177, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 316, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2183, + "NORMAL": 2180, + "POSITION": 2178, + "TANGENT": 2179, + "TEXCOORD_0": 2181, + "TEXCOORD_1": 2182 + }, + "indices": 2184, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 283, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_PASSENGER_DOOR_1_PIVOT" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2190, + "NORMAL": 2187, + "POSITION": 2185, + "TANGENT": 2186, + "TEXCOORD_0": 2188, + "TEXCOORD_1": 2189 + }, + "indices": 2191, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2190, + "NORMAL": 2187, + "POSITION": 2185, + "TANGENT": 2186, + "TEXCOORD_0": 2188, + "TEXCOORD_1": 2189 + }, + "indices": 2191, + "material": 26, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 8179, + "StartIndex": 72, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_INTERIOR1" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2386, + "JOINTS_0": 2384, + "NORMAL": 2381, + "POSITION": 2379, + "TANGENT": 2380, + "TEXCOORD_0": 2382, + "TEXCOORD_1": 2383, + "WEIGHTS_0": 2385 + }, + "indices": 2387, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 200, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Aileron_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2395, + "JOINTS_0": 2393, + "NORMAL": 2390, + "POSITION": 2388, + "TANGENT": 2389, + "TEXCOORD_0": 2391, + "TEXCOORD_1": 2392, + "WEIGHTS_0": 2394 + }, + "indices": 2396, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 872, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2404, + "JOINTS_0": 2402, + "NORMAL": 2399, + "POSITION": 2397, + "TANGENT": 2398, + "TEXCOORD_0": 2400, + "TEXCOORD_1": 2401, + "WEIGHTS_0": 2403 + }, + "indices": 2405, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1082, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_1_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2413, + "JOINTS_0": 2411, + "NORMAL": 2408, + "POSITION": 2406, + "TANGENT": 2407, + "TEXCOORD_0": 2409, + "TEXCOORD_1": 2410, + "WEIGHTS_0": 2412 + }, + "indices": 2414, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 906, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_FlapsKrueger_2_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2422, + "JOINTS_0": 2420, + "NORMAL": 2417, + "POSITION": 2415, + "TANGENT": 2416, + "TEXCOORD_0": 2418, + "TEXCOORD_1": 2419, + "WEIGHTS_0": 2421 + }, + "indices": 2423, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 200, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Aileron_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2431, + "JOINTS_0": 2429, + "NORMAL": 2426, + "POSITION": 2424, + "TANGENT": 2425, + "TEXCOORD_0": 2427, + "TEXCOORD_1": 2428, + "WEIGHTS_0": 2430 + }, + "indices": 2432, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 872, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Flaps_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2440, + "JOINTS_0": 2438, + "NORMAL": 2435, + "POSITION": 2433, + "TANGENT": 2434, + "TEXCOORD_0": 2436, + "TEXCOORD_1": 2437, + "WEIGHTS_0": 2439 + }, + "indices": 2441, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 864, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Undercarriage_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2449, + "JOINTS_0": 2447, + "NORMAL": 2444, + "POSITION": 2442, + "TANGENT": 2443, + "TEXCOORD_0": 2445, + "TEXCOORD_1": 2446, + "WEIGHTS_0": 2448 + }, + "indices": 2450, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 906, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_FlapsKrueger_2_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2458, + "JOINTS_0": 2456, + "NORMAL": 2453, + "POSITION": 2451, + "TANGENT": 2452, + "TEXCOORD_0": 2454, + "TEXCOORD_1": 2455, + "WEIGHTS_0": 2457 + }, + "indices": 2459, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1082, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Spoiler_1_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2467, + "JOINTS_0": 2465, + "NORMAL": 2462, + "POSITION": 2460, + "TANGENT": 2461, + "TEXCOORD_0": 2463, + "TEXCOORD_1": 2464, + "WEIGHTS_0": 2466 + }, + "indices": 2468, + "material": 20, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 864, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Undercarriage_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2476, + "JOINTS_0": 2474, + "NORMAL": 2471, + "POSITION": 2469, + "TANGENT": 2470, + "TEXCOORD_0": 2472, + "TEXCOORD_1": 2473, + "WEIGHTS_0": 2475 + }, + "indices": 2477, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_04_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2485, + "JOINTS_0": 2483, + "NORMAL": 2480, + "POSITION": 2478, + "TANGENT": 2479, + "TEXCOORD_0": 2481, + "TEXCOORD_1": 2482, + "WEIGHTS_0": 2484 + }, + "indices": 2486, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 960, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_04_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2494, + "JOINTS_0": 2492, + "NORMAL": 2489, + "POSITION": 2487, + "TANGENT": 2488, + "TEXCOORD_0": 2490, + "TEXCOORD_1": 2491, + "WEIGHTS_0": 2493 + }, + "indices": 2495, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_22_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2503, + "JOINTS_0": 2501, + "NORMAL": 2498, + "POSITION": 2496, + "TANGENT": 2497, + "TEXCOORD_0": 2499, + "TEXCOORD_1": 2500, + "WEIGHTS_0": 2502 + }, + "indices": 2504, + "material": 10, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 96, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Landing_Gear_22_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2197, + "NORMAL": 2194, + "POSITION": 2192, + "TANGENT": 2193, + "TEXCOORD_0": 2195, + "TEXCOORD_1": 2196 + }, + "indices": 2198, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 150, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2204, + "NORMAL": 2201, + "POSITION": 2199, + "TANGENT": 2200, + "TEXCOORD_0": 2202, + "TEXCOORD_1": 2203 + }, + "indices": 2205, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2211, + "NORMAL": 2208, + "POSITION": 2206, + "TANGENT": 2207, + "TEXCOORD_0": 2209, + "TEXCOORD_1": 2210 + }, + "indices": 2212, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 244, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2218, + "NORMAL": 2215, + "POSITION": 2213, + "TANGENT": 2214, + "TEXCOORD_0": 2216, + "TEXCOORD_1": 2217 + }, + "indices": 2219, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 28, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2225, + "NORMAL": 2222, + "POSITION": 2220, + "TANGENT": 2221, + "TEXCOORD_0": 2223, + "TEXCOORD_1": 2224 + }, + "indices": 2226, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2232, + "NORMAL": 2229, + "POSITION": 2227, + "TANGENT": 2228, + "TEXCOORD_0": 2230, + "TEXCOORD_1": 2231 + }, + "indices": 2233, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 408, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2239, + "NORMAL": 2236, + "POSITION": 2234, + "TANGENT": 2235, + "TEXCOORD_0": 2237, + "TEXCOORD_1": 2238 + }, + "indices": 2240, + "material": 27, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 268, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Porthole_Blocker_center" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2246, + "NORMAL": 2243, + "POSITION": 2241, + "TANGENT": 2242, + "TEXCOORD_0": 2244, + "TEXCOORD_1": 2245 + }, + "indices": 2247, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2253, + "NORMAL": 2250, + "POSITION": 2248, + "TANGENT": 2249, + "TEXCOORD_0": 2251, + "TEXCOORD_1": 2252 + }, + "indices": 2254, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2260, + "NORMAL": 2257, + "POSITION": 2255, + "TANGENT": 2256, + "TEXCOORD_0": 2258, + "TEXCOORD_1": 2259 + }, + "indices": 2261, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2267, + "NORMAL": 2264, + "POSITION": 2262, + "TANGENT": 2263, + "TEXCOORD_0": 2265, + "TEXCOORD_1": 2266 + }, + "indices": 2268, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 175, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2274, + "NORMAL": 2271, + "POSITION": 2269, + "TANGENT": 2270, + "TEXCOORD_0": 2272, + "TEXCOORD_1": 2273 + }, + "indices": 2275, + "material": 28, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2058, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2274, + "NORMAL": 2271, + "POSITION": 2269, + "TANGENT": 2270, + "TEXCOORD_0": 2272, + "TEXCOORD_1": 2273 + }, + "indices": 2275, + "material": 29, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 706, + "StartIndex": 6174, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_CARGO_INTERIOR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2281, + "NORMAL": 2278, + "POSITION": 2276, + "TANGENT": 2277, + "TEXCOORD_0": 2279, + "TEXCOORD_1": 2280 + }, + "indices": 2282, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5558, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_FUSELAGE" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2512, + "JOINTS_0": 2510, + "NORMAL": 2507, + "POSITION": 2505, + "TANGENT": 2506, + "TEXCOORD_0": 2508, + "TEXCOORD_1": 2509, + "WEIGHTS_0": 2511 + }, + "indices": 2513, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGR" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2521, + "JOINTS_0": 2519, + "NORMAL": 2516, + "POSITION": 2514, + "TANGENT": 2515, + "TEXCOORD_0": 2517, + "TEXCOORD_1": 2518, + "WEIGHTS_0": 2520 + }, + "indices": 2522, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 216, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_L_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2530, + "JOINTS_0": 2528, + "NORMAL": 2525, + "POSITION": 2523, + "TANGENT": 2524, + "TEXCOORD_0": 2526, + "TEXCOORD_1": 2527, + "WEIGHTS_0": 2529 + }, + "indices": 2531, + "material": 8, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 218, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_FROST_KRUEGER_R_2" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2539, + "JOINTS_0": 2537, + "NORMAL": 2534, + "POSITION": 2532, + "TANGENT": 2533, + "TEXCOORD_0": 2535, + "TEXCOORD_1": 2536, + "WEIGHTS_0": 2538 + }, + "indices": 2540, + "material": 7, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5080, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "FROST_WINGL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2548, + "JOINTS_0": 2546, + "NORMAL": 2543, + "POSITION": 2541, + "TANGENT": 2542, + "TEXCOORD_0": 2544, + "TEXCOORD_1": 2545, + "WEIGHTS_0": 2547 + }, + "indices": 2549, + "material": 2, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 884, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_wiper" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2288, + "NORMAL": 2285, + "POSITION": 2283, + "TANGENT": 2284, + "TEXCOORD_0": 2286, + "TEXCOORD_1": 2287 + }, + "indices": 2289, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 73, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_GROUND_GPUPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2295, + "NORMAL": 2292, + "POSITION": 2290, + "TANGENT": 2291, + "TEXCOORD_0": 2293, + "TEXCOORD_1": 2294 + }, + "indices": 2296, + "material": 11, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 162, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_GROUND_FuelPipe" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2302, + "NORMAL": 2299, + "POSITION": 2297, + "TANGENT": 2298, + "TEXCOORD_0": 2300, + "TEXCOORD_1": 2301 + }, + "indices": 2303, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 204, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_WINDSHIELD" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2309, + "NORMAL": 2306, + "POSITION": 2304, + "TANGENT": 2305, + "TEXCOORD_0": 2307, + "TEXCOORD_1": 2308 + }, + "indices": 2310, + "material": 30, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 16, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_RegNumber" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2316, + "NORMAL": 2313, + "POSITION": 2311, + "TANGENT": 2312, + "TEXCOORD_0": 2314, + "TEXCOORD_1": 2315 + }, + "indices": 2317, + "material": 4, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 7750, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageB" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2323, + "NORMAL": 2320, + "POSITION": 2318, + "TANGENT": 2319, + "TEXCOORD_0": 2321, + "TEXCOORD_1": 2322 + }, + "indices": 2324, + "material": 1, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 14393, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Livery_KLM_FuselageA" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2557, + "JOINTS_0": 2555, + "NORMAL": 2552, + "POSITION": 2550, + "TANGENT": 2551, + "TEXCOORD_0": 2553, + "TEXCOORD_1": 2554, + "WEIGHTS_0": 2556 + }, + "indices": 2558, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 853, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2566, + "JOINTS_0": 2564, + "NORMAL": 2561, + "POSITION": 2559, + "TANGENT": 2560, + "TEXCOORD_0": 2562, + "TEXCOORD_1": 2563, + "WEIGHTS_0": 2565 + }, + "indices": 2567, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5585, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2575, + "JOINTS_0": 2573, + "NORMAL": 2570, + "POSITION": 2568, + "TANGENT": 2569, + "TEXCOORD_0": 2571, + "TEXCOORD_1": 2572, + "WEIGHTS_0": 2574 + }, + "indices": 2576, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 167, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2584, + "JOINTS_0": 2582, + "NORMAL": 2579, + "POSITION": 2577, + "TANGENT": 2578, + "TEXCOORD_0": 2580, + "TEXCOORD_1": 2581, + "WEIGHTS_0": 2583 + }, + "indices": 2585, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2593, + "JOINTS_0": 2591, + "NORMAL": 2588, + "POSITION": 2586, + "TANGENT": 2587, + "TEXCOORD_0": 2589, + "TEXCOORD_1": 2590, + "WEIGHTS_0": 2592 + }, + "indices": 2594, + "material": 31, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 24, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Wing_body_left" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2602, + "JOINTS_0": 2600, + "NORMAL": 2597, + "POSITION": 2595, + "TANGENT": 2596, + "TEXCOORD_0": 2598, + "TEXCOORD_1": 2599, + "WEIGHTS_0": 2601 + }, + "indices": 2603, + "material": 5, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 853, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2611, + "JOINTS_0": 2609, + "NORMAL": 2606, + "POSITION": 2604, + "TANGENT": 2605, + "TEXCOORD_0": 2607, + "TEXCOORD_1": 2608, + "WEIGHTS_0": 2610 + }, + "indices": 2612, + "material": 9, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 5725, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2620, + "JOINTS_0": 2618, + "NORMAL": 2615, + "POSITION": 2613, + "TANGENT": 2614, + "TEXCOORD_0": 2616, + "TEXCOORD_1": 2617, + "WEIGHTS_0": 2619 + }, + "indices": 2621, + "material": 6, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 147, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + }, { + "attributes": { + "COLOR_0": 2629, + "JOINTS_0": 2627, + "NORMAL": 2624, + "POSITION": 2622, + "TANGENT": 2623, + "TEXCOORD_0": 2625, + "TEXCOORD_1": 2626, + "WEIGHTS_0": 2628 + }, + "indices": 2630, + "material": 13, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 6, + "VertexType": "BLEND4", + "VertexVersion": 2 + } + } + } + ], + "name": "x2_Wing_body_right" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2631, + "NORMAL": 2632, + "POSITION": 2633, + "TANGENT": 2634, + "TEXCOORD_0": 2635, + "TEXCOORD_1": 2636 + }, + "indices": 2637, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 1820, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Rudder_center.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2638, + "NORMAL": 2639, + "POSITION": 2640, + "TANGENT": 2641, + "TEXCOORD_0": 2642, + "TEXCOORD_1": 2643 + }, + "indices": 2644, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_Left.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2645, + "NORMAL": 2646, + "POSITION": 2647, + "TANGENT": 2648, + "TEXCOORD_0": 2649, + "TEXCOORD_1": 2650 + }, + "indices": 2651, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 30, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x1_Livery_C_Door_02_right.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2652, + "NORMAL": 2653, + "POSITION": 2654, + "TANGENT": 2655, + "TEXCOORD_0": 2656, + "TEXCOORD_1": 2657 + }, + "indices": 2658, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 302, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_DoorB.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2659, + "NORMAL": 2660, + "POSITION": 2661, + "TEXCOORD_0": 2662, + "TEXCOORD_1": 2663 + }, + "indices": 2664, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 21, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Livery_KLM_FuselageA.005" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2665, + "NORMAL": 2666, + "POSITION": 2667, + "TANGENT": 2668, + "TEXCOORD_0": 2669, + "TEXCOORD_1": 2670 + }, + "indices": 2671, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_R_Door01_left.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2672, + "NORMAL": 2673, + "POSITION": 2674, + "TANGENT": 2675, + "TEXCOORD_0": 2676, + "TEXCOORD_1": 2677 + }, + "indices": 2678, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 29, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "x0_Door01_right.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2679, + "NORMAL": 2680, + "POSITION": 2681, + "TANGENT": 2682, + "TEXCOORD_0": 2683, + "TEXCOORD_1": 2684 + }, + "indices": 2685, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 4114, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "livery_vstab" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2686, + "NORMAL": 2687, + "POSITION": 2688, + "TANGENT": 2689, + "TEXCOORD_0": 2690, + "TEXCOORD_1": 2691 + }, + "indices": 2692, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 40, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Cargo_Door_LIVERYDECAL" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2693, + "NORMAL": 2694, + "POSITION": 2695, + "TEXCOORD_0": 2696, + "TEXCOORD_1": 2697 + }, + "indices": 2698, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 306, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.002" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2699, + "NORMAL": 2700, + "POSITION": 2701, + "TANGENT": 2702, + "TEXCOORD_0": 2703, + "TEXCOORD_1": 2704 + }, + "indices": 2705, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 2812, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.004" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2706, + "NORMAL": 2707, + "POSITION": 2708, + "TEXCOORD_0": 2709, + "TEXCOORD_1": 2710 + }, + "indices": 2711, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 13128, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.001" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2712, + "NORMAL": 2713, + "POSITION": 2714, + "TANGENT": 2715, + "TEXCOORD_0": 2716, + "TEXCOORD_1": 2717 + }, + "indices": 2718, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 112, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.003" + }, { + "primitives": [ + { + "attributes": { + "COLOR_0": 2719, + "NORMAL": 2720, + "POSITION": 2721, + "TANGENT": 2722, + "TEXCOORD_0": 2723, + "TEXCOORD_1": 2724 + }, + "indices": 2725, + "material": 32, + "mode": 4, + "extras": { + "ASOBO_primitive": { + "PrimitiveCount": 3832, + "VertexType": "VTX", + "VertexVersion": 2 + } + } + } + ], + "name": "Plane.008" + } + ], + "nodes": [ + { + "name": "HIPS", + "children": [ + 1, + 4, + 8, + 12, + 16, + 20, + 168, + 203, + 211, + 358, + 359, + 360, + 361, + 370, + 376, + 378, + 379, + 388, + 390 + ] + }, { + "translation": [ + 0.00000191479921, 9.241079, -36.3505249 + ], + "rotation": [ + 0.351553828, 0.6135225, 0.351553649, 0.6135227 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "Tail_Rudder_center", + "children": [2, 3] + }, { + "translation": [ + 0, 0.00000190734863, -0.00000381469681 + ], + "rotation": [ + -0.351553828, -0.6135225, -0.351553649, 0.6135227 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "mesh": 0, + "name": "Rudder_center" + }, { + "translation": [ + -3.4365387, -0.537021637, -0.00000381469681 + ], + "rotation": [ + -0.351553828, -0.61352247, -0.3515536, 0.6135227 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "mesh": 1, + "name": "Livery_KLM_Ruder" + }, { + "translation": [ + -0.726416945, -1.95301223, 23.6319084 + ], + "rotation": [ + 0.427315861, 0.516586959, -0.473471433, 0.5712827 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "name": "Door_Right02_center", + "children": [5, 6, 7] + }, { + "translation": [ + 0.458667755, -0.0267460346, 0.552114964 + ], + "rotation": [ + 0.512122333, -0.626890063, -0.3186886, -0.49313 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "name": "Door_Right03_center" + }, { + "translation": [ + -0.00000381469727, 0.0000011920929, 0 + ], + "rotation": [ + -0.4273159, -0.516587, 0.473471433, 0.571282566 + ], + "scale": [ + 0.9999998, 1, 1 + ], + "mesh": 2, + "name": "C_Door_right" + }, { + "translation": [ + 0.114679337, -0.11825192, 0.424622059 + ], + "rotation": [ + -0.427315861, -0.5165871, 0.473471284, 0.571282744 + ], + "scale": [ + 0.9999999, 0.99999994, 1 + ], + "mesh": 3, + "name": "Livery_KLM_RGDoor" + }, { + "translation": [ + -0.731975853, -1.761568, 25.1424141 + ], + "rotation": [ + -0.0471240319, 0.7069722, -0.06672683, 0.7025078 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "name": "Door_Right01_center", + "children": [9, 11] + }, { + "translation": [ + -0.7503414, -0.0338468552, 0.414570749 + ], + "rotation": [ + -0.396525681, -0.50923115, 0.5034293, 0.574465036 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Right03_hydraulic01_center", + "children": [10] + }, { + "translation": [ + -0.0169906616, -0.005390644, -0.0000152587891 + ], + "rotation": [ + -0.016297901, -0.09857431, -0.6196605, 0.778484643 + ], + "scale": [ + 1.000001, 1.00000083, 1.00000083 + ], + "mesh": 4, + "name": "C_Door_3_hydraulic01_right" + }, { + "translation": [ + 0.00001335144, 0, 0.0000134110451 + ], + "rotation": [ + 0.0471240319, -0.7069722, 0.0667268559, 0.7025078 + ], + "scale": [ + 0.99999994, 0.9999995, 1 + ], + "mesh": 5, + "name": "C_Door_01_right" + }, { + "translation": [ + 0.723948359, -1.95345688, 23.5944271 + ], + "rotation": [ + 0.00493113929, 0.705479443, -0.0346209928, 0.707867146 + ], + "scale": [ + 0.9999999, 0.99999994, 0.99999994 + ], + "name": "Door_Left02_center", + "children": [13, 14, 15] + }, { + "translation": [ + 0.3847618, -0.58023, -0.0432002544 + ], + "rotation": [ + 0.7827109, 0.116333261, 0.33318314, 0.5126591 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "Door_Left03_center" + }, { + "translation": [ + -0.0374679565, -0.0009829998, 0.00260835886 + ], + "rotation": [ + 0.0256656017, 0.658943355, 0.751574039, 0.016473908 + ], + "scale": [ + 0.9999999, 1.00000024, 1.00000012 + ], + "mesh": 6, + "name": "C_Door_left" + }, { + "translation": [ + 0.05247307, -0.443425417, 0.06258595 + ], + "rotation": [ + -0.004931191, -0.7054795, 0.03462106, 0.7078671 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "mesh": 7, + "name": "Livery_KLM_LGDoor" + }, { + "translation": [ + 0.7319975, -1.76198089, 25.1398849 + ], + "rotation": [ + -0.0667134, 0.7025059, -0.0471375138, 0.7069745 + ], + "scale": [ + 0.9999999, 1.00000012, 0.9999999 + ], + "name": "Door_Left01_center", + "children": [17, 19] + }, { + "translation": [ + -0.7485962, -0.05103779, -0.416645736 + ], + "rotation": [ + -0.00976675749, -0.791484535, 0.164192423, 0.58864063 + ], + "scale": [ + 0.99999994, 0.9999998, 0.9999998 + ], + "name": "Door_Left03_hydraulic01_center", + "children": [18] + }, { + "translation": [ + 0.0008325577, 0.0000646114349, 0.00287055969 + ], + "rotation": [ + -0.0318628252, 0.13462323, -0.147998109, 0.979263961 + ], + "scale": [ + 0.9999997, 1.00000072, 1.00000024 + ], + "mesh": 8, + "name": "C_Door_03_hydraulic01_left" + }, { + "translation": [ + 0.000005722046, 0, 0.000001847744 + ], + "rotation": [ + 0.06671327, -0.7025058, 0.0471375324, 0.706974566 + ], + "scale": [ + 1.00000036, 0.9999996, 0.9999996 + ], + "mesh": 9, + "name": "C_Door_01_left" + }, { + "name": "Wing_left", + "children": [21, 28, 162, 164] + }, { + "translation": [ + 1.450443, 1.40532589, -32.1805077 + ], + "rotation": [ + -0.699695766, 0.021218136, 0.08916643, 0.7085372 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "Trim_Elevator_left", + "children": [22, 24, 25, 26, 27] + }, { + "translation": [ + 4.46584272, 4.07697868, 0.00621420145 + ], + "rotation": [ + 0.7352894, 0.102221251, 0.101580471, 0.662255049 + ], + "scale": [ + 0.9999998, 0.9999999, 0.9999999 + ], + "name": "Elevator_left", + "children": [23] + }, { + "translation": [ + 1.37752533, 0.0731356144, 0.0150871277 + ], + "rotation": [ + -0.0506434962, -0.223117933, -0.04389917, 0.9724847 + ], + "scale": [ + 0.99999994, 0.9999995, 1.00000012 + ], + "mesh": 10, + "name": "ELEVATOR_LEFT_1" + }, { + "translation": [ + 0.00000381469727, -0.00000381469727, -0.00000381469727 + ], + "rotation": [ + 0.699695766, -0.0212181155, -0.08916641, 0.7085372 + ], + "scale": [ + 0.9999999, 0.99999994, 0.999999642 + ], + "mesh": 11, + "name": "TRIM_ELEVATOR_LEFT_1" + }, { + "translation": [ + 2.06527, 1.33728981, 0.291667283 + ], + "rotation": [ + -0.08916645, -0.7085372, -0.699695766, -0.021218054 + ], + "scale": [ + 1.00000012, 1, 0.99999994 + ], + "mesh": 12, + "name": "LIGHT_ASOBO_Logo_Left" + }, { + "translation": [ + -6.54495144, -31.5664921, -0.6193118 + ], + "rotation": [ + 0.699695766, -0.021218149, -0.08916643, 0.7085372 + ], + "scale": [ + 0.99999994, 1, 0.9999998 + ], + "mesh": 13, + "name": "FROST_ELEVATORL" + }, { + "translation": [ + -0.0295968056, 0.0198898315, -0.0831717849 + ], + "rotation": [ + 0.699695766, -0.0212181453, -0.08916643, 0.7085372 + ], + "scale": [ + 1, 0.99999994, 0.9999999 + ], + "mesh": 14, + "name": "Livery_KLM_ElevatorTrimL" + }, { + "translation": [ + 3.348375, -0.123601377, -1.04428136 + ], + "rotation": [ + 0.00473341, 0.2594188, 0.0519678928, 0.964354157 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000024 + ], + "name": "WING_BONE_LEFT_00", + "children": [ + 29, + 66, + 69, + 72, + 131, + 133, + 136, + 138, + 140, + 142, + 154, + 155, + 156, + 157, + 159, + 161 + ] + }, { + "translation": [ + 8.314296, -0.00000137090683, -5.364418e-7 + ], + "rotation": [ + -8.754432e-8, 1.20198811e-8, -3.7252903e-9, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1 + ], + "name": "WING_BONE_LEFT_01", + "children": [ + 30, + 53, + 55, + 57, + 59, + 63, + 64, + 65 + ] + }, { + "translation": [ + 6.33785439, -0.03361386, -0.00021648407 + ], + "rotation": [ + 7.636845e-8, 8.58562856e-8, -3.72529e-9, 1 + ], + "scale": [ + 1.00000024, 0.99999994, 1.00000012 + ], + "name": "WING_BONE_LEFT_02", + "children": [ + 31, + 41, + 42, + 43, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] + }, { + "translation": [ + 6.566532, -0.00651597977, 0.002133131 + ], + "rotation": [ + 7.497147e-8, 6.48724452e-8, -1.63912773e-7, 1 + ], + "scale": [ + 0.9999999, 1, 0.9999999 + ], + "name": "WING_BONE_LEFT_03", + "children": [32, 37, 38, 39, 40] + }, { + "translation": [ + 5.34786224, 0.0235242844, -0.00155836344 + ], + "rotation": [ + -5.220064e-7, -2.883608e-7, 3.72529065e-8, 1 + ], + "scale": [ + 0.99999994, 0.99999994, 0.999999762 + ], + "name": "WING_BONE_LEFT_04", + "children": [33, 34, 35, 36] + }, { + "translation": [ + 5.1418705, 0.203219891, -1.33749044 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 15, + "name": "LIGHT_ASOBO_NavigationWing_Left" + }, { + "translation": [ + 1.00637817, 0.0480079651, 1.13949251 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 16, + "name": "LIGHT_ASOBO_StrobeWing_Left" + }, { + "translation": [ + 0.660989761, 0.0385291576, 1.23135138 + ], + "rotation": [ + -0.05196794, -0.964354157, 0.004732894, -0.2594186 + ], + "scale": [ + 0.999999464, 0.9999996, 0.9999998 + ], + "mesh": 17, + "name": "LIGHT_ASOBO_NavigationRed" + }, { + "translation": [ + -0.04543686, 0.288306952, 1.03098464 + ], + "rotation": [ + 0.682595, 0.02664601, -0.03207462, 0.7296063 + ], + "scale": [ + 1.00000072, 1.00000083, 1.00000048 + ], + "name": "FlapsKrueger_5_left" + }, { + "translation": [ + -0.2617283, 0.11290288, 0.0147028565 + ], + "rotation": [ + 0.009747561, -0.0007136329, 0.9998518, 0.0141735217 + ], + "scale": [ + 1.00000024, 1.00000048, 0.99999994 + ], + "name": "Wing_Spoiler_2_5_left" + }, { + "translation": [ + -0.004673004, -0.00971519947, -0.461001784 + ], + "rotation": [ + 0.008513641, -0.0145073226, 0.00494640833, 0.9998463 + ], + "scale": [ + 1.00000083, 0.9999997, 1.00000012 + ], + "name": "Aileron_1_left" + }, { + "translation": [ + 3.998932, 0.0289180279, -0.344465554 + ], + "rotation": [ + 0.008513387, -0.0145070786, 0.00494640134, 0.999846339 + ], + "scale": [ + 1.00000072, 0.9999997, 1.00000012 + ], + "name": "Aileron_2_left" + }, { + "translation": [ + 0.03655243, 0.36692667, 1.46626389 + ], + "rotation": [ + 0.682594657, 0.026645815, -0.0320744365, 0.729606569 + ], + "scale": [ + 1.000001, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_4_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Wing_Spoiler_2_3_left" + }, { + "translation": [ + 0.214468, 0.01886487, -0.6683294 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Wing_Spoiler_2_2_left" + }, { + "translation": [ + 6.303793, -0.008411646, -0.6237762 + ], + "rotation": [ + -0.00684345234, 0.6832026, 0.0139844446, 0.730062962 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000024 + ], + "name": "Flaps_3_left", + "children": [44] + }, { + "translation": [ + -0.111465216, -0.127858162, -2.3174572 + ], + "rotation": [ + 0.703286, -0.0672622249, -0.0638457462, 0.704832137 + ], + "scale": [ + 0.999999464, 0.999998331, 0.999998868 + ], + "name": "flap_hydrolics_19_left" + }, { + "translation": [ + 0.214487076, 0.019739747, -0.6686902 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_2_left" + }, { + "translation": [ + 0.204582214, -0.17100656, -0.421413481 + ], + "rotation": [ + 0.00760341436, 0.6947899, 0.00263360282, 0.719167769 + ], + "scale": [ + 0.999999166, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_2_left" + }, { + "translation": [ + 2.614954, -0.001245141, -0.585331 + ], + "rotation": [ + 0.00760326162, 0.6947899, 0.002633438, 0.719167769 + ], + "scale": [ + 0.9999993, 0.999999642, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_3_left" + }, { + "translation": [ + 2.60530663, -0.109168291, -0.32803908 + ], + "rotation": [ + 0.00760348374, 0.6947899, 0.00263366452, 0.719167769 + ], + "scale": [ + 0.9999992, 0.999999344, 1.00000107 + ], + "name": "Hydrolic2_SPOILER_2_3_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506818056 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic1_SPOILER_2_4_left" + }, { + "translation": [ + 4.92433929, -0.07270765, -0.265460849 + ], + "rotation": [ + 0.00760319876, 0.6947918, 0.00263377978, 0.7191659 + ], + "scale": [ + 0.9999992, 0.999999762, 1.00000072 + ], + "name": "Hydrolic2_SPOILER_2_4_left" + }, { + "translation": [ + 4.93304634, -0.0184860229, -0.506819963 + ], + "rotation": [ + 0.00760329235, 0.6947918, 0.00263375067, 0.719166 + ], + "scale": [ + 0.999999046, 0.9999996, 1.000001 + ], + "name": "Wing_Spoiler_2_4_left" + }, { + "translation": [ + -0.2762127, 0.432390571, 2.03908443 + ], + "rotation": [ + 0.682594657, 0.0266456641, -0.0320743136, 0.729606569 + ], + "scale": [ + 1.00000131, 0.9999998, 1 + ], + "name": "FlapsKrueger_3_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Wing_Spoiler_2_1_left", + "children": [54] + }, { + "translation": [ + -0.00446128845, 0.128245, 3.35860157 + ], + "rotation": [ + 0.0248633735, -0.8570692, -0.04156179, 0.5129199 + ], + "scale": [ + 1.00000024, 0.9999982, 1.00000036 + ], + "mesh": 18, + "skin": 0, + "name": "Spoiler_2_1_left" + }, { + "translation": [ + 2.86842632, -0.255201161, -1.31981921 + ], + "rotation": [ + -0.00684322044, 0.6832027, 0.0139845619, 0.730062842 + ], + "scale": [ + 0.9999999, 0.999999762, 1.00000012 + ], + "name": "Flaps_2_left", + "children": [56] + }, { + "translation": [ + -0.08635807, -0.170148611, 2.576231 + ], + "rotation": [ + 0.729701459, -0.14941819, -0.107722856, 0.6584875 + ], + "scale": [ + 0.999999762, 0.999998748, 0.999999464 + ], + "name": "flap_hydrolics_18_left" + }, { + "translation": [ + 1.75635815, 0.1111089, -1.07744527 + ], + "rotation": [ + -0.00158689881, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 0.999999166, 0.999999166, 0.9999998 + ], + "name": "Wing_Spoiler_1_4_left", + "children": [58] + }, { + "translation": [ + 0, 6.556511e-7, -0.00000309944153 + ], + "rotation": [ + -0.0102724442, -0.168275, -0.0600607246, 0.983855069 + ], + "scale": [ + 1.00002253, 1.00000155, 0.9999774 + ], + "mesh": 19, + "name": "Spoiler_2_left" + }, { + "translation": [ + 1.266262, -0.357050836, -0.87978965 + ], + "rotation": [ + 0.0357552953, -0.105803363, 0.0137958294, 0.9936483 + ], + "scale": [ + 0.999999, 0.9999991, 0.9999996 + ], + "name": "Hydrolic2_Flaps_1_1_left", + "children": [60, 62] + }, { + "translation": [ + -0.002585411, 0.30455035, -0.6518159 + ], + "rotation": [ + -0.0045641847, -0.004072023, -0.000149001367, 0.9999813 + ], + "scale": [ + 1.00000012, 0.99999994, 0.99999994 + ], + "name": "Flaps_1_1_left", + "children": [61] + }, { + "translation": [ + 0.5234699, -0.56279856, -0.07738066 + ], + "rotation": [ + -0.0439668447, -0.153274342, -0.0555402227, 0.985641539 + ], + "scale": [ + 1.0000006, 1.0000006, 1.00000072 + ], + "mesh": 20, + "name": "FLAPS_1_1_LEFT_1" + }, { + "translation": [ + -0.0025844574, 0.304550469, -0.651815653 + ], + "rotation": [ + 0.00173283485, -0.0000230509668, -0.000235040134, 0.9999985 + ], + "scale": [ + 1.00000024, 0.999999642, 1 + ], + "name": "Hydrolic1_Flaps_1_1_left" + }, { + "translation": [ + 4.095128, 0.004290521, -0.768711448 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic1_SPOILER_2_1_left" + }, { + "translation": [ + 4.08401966, -0.29387182, -0.499293 + ], + "rotation": [ + 0.00735273166, 0.694946, 0.00291820848, 0.7190184 + ], + "scale": [ + 0.9999993, 1.00000024, 1.00000012 + ], + "name": "Hydrolic2_SPOILER_2_1_left" + }, { + "translation": [ + -1.92368126, 0.48232764, 2.70130849 + ], + "rotation": [ + 0.6825947, 0.0266455319, -0.0320741422, 0.729606569 + ], + "scale": [ + 1.00000143, 1.00000024, 1.00000024 + ], + "name": "FlapsKrueger_2_left" + }, { + "translation": [ + 1.22019815, 0.462972224, 3.0046103 + ], + "rotation": [ + 0.682609856, 0.0262488779, -0.031650465, 0.7296253 + ], + "scale": [ + 0.9999991, 0.999999464, 0.9999997 + ], + "name": "FlapsKrueger_1_left", + "children": [67, 68] + }, { + "translation": [ + -0.05399704, -0.430566549, 0.5395656 + ], + "rotation": [ + -0.6521564, -0.250215322, 0.169562936, 0.695221364 + ], + "scale": [ + 1.00000107, 0.9999992, 1.000001 + ], + "mesh": 21, + "name": "FLAPSKRUEGER_1_LEFT_1" + }, { + "translation": [ + -4.2860055, -4.131102, -0.2542407 + ], + "rotation": [ + -0.652156353, -0.250215173, 0.169562742, 0.6952215 + ], + "scale": [ + 1.00000036, 0.9999996, 1.00000036 + ], + "mesh": 22, + "name": "FROST_KRUEGER_L_1" + }, { + "translation": [ + 5.42593765, -0.5243263, -3.44257951 + ], + "rotation": [ + -0.047746323, 0.516863644, 0.00933413, 0.854684234 + ], + "scale": [ + 0.999999046, 0.9999994, 0.999999642 + ], + "name": "Flaps_1_left", + "children": [70, 71] + }, { + "translation": [ + 0.00532531738, -0.341880441, 2.4792347 + ], + "rotation": [ + 0.723513842, 0.00672937743, 0.05795717, 0.6878397 + ], + "scale": [ + 1.0000006, 0.999999642, 1 + ], + "name": "flap_hydrolics_17_left" + }, { + "translation": [ + 0.05366087, -0.5436171, -0.0224170685 + ], + "rotation": [ + 0.066437535, -0.717635334, -0.06825059, 0.689875 + ], + "scale": [ + 1.00000036, 1.00000048, 1.00000083 + ], + "mesh": 23, + "name": "FLAPS_1_LEFT_1" + }, { + "translation": [ + 3.86463928, -0.591216445, -3.30302334 + ], + "rotation": [ + 0.4957455, -0.06434884, 0.8660403, -0.008359094 + ], + "scale": [ + 0.9999995, 0.9999992, 0.9999999 + ], + "name": "Wheel_Base_left", + "children": [ + 73, + 75, + 82, + 94, + 101, + 105, + 106, + 129, + 130 + ] + }, { + "translation": [ + 0.238498211, 0.6228665, -0.060988903 + ], + "rotation": [ + -0.7381156, -0.653139, 0.109995052, 0.128436789 + ], + "scale": [ + 0.999999762, 0.9999995, 1.0000006 + ], + "name": "Landing_Gear_18_left", + "children": [74] + }, { + "translation": [ + 0.00115823746, -0.0119762421, -0.002973795 + ], + "rotation": [ + 0.575583339, -0.578817666, -0.406165421, -0.410735369 + ], + "scale": [ + 1.00000119, 1.00000119, 1.000001 + ], + "mesh": 24, + "name": "Landing_Gear_Part19_left" + }, { + "translation": [ + 0.3341503, 2.01456714, -0.263353348 + ], + "rotation": [ + -0.7060459, 0.0425602868, -0.7058247, -0.0387211032 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999997 + ], + "name": "Landing_Gear_33_left", + "children": [76, 81] + }, { + "translation": [ + -0.117916107, 0.148765087, -0.04537821 + ], + "rotation": [ + -0.984737754, 0.008130156, -0.173853, 0.0007824776 + ], + "scale": [ + 0.9999992, 1.00000107, 0.9999999 + ], + "name": "Landing_Gear_37_left", + "children": [77, 79, 80] + }, { + "translation": [ + -0.667953968, -0.574824452, -0.007077217 + ], + "rotation": [ + -0.508839, -0.4962332, 0.4942222, 0.5005796 + ], + "scale": [ + 0.9999965, 1.00000238, 1.00000072 + ], + "name": "Landing_Gear_17_left", + "children": [78] + }, { + "translation": [ + -0.0260596275, -0.00951528549, -0.411591172 + ], + "rotation": [ + 0.5755906, -0.5788251, -0.406154752, -0.4107254 + ], + "scale": [ + 1.00000024, 1.0000006, 0.999999 + ], + "mesh": 25, + "name": "LANDING_GEAR_17_LEFT_1" + }, { + "translation": [ + -0.220382929, 2.38418579e-7, -0.112304211 + ], + "rotation": [ + -4.22581365e-8, -4.030838e-8, 3.632154e-8, 1 + ], + "scale": [ + 0.9999999, 1.00000083, 0.9999992 + ], + "name": "Landing_Gear_31_left" + }, { + "translation": [ + 0.01300478, 0.004827738, 0.0120024681 + ], + "rotation": [ + -0.984737754, 0.008130249, -0.173853129, -0.000781796 + ], + "scale": [ + 1.00000131, 0.999998, 1.0000025 + ], + "mesh": 26, + "name": "LANDING_GEAR_31_LEFT_1" + }, { + "translation": [ + 0.006790161, -0.001244545, -0.0103011131 + ], + "rotation": [ + 5.51342737e-7, 1.21071452e-7, 4.693859e-7, 1 + ], + "scale": [ + 1, 0.9999995, 1.00000024 + ], + "mesh": 27, + "name": "LANDING_GEAR_33_LEFT_1" + }, { + "translation": [ + 0.66707325, 2.00849175, -0.241577148 + ], + "rotation": [ + -0.7096821, -0.09555769, -0.696978, 0.0379722454 + ], + "scale": [ + 0.99999994, 1.00000072, 0.9999998 + ], + "name": "Landing_Gear_34_left", + "children": [83, 93] + }, { + "translation": [ + -0.09678888, 0.1311264, 0.0691962242 + ], + "rotation": [ + -0.8397728, -0.406130165, 0.352002054, 0.07703619 + ], + "scale": [ + 0.999999046, 1.00000119, 0.9999998 + ], + "name": "Landing_Gear_38_left", + "children": [84, 92] + }, { + "translation": [ + -0.006328702, -0.943199158, 0.00322252512 + ], + "rotation": [ + -0.7569836, -0.6488944, 0.07686616, 0.001832599 + ], + "scale": [ + 0.9999984, 1.00000346, 0.9999983 + ], + "name": "Landing_Gear_32_left", + "children": [85, 90, 91] + }, { + "translation": [ + 0, -2.38418579e-7, 4.76837158e-7 + ], + "rotation": [ + -1.71364093e-7, -3.35274137e-8, 5.960465e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999995, 1.00000036 + ], + "name": "Landing_Gear_27_left", + "children": [86, 88, 89] + }, { + "translation": [ + -0.161371708, 0.885039, -0.0548084974 + ], + "rotation": [ + 0.0121803228, -0.607089639, 0.0937830061, 0.7889858 + ], + "scale": [ + 0.999996841, 0.9999983, 1.00000453 + ], + "name": "Landing_Gear_28_left", + "children": [87] + }, { + "translation": [ + -5.066395e-7, 0.444334865, 0.00736904144 + ], + "rotation": [ + 0.00000163987977, -0.468125641, 0.0000025126044, 0.8836619 + ], + "scale": [ + 0.9999737, 0.9999993, 1.00003 + ], + "mesh": 28, + "name": "LANDING_GEAR_28_LEFT_1" + }, { + "translation": [ + 0.0539302826, 0.152822375, -0.0107142925 + ], + "rotation": [ + -0.04510645, 0.07957641, 0.09312738, 0.9914436 + ], + "scale": [ + 0.9999985, 0.9999958, 1.00000453 + ], + "name": "Landing_Gear_23_left" + }, { + "translation": [ + -0.0738983154, 0.454004884, -0.01869607 + ], + "rotation": [ + -0.18356587, 0.3813829, -0.104943074, 0.8999098 + ], + "scale": [ + 1.00000024, 0.9999972, 1.000003 + ], + "mesh": 29, + "name": "LANDING_GEAR_27_LEFT_1" + }, { + "translation": [ + -1.28527832, 0.0296032429, 0.135627866 + ], + "rotation": [ + -0.0498267226, 0.05795893, -0.0002607252, 0.9970747 + ], + "scale": [ + 0.99999404, 1.00000179, 1.00000525 + ], + "name": "Landing_Gear_29_left" + }, { + "translation": [ + 0.013048172, 0.0218169689, 0.0144401789 + ], + "rotation": [ + 0.0008357707, -0.286377817, 0.304132879, 0.908565 + ], + "scale": [ + 1.00000238, 0.999996841, 1.00000024 + ], + "mesh": 30, + "name": "Landing_Gear_30_left" + }, { + "translation": [ + 0.0110375881, 0.00550031662, 0.00203478336 + ], + "rotation": [ + -0.837783, -0.418002129, 0.2770736, -0.215926468 + ], + "scale": [ + 0.999998152, 0.9999995, 1.00000238 + ], + "mesh": 31, + "name": "LANDING_GEAR_32_LEFT_1" + }, { + "translation": [ + 0.00687122345, -0.00369405746, -0.009634495 + ], + "rotation": [ + -0.151399881, 0.00672889035, 0.0438832454, 0.9874751 + ], + "scale": [ + 1, 0.9999994, 1.00000179 + ], + "mesh": 32, + "name": "LANDING_GEAR_34_LEFT_1" + }, { + "translation": [ + 0.276956558, 1.2843008, -0.173484325 + ], + "rotation": [ + -0.708400846, -0.000837276748, -0.70367527, -0.0548514463 + ], + "scale": [ + 0.9999982, 1.00000179, 1 + ], + "name": "Landing_Gear_20_left", + "children": [95, 100] + }, { + "translation": [ + -0.008528233, 0.0648286343, -0.0042090416 + ], + "rotation": [ + 0.5267732, 0.43828246, -0.377283126, 0.6229574 + ], + "scale": [ + 1, 1, 0.999999464 + ], + "name": "Landing_Gear_21_left", + "children": [96, 98, 99] + }, { + "translation": [ + -0.00144147873, -0.162924767, -0.0667929649 + ], + "rotation": [ + 0.5143717, -0.5180526, 0.4851355, 0.4813385 + ], + "scale": [ + 0.99999845, 1.00000036, 1.00000072 + ], + "name": "Landing_Gear_19_left", + "children": [97] + }, { + "translation": [ + -0.538559, -0.01801157, -0.294340849 + ], + "rotation": [ + 0.575583935, -0.5788183, -0.4061652, -0.410734 + ], + "scale": [ + 1.00000191, 0.9999999, 0.999999344 + ], + "mesh": 33, + "name": "Landing_Gear_Part18_left" + }, { + "translation": [ + -9.536743e-7, -0.13403368, -0.00518023968 + ], + "rotation": [ + 4.84279781e-8, -9.413213e-8, 3.74281157e-8, 1 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000048 + ], + "name": "Landing_Gear_41_left" + }, { + "translation": [ + 0.0119643211, 0.002888918, 0.001449585 + ], + "rotation": [ + -0.5570007, -0.4223316, 0.3943116, 0.5965774 + ], + "scale": [ + 1.00000191, 0.99999994, 1.00000048 + ], + "mesh": 34, + "name": "LANDING_GEAR_21_LEFT_1" + }, { + "translation": [ + 0.00686788559, -0.00106537342, -0.0102734566 + ], + "rotation": [ + -0.0192427468, 0.000813028659, 0.0422104076, 0.9989231 + ], + "scale": [ + 1.00000024, 0.999998569, 0.9999991 + ], + "mesh": 35, + "name": "Landing_Gear_Part17_left" + }, { + "translation": [ + 0.2054596, 2.51543021, 0.0104985237 + ], + "rotation": [ + 0.05778034, 0.701247156, 0.707739532, 0.06339251 + ], + "scale": [ + 1.00000048, 1.0000006, 0.9999989 + ], + "name": "Landing_Gear_07_left", + "children": [102, 103, 104] + }, { + "translation": [ + 0.713954, -0.125073433, 0.177424431 + ], + "rotation": [ + -0.444532126, -0.450933218, 0.5486535, 0.5459211 + ], + "scale": [ + 1.000001, 1.00000107, 0.999999046 + ], + "name": "landing_gear08_left" + }, { + "translation": [ + 0.302407265, -0.1270957, -0.1663909 + ], + "rotation": [ + -0.4445324, -0.450934261, 0.548653364, 0.545920134 + ], + "scale": [ + 0.999999642, 1.00000262, 0.999999166 + ], + "name": "landing_gear01_left" + }, { + "translation": [ + 0.0145492554, 0.009215355, -0.00437998772 + ], + "rotation": [ + -0.44761, -0.453672379, 0.546082139, 0.5437104 + ], + "scale": [ + 0.9999991, 1.00000226, 0.99999994 + ], + "mesh": 36, + "name": "LANDING_GEAR_07_LEFT_1" + }, { + "translation": [ + 0.2576151, 2.26505852, -0.121347904 + ], + "rotation": [ + -0.7060459, 0.0425600223, -0.705824733, -0.0387208536 + ], + "scale": [ + 1.00000036, 1.00000167, 1.00000012 + ], + "name": "landing_gear07_left" + }, { + "translation": [ + 0.37328434, 3.202888, -0.0094332695 + ], + "rotation": [ + -0.001716404, -0.707084954, -0.00556211546, 0.7071046 + ], + "scale": [ + 0.9999992, 1.00000048, 0.99999994 + ], + "name": "Landing_Gear_10_left", + "children": [ + 107, + 109, + 110, + 126, + 127, + 128 + ] + }, { + "translation": [ + 0.02512598, -0.339024067, 0.11894083 + ], + "rotation": [ + -0.53749454, -0.5397919, -0.461148649, 0.455045432 + ], + "scale": [ + 0.9999951, 0.999999046, 1.00000632 + ], + "name": "Landing_Gear_08_left", + "children": [108] + }, { + "translation": [ + 0.506953239, -0.0549645424, -0.2282052 + ], + "rotation": [ + -0.4957625, -0.5020052, 0.502006352, 0.5002 + ], + "scale": [ + 1.00000155, 0.9999951, 1.00000477 + ], + "mesh": 37, + "name": "LANDING_GEAR_08_LEFT_1" + }, { + "translation": [ + -0.106812954, -0.1869855, 0.245285511 + ], + "rotation": [ + -0.99862957, -4.82746259e-7, 4.917588e-7, -0.05233586 + ], + "scale": [ + 1.00000107, 1.00000143, 0.9999998 + ], + "name": "landing_gear05_left" + }, { + "translation": [ + 0, 0.00338745117, -0.0809435844 + ], + "rotation": [ + -0.99862957, -1.53951171e-10, -6.803354e-11, -0.0523355044 + ], + "scale": [ + 0.99999994, 0.999999762, 1 + ], + "name": "Landing_Gear_09_left", + "children": [ + 111, + 112, + 115, + 119, + 122, + 125 + ] + }, { + "translation": [ + 0.04093027, -0.241693735, -0.0619039536 + ], + "rotation": [ + -0.500420034, -0.500418, 0.499581784, -0.499579519 + ], + "scale": [ + 0.9999992, 1.000001, 1 + ], + "name": "Landing_Gear_35_left" + }, { + "translation": [ + 0.0474247932, -0.24166441, 0.0612587929 + ], + "rotation": [ + -0.5004198, -0.500417769, 0.499582082, -0.499579728 + ], + "scale": [ + 0.9999991, 1.000001, 0.9999999 + ], + "name": "Landing_Gear_36_left", + "children": [113, 114] + }, { + "translation": [ + 0.123153687, -0.00648736954, 0.00023651123 + ], + "rotation": [ + -0.500419736, -0.5004176, 0.499582231, 0.499579877 + ], + "scale": [ + 0.999999642, 0.9999999, 1.00000131 + ], + "mesh": 38, + "name": "LANDING_GEAR_35_LEFT_1" + }, { + "translation": [ + -0.000009536743, 9.536743e-7, 0.00000476837158 + ], + "rotation": [ + -0.5004196, -0.50041765, 0.4995821, 0.499579877 + ], + "scale": [ + 0.9999999, 1.00000036, 1.00000143 + ], + "mesh": 39, + "name": "LANDING_GEAR_36_LEFT_1" + }, { + "translation": [ + 0.09416151, 0.312451124, 0.243170738 + ], + "rotation": [ + 0.5010935, -0.499796718, 0.49570924, 0.50336957 + ], + "scale": [ + 1.00000036, 1.00000036, 1.00000012 + ], + "name": "Landing_Gear_06_left", + "children": [116, 117, 118] + }, { + "translation": [ + 0.414316177, 0.08274412, -0.02635479 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear03_left" + }, { + "translation": [ + 0.217025757, 0.08245802, -0.258730173 + ], + "rotation": [ + -0.50109446, 0.499795526, -0.495703727, 0.5033752 + ], + "scale": [ + 1.00000286, 1.00000572, 0.9999921 + ], + "name": "landing_gear02_left" + }, { + "translation": [ + 0.00138187408, -0.004263878, -0.0006508827 + ], + "rotation": [ + -0.501093864, 0.4997968, -0.4957092, 0.503369153 + ], + "scale": [ + 1.00000083, 1.00000012, 1 + ], + "mesh": 40, + "name": "LANDING_GEAR_37_LEFT_1" + }, { + "translation": [ + 0.0517382622, -0.00169229507, 0.681097031 + ], + "rotation": [ + -8.662515e-7, 9.862437e-15, 7.1051156500000006e-15, 1 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_01_key_left", + "children": [120, 121] + }, { + "translation": [ + 4.76837158e-7, 0, -0.00000190734863 + ], + "rotation": [ + 2.03044692e-10, 1.016133e-9, 1.911394e-8, 1 + ], + "scale": [ + 1.00000978, 0.999988, 1.0000031 + ], + "mesh": 41, + "name": "LWheel_01_still" + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, 0 + ], + "rotation": [ + 8.026786e-7, -8.105201e-15, 0, 1 + ], + "scale": [ + 0.999952137, 1.000008, 1.0000416 + ], + "mesh": 42, + "name": "LWheel_01_blurred" + }, { + "translation": [ + 0.03893137, -0.00159454346, -0.7607932 + ], + "rotation": [ + -1, -3.5525578200000003e-15, 1.26194213e-14, 1.19248815e-8 + ], + "scale": [ + 0.9999605, 1.00004387, 0.9999974 + ], + "name": "tire_02_key_left", + "children": [123, 124] + }, { + "translation": [ + -4.76837158e-7, 0.00000190734863, 0.00000429153442 + ], + "rotation": [ + -1, -1.60653144e-8, 1.57129421e-7, -5.520255e-7 + ], + "scale": [ + 1.00000978, 0.9999886, 1.00000107 + ], + "mesh": 43, + "name": "LWheel_02_still" + }, { + "translation": [ + 0, -2.38418579e-7, 0 + ], + "rotation": [ + -1, -2.421439e-8, 9.313227e-8, 1.19248869e-8 + ], + "scale": [ + 1.00001, 0.9999903, 1.00000131 + ], + "mesh": 44, + "name": "LWheel_02_blurred" + }, { + "translation": [ + 0.0457148552, -0.000407457352, 0.00207710266 + ], + "rotation": [ + 1.30385075e-7, -6.967454e-8, -9.662475e-9, 1 + ], + "scale": [ + 1.00000119, 1.0000006, 1.00000072 + ], + "mesh": 45, + "name": "LANDING_GEAR_09_LEFT_1" + }, { + "translation": [ + 0.0153021812, -0.474268675, -0.275248051 + ], + "rotation": [ + -0.9986295, -5.223288e-7, 0.00000105891706, -0.05233606 + ], + "scale": [ + 1.000003, 0.999992669, 1.00000656 + ], + "name": "landing_gear06_left" + }, { + "translation": [ + -0.106812, -0.491230726, -0.296488762 + ], + "rotation": [ + -0.9992415, -2.31640115e-7, -0.00000165028121, -0.0389420353 + ], + "scale": [ + 0.9999983, 1.00000632, 0.9999982 + ], + "name": "landing_gear04_left" + }, { + "translation": [ + -5.05787468, -3.95648575, 0.523609161 + ], + "rotation": [ + -0.99862957, -4.92221e-9, 9.39215852e-8, -0.05233583 + ], + "scale": [ + 1.00000226, 0.999999166, 0.9999993 + ], + "mesh": 46, + "name": "LANDING_GEAR_10_LEFT_1" + }, { + "translation": [ + 1.22382164, -0.348029673, -0.153943539 + ], + "rotation": [ + 0.00730145676, -0.7070985, 0.00345581421, 0.707069039 + ], + "scale": [ + 0.999999464, 1.00000012, 1 + ], + "name": "Landing_Gear_14_left" + }, { + "translation": [ + -0.0100855827, 0.00238180161, 0.00680065155 + ], + "rotation": [ + -0.7060458, 0.042559918, -0.705824852, -0.0387207158 + ], + "scale": [ + 0.999999464, 1.00000024, 1.00000024 + ], + "mesh": 47, + "name": "Landing_gear_Root_left" + }, { + "translation": [ + 7.87326145, -0.4715016, -1.4636035 + ], + "rotation": [ + -0.04368639, 0.5110596, 0.006458442, 0.85841006 + ], + "scale": [ + 1.0000267, 0.9999997, 0.9999734 + ], + "name": "Spoiler_hydrolics_06_left", + "children": [132] + }, { + "translation": [ + 0.30559063, 0.37230444, 0.0004930496 + ], + "rotation": [ + -0.00121602661, 0.0246534385, -0.364978939, 0.93068856 + ], + "scale": [ + 0.999999, 0.999998868, 1.00000012 + ], + "name": "Spoiler_hydrolics_05_left" + }, { + "translation": [ + 2.3125658, -0.8711244, -4.775808 + ], + "rotation": [ + 0.6289141, 0.328698784, -0.377832532, 0.594698846 + ], + "scale": [ + 0.999999, 1.00000024, 0.9999997 + ], + "name": "Landing_Gear_15_left", + "children": [134] + }, { + "translation": [ + -0.107633591, 0.367097139, 0.221658289 + ], + "rotation": [ + -0.579571843, 0.415744662, -0.575418234, -0.400183469 + ], + "scale": [ + 0.9999995, 1.000001, 0.9999995 + ], + "name": "Landing_Gear_16_left", + "children": [135] + }, { + "translation": [ + 0.6260624, -0.0166931152, -0.7131872 + ], + "rotation": [ + 0.5755837, -0.578818262, -0.406164676, -0.410734951 + ], + "scale": [ + 1.0000006, 1.00000107, 0.99999994 + ], + "mesh": 48, + "name": "LANDING_GEAR_16_LEFT_1" + }, { + "translation": [ + 1.24259949, -1.15350151, -2.95930552 + ], + "rotation": [ + 0.479384363, -0.257725239, 0.833346248, 0.09644882 + ], + "scale": [ + 0.9999996, 0.999999344, 0.9999994 + ], + "name": "Door02_left", + "children": [137] + }, { + "translation": [ + 0.0292415619, 0.0164477825, 0.0305221081 + ], + "rotation": [ + -0.7121538, 0.0404369347, -0.6989766, -0.0513186865 + ], + "scale": [ + 1.000001, 1.00000155, 1.00000083 + ], + "mesh": 49, + "name": "DOOR02_LEFT_1" + }, { + "translation": [ + 3.96934652, -0.816748261, -2.69679284 + ], + "rotation": [ + 0.538764954, -0.0777338743, 0.838860333, -0.00181733642 + ], + "scale": [ + 0.9999999, 0.9999993, 0.9999994 + ], + "name": "Door03_left", + "children": [139] + }, { + "translation": [ + 0.0202989578, -0.03869778, 0.005985737 + ], + "rotation": [ + -0.7412073, 0.0514066, -0.6687302, -0.02773094 + ], + "scale": [ + 0.9999993, 1, 1.00000048 + ], + "mesh": 50, + "name": "DOOR03_LEFT_1" + }, { + "translation": [ + 3.8755126, -0.573711038, -3.31409645 + ], + "rotation": [ + -0.96442163, 0.05358719, -0.258697569, -0.009747672 + ], + "scale": [ + 1, 0.9999997, 1 + ], + "name": "WING_DOOR02_left", + "children": [141] + }, { + "translation": [ + 0.111740112, 0.0142503977, -0.00404214859 + ], + "rotation": [ + -0.9994614, -0.0107857445, -0.0168499034, -0.02601324 + ], + "scale": [ + 1.000001, 1.00000072, 1.00000024 + ], + "mesh": 51, + "name": "Door04_left" + }, { + "translation": [ + 5.868531, -0.6075288, 2.41399121 + ], + "rotation": [ + 0.007325325, -0.259887159, -0.06454417, 0.9634517 + ], + "scale": [ + 0.9999994, 0.999999344, 0.999999642 + ], + "name": "Engine_PIVOT_LEFT_1", + "children": [ + 143, + 147, + 150, + 151, + 152, + 153 + ] + }, { + "translation": [ + 0.187080383, -1.39431429, 7.75744867 + ], + "rotation": [ + -0.706999362, -0.004892461, 0.7069988, -0.0167527739 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Reactor_Prop_Still_left", + "children": [144, 145, 146] + }, { + "translation": [ + 2.09180117, 0.00000238418579, -9.536743e-7 + ], + "rotation": [ + -0.7071068, -4.248643e-8, 0.7071068, 1.46207171e-7 + ], + "scale": [ + 0.999999642, 0.99999994, 1 + ], + "mesh": 52, + "name": "1_still_left" + }, { + "translation": [ + 2.09180021, 0, -0.000005722046 + ], + "rotation": [ + 1.12611218e-7, -0.7071068, -8.231805e-8, 0.7071067 + ], + "scale": [ + 0.9999999, 0.9999998, 0.999998569 + ], + "mesh": 53, + "name": "1_slow_left" + }, { + "translation": [ + 2.09180021, 0, -0.000005722046 + ], + "rotation": [ + 1.12611218e-7, -0.7071068, -8.231805e-8, 0.7071067 + ], + "scale": [ + 0.9999999, 0.9999998, 0.999998569 + ], + "mesh": 54, + "name": "1_blurred_left" + }, { + "translation": [ + 0.185770988, -1.42669415, 2.07120037 + ], + "rotation": [ + -0.00841917, -0.000007856129, 0.0153245768, 0.9998472 + ], + "scale": [ + 0.997038, 1.00016522, 1.00284588 + ], + "name": "Reactor_Back_left", + "children": [148, 149] + }, { + "translation": [ + -0.633154869, -1.53414607, 1.13394046 + ], + "rotation": [ + -1, 1.48720574e-8, 1.20829412e-7, -1.1161319e-8 + ], + "mesh": 55, + "name": "Engine_Details04_left" + }, { + "translation": [ + 9.536743e-7, -8.34465e-7, 2.90572643e-7 + ], + "rotation": [ + -5.660694e-9, -1.80769248e-8, -9.60717443e-8, 1 + ], + "scale": [ + 0.9999995, 1.00000036, 0.999999762 + ], + "mesh": 56, + "name": "Engine_Duct_left" + }, { + "translation": [ + -9.662211, -0.181626573, 1.91145885 + ], + "rotation": [ + -0.008386433, -3.86259416e-7, 0.0153054595, 0.9998477 + ], + "scale": [ + 0.9999999, 0.9999995, 0.999998748 + ], + "mesh": 57, + "skin": 1, + "name": "Engine_Body_left" + }, { + "translation": [ + 0.188099861, -1.456358, 4.35355 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 58, + "name": "FX_EXHAUST_LEFT" + }, { + "translation": [ + -9.66222, -0.1816263, 1.91145885 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 59, + "name": "FROST_ENGINEL" + }, { + "translation": [ + 0.1700716, -1.13339233, 4.487426 + ], + "rotation": [ + -0.008386433, -3.75154627e-7, 0.0153054614, 0.9998477 + ], + "scale": [ + 1.00000012, 0.9999999, 0.9999998 + ], + "mesh": 60, + "name": "Livery_KLM_EngA" + }, { + "translation": [ + 3.62843657, -0.5176573, -4.124836 + ], + "rotation": [ + -0.0436866172, 0.511059642, 0.00645813253, 0.8584101 + ], + "scale": [ + 0.999999642, 0.999999046, 0.9999993 + ], + "name": "Spoiler_1_1_left" + }, { + "translation": [ + 7.982996, -0.0362906456, -1.76054883 + ], + "rotation": [ + -0.0436880365, 0.511059463, 0.006455744, 0.8584102 + ], + "scale": [ + 1.00002742, 0.9999997, 0.999972761 + ], + "name": "Spoiler_1_3_left" + }, { + "translation": [ + 5.91475, -0.2239846, -2.897406 + ], + "rotation": [ + -0.0452547148, 0.504299164, 0.005931459, 0.862322 + ], + "scale": [ + 1.000028, 0.9999999, 0.9999706 + ], + "name": "Spoiler_1_2_left" + }, { + "translation": [ + 5.84781456, -0.608062744, -2.62398887 + ], + "rotation": [ + -0.043685995, 0.5110597, 0.006459456, 0.85841006 + ], + "scale": [ + 0.9999993, 0.999998748, 0.9999998 + ], + "name": "Spoiler_hydrolics_04_left", + "children": [158] + }, { + "translation": [ + 0.266388416, 0.3188628, -0.007379055 + ], + "rotation": [ + -0.00605567638, 0.0124739613, 0.4357108, 0.899979949 + ], + "scale": [ + 1.00000525, 1.00001335, 0.9999815 + ], + "name": "Spoiler_hydrolics_03_left" + }, { + "translation": [ + 3.50820732, -0.7972355, -3.85419559 + ], + "rotation": [ + -0.04368655, 0.511059642, 0.006458112, 0.8584101 + ], + "scale": [ + 0.9999995, 0.999999, 0.9999994 + ], + "name": "Spoiler_hydrolics_01_left", + "children": [160] + }, { + "translation": [ + 0.2856431, 0.290298223, 0.00000190734863 + ], + "rotation": [ + 0.6595856, 0.287899733, 0.275730371, 0.637207448 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000012 + ], + "name": "Spoiler_hydrolics_02_left" + }, { + "translation": [ + 12.9740458, -1.4153657, 6.55199146 + ], + "rotation": [ + 0.00732529536, -0.2598874, -0.06454403, 0.963451564 + ], + "scale": [ + 1.00000036, 1.00000012, 1.00000107 + ], + "name": "Engine_PIVOT_LEFT_2" + }, { + "translation": [ + 0.317629337, -0.32808125, -5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 2.86940356e-8, -1.9079441e-7 + ], + "scale": [ + 0.99999994, 0.99999994, 1 + ], + "name": "Door03_Hydraulic01_left", + "children": [163] + }, { + "translation": [ + -2.98023224e-7, 0.000001937151, -4.76837158e-7 + ], + "rotation": [ + -0.997071862, -0.07647052, -1.69087514e-7, -0.00000238800953 + ], + "scale": [ + 0.9999996, 0.9999996, 1 + ], + "mesh": 61, + "name": "Landing_Gear_02_left" + }, { + "translation": [ + 0.6497253, -2.102611, -5.016356 + ], + "rotation": [ + 0.490909845, 0.490909845, -0.508927763, 0.508927941 + ], + "name": "WING_DOOR03_left", + "children": [165, 167] + }, { + "translation": [ + 0.07994127, 0.32234937, -0.158693552 + ], + "name": "Door03_Hydraulic02_left", + "children": [166] + }, { + "translation": [ + 0.0005803108, 0.00743186474, -0.0133018494 + ], + "rotation": [ + -0.490909845, -0.490909845, 0.508927763, 0.508927941 + ], + "mesh": 62, + "name": "Landing_Gear_01_left" + }, { + "translation": [ + -9.536743e-7, 2.38418579e-7, 0.00000524520874 + ], + "rotation": [ + -0.490909874, -0.490909845, 0.508927763, 0.5089278 + ], + "scale": [ + 1.00000024, 1.00000083, 1.00000048 + ], + "mesh": 63, + "name": "Door01_left" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "rotation": [ + 0.0270323772, 0, 0, 0.999634564 + ], + "name": "Landing_Gear_NosePart16_center", + "children": [ + 169, + 172, + 175, + 187, + 189, + 191, + 195, + 197, + 198, + 199, + 200, + 201, + 202 + ] + }, { + "translation": [ + 0.226090789, -0.9272857, 0.305862427 + ], + "rotation": [ + -0.0270318538, 0.00418857532, -0.00003651558, 0.9996258 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Landing_Gear_NosePart10_center", + "children": [170, 171] + }, { + "translation": [ + -1.63912773e-7, 2.38418579e-7, 0.00000190734863 + ], + "rotation": [ + 0.02703123, -0.00000413203725, 0.000226453747, 0.9996346 + ], + "scale": [ + 0.999999642, 0.9999996, 1.00000024 + ], + "mesh": 64, + "name": "LANDING_GEAR_NOSEPART10_CENTER_1" + }, { + "translation": [ + -0.0236788, 0.00500941277, -0.220270157 + ], + "rotation": [ + 0.0352128372, 0.09999999, -0.00323027675, 0.994358957 + ], + "scale": [ + 1, 1, 0.99999994 + ], + "name": "Landing_Gear_NosePart10_center001" + }, { + "translation": [ + -0.229184151, -0.9398352, 0.313922882 + ], + "rotation": [ + -0.0270323772, -4.13823678e-8, -1.43921968e-8, 0.999634564 + ], + "scale": [ + 1.00000012, 1.00000024, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center", + "children": [173, 174] + }, { + "translation": [ + -3.27825546e-7, 0.114622593, 0.00000190734863 + ], + "rotation": [ + 0.0270324573, -2.3323202600000003e-15, 8.885037e-16, 0.999634564 + ], + "scale": [ + 1.00000012, 0.9999995, 0.99999994 + ], + "mesh": 65, + "name": "LANDING_GEAR_NOSEPART09_CENTER_1" + }, { + "translation": [ + 0.0319646746, 0.0176465511, -0.229705811 + ], + "rotation": [ + 0.0384532958, -0.0858134, -0.00141277455, 0.995567858 + ], + "scale": [ + 1.00000012, 0.9999998, 1.00000024 + ], + "name": "Landing_Gear_NosePart09_center001" + }, { + "translation": [ + -3.14321369e-9, -0.9186151, -0.05517769 + ], + "rotation": [ + -2.33349866e-7, -0.1679142, -4.27881552e-8, 0.985801637 + ], + "scale": [ + 1.00000012, 1.00000012, 0.9999998 + ], + "name": "Gear_Wheel_center", + "children": [176, 184] + }, { + "translation": [ + 0.025592804, -0.410430431, 0.0496406555 + ], + "rotation": [ + 0.000342083629, 0.205400854, 0.009056285, 0.978636 + ], + "scale": [ + 1.00000012, 0.9999996, 0.9999997 + ], + "name": "Landing_Gear_NosePart13_center", + "children": [177, 180, 183] + }, { + "translation": [ + -0.005656481, -0.0457814932, -0.172786713 + ], + "rotation": [ + 0.7665125, -1.98397316e-7, 1.3196258e-7, 0.6422294 + ], + "scale": [ + 0.9999999, 1.00000072, 1.00000024 + ], + "name": "Landing_Gear_NosePart14_center", + "children": [178, 179] + }, { + "translation": [ + 0.008430719, -0.368497849, -0.329550982 + ], + "rotation": [ + -0.7748584, -0.00707002264, -0.005481687, 0.632071555 + ], + "scale": [ + 0.99999994, 0.999999464, 1.00000048 + ], + "name": "gear_pipe_point_3_center" + }, { + "translation": [ + 0.002431035, 0.0204620361, -0.0752792358 + ], + "rotation": [ + -0.7826159, -0.00700203935, -0.00556876557, 0.6224405 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "gear_pipe_point_4_center" + }, { + "translation": [ + -0.00845921, -0.307320476, -0.00150299072 + ], + "rotation": [ + 0.000004078425, -0.0004563113, -0.008934856, 0.99996 + ], + "scale": [ + 0.9999999, 1.00000012, 0.99999994 + ], + "name": "Wheel_center", + "children": [181, 182] + }, { + "translation": [ + -4.76837158e-7, 0.00402164459, 0.0326004028 + ], + "rotation": [ + -0.0453462675, -4.362781e-8, 2.44723641e-9, 0.998971343 + ], + "scale": [ + 0.9999996, 1.00000131, 1.00000179 + ], + "mesh": 66, + "name": "Wheel_Nose_center" + }, { + "translation": [ + -1.1920929e-7, -0.00000143051147, -0.00000762939453 + ], + "rotation": [ + -2.51456868e-7, 2.706654e-9, 1.16415141e-10, 1 + ], + "scale": [ + 1.00000155, 1.00000215, 0.9999995 + ], + "mesh": 67, + "name": "Wheel_Nose_blurred" + }, { + "translation": [ + 0.0235383511, 1.46500814, 0.0104560852 + ], + "rotation": [ + 0.00152151065, -0.000469872466, -0.008934153, 0.9999589 + ], + "scale": [ + 0.9999997, 1.00000024, 1.00000167 + ], + "mesh": 68, + "name": "LANDING_GEAR_NOSEPART13_CENTER_1" + }, { + "translation": [ + -0.0414872169, 0.002967, -0.12130928 + ], + "rotation": [ + -0.5139819, -0.64576596, 0.48561582, -0.2880733 + ], + "scale": [ + 1.00000072, 1.00000012, 0.999999762 + ], + "name": "Landing_Gear_NosePart15_center", + "children": [185, 186] + }, { + "translation": [ + 0.289751053, 0.00052285206, -0.0499343872 + ], + "rotation": [ + -0.5000002, -0.500000358, 0.499999583, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_1_center" + }, { + "translation": [ + 0.212629318, 0.0005228169, -0.05453205 + ], + "rotation": [ + -0.500000238, -0.5000002, 0.499999732, 0.49999997 + ], + "scale": [ + 0.999999762, 0.999999762, 0.9999994 + ], + "name": "gear_pipe_point_5_center" + }, { + "translation": [ + 0.2793044, -0.5019189, -0.021528244 + ], + "rotation": [ + 0.63214463, -0.3321479, -0.34455055, 0.609389842 + ], + "scale": [ + 1.00000024, 0.99999994, 0.9999997 + ], + "name": "Door_Left02_hydraulic02_center", + "children": [188] + }, { + "translation": [ + 0.021283865, 0.03582573, -0.04520595 + ], + "rotation": [ + 0.0583817624, 0.4792682, -0.534093261, 0.6940015 + ], + "scale": [ + 1.00000012, 1.00000024, 0.99999994 + ], + "name": "Door_Left02_hydraulic01_center" + }, { + "translation": [ + -0.000778198242, -0.671867967, 0.21672821 + ], + "rotation": [ + -0.00007376257, -0.8692236, 0.494419247, 0.0000236660471 + ], + "name": "Landing_Gear_NosePart07_center", + "children": [190] + }, { + "translation": [ + -4.39671567e-7, -0.0551891327, -0.05150318 + ], + "rotation": [ + -0.00007309586, -0.88227123, 0.470741421, -0.0000256513758 + ], + "mesh": 69, + "name": "LANDING_GEAR_NOSEPART07_CENTER_1" + }, { + "translation": [ + -0.5013134, -0.144065619, 0.170331955 + ], + "rotation": [ + 0.429701567, 0.4297139, -0.5615561, 0.56156677 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart04_center", + "children": [192, 194] + }, { + "translation": [ + 0.00000190734863, 1.1920929e-7, -1.76764107 + ], + "rotation": [ + 0, 0, 2.27373675e-13, 1 + ], + "name": "Landing_Gear_NosePart05_center", + "children": [193] + }, { + "translation": [ + 0.0594539642, 1.03389919, -0.09794426 + ], + "rotation": [ + -0.444724947, -0.444737166, 0.549734652, 0.549745739 + ], + "scale": [ + 0.9999999, 1, 1 + ], + "mesh": 70, + "name": "LANDING_GEAR_NOSEPART05_CENTER_1" + }, { + "translation": [ + 0.0221004486, 1.00975037, -1.06558466 + ], + "rotation": [ + -0.444724947, -0.444737166, 0.549734652, 0.549745739 + ], + "scale": [ + 0.9999999, 1, 1 + ], + "mesh": 71, + "name": "LANDING_GEAR_NOSEPART04_CENTER_1" + }, { + "translation": [ + -0.2793044, -0.501918554, -0.02152443 + ], + "rotation": [ + -0.593563855, -0.336227626, 0.3405706, 0.647027552 + ], + "scale": [ + 0.99999994, 1, 1 + ], + "name": "Door_Right02_hydraulic02_center", + "children": [196] + }, { + "translation": [ + -0.021283865, -0.0358276367, 0.0452079773 + ], + "rotation": [ + 0.04388803, 0.429552048, -0.5823844, 0.6887579 + ], + "scale": [ + 0.99999994, 1.00000048, 0.99999994 + ], + "name": "Door_Right02_hydraulic01_center" + }, { + "translation": [ + 0, -3.57627869e-7, 0 + ], + "mesh": 72, + "name": "LANDING_GEAR_NOSEPART16_CENTER_1" + }, { + "translation": [ + 0.0015354983, -1.4182421, 0.137683868 + ], + "rotation": [ + -0.0270324219, 0, 0, 0.999634564 + ], + "mesh": 73, + "name": "cgear_landinglight_center" + }, { + "translation": [ + -0.169818163, -0.327804923, 0.138235092 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 74, + "name": "LIGHT_ASOBO_Taxi_Right" + }, { + "translation": [ + 0.174989372, -0.328628778, 0.1374855 + ], + "rotation": [ + 1.0657997500000001e-15, -1, 1.11758753e-8, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 75, + "name": "LIGHT_ASOBO_Taxi_Left" + }, { + "translation": [ + -0.306189775, -0.196983218, 0.138235092 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 76, + "name": "LIGHT_ASOBO_LandingNose_Right" + }, { + "translation": [ + 0.312226921, -0.197624326, 0.1374836 + ], + "rotation": [ + 2.220446e-16, -1, 0, 7.54979e-8 + ], + "scale": [ + 1, 0.999999642, 0.999999642 + ], + "mesh": 77, + "name": "LIGHT_ASOBO_LandingNose_Left" + }, { + "translation": [ + 0.007133007, -0.478288829, 23.7857571 + ], + "rotation": [ + 0.00000354928, -0.7505983, 0.6607588, -0.0000114836384 + ], + "scale": [ + 1.00000012, 1, 1.00000012 + ], + "name": "Landing_Gear_NosePart06_center", + "children": [204, 210] + }, { + "translation": [ + 0, -0.09894562, 1.36242163 + ], + "rotation": [ + 0.009296398, -4.547671e-13, 5.11612942e-13, 0.9999568 + ], + "name": "Landing_Gear_NosePart02_center", + "children": [205, 207, 209] + }, { + "translation": [ + 0, 0.27699852, 0.04716277 + ], + "rotation": [ + 0.1933725, 0, -1.158739e-13, 0.9811255 + ], + "name": "Landing_Gear_NosePart01_center", + "children": [206] + }, { + "translation": [ + 0.0160451457, -0.060836792, 0.01735115 + ], + "rotation": [ + 0.00000115049886, -0.601256132, 0.799056351, 0.0000119644437 + ], + "scale": [ + 0.9999999, 0.9999994, 1.00000072 + ], + "mesh": 78, + "name": "LANDING_GEAR_NOSEPART01_CENTER_1" + }, { + "translation": [ + 1.49011612e-8, 0.07812691, -0.0590516329 + ], + "rotation": [ + 0.0038900394, -0.00000305861067, 0.0000105023964, 0.99999243 + ], + "scale": [ + 0.9999999, 0.9999996, 1.00000036 + ], + "name": "Landing_Gear_NosePart03_center", + "children": [208] + }, { + "translation": [ + 0.008778558, -0.07200813, 0.00249493122 + ], + "rotation": [ + -0.000002378414, -0.7418202, 0.6705988, 0.0000208188576 + ], + "scale": [ + 1, 1.00000072, 1.00000155 + ], + "mesh": 79, + "name": "LANDING_GEAR_NOSEPART03_CENTER_1" + }, { + "translation": [ + 0.000221986324, -0.074596405, -0.00764238834 + ], + "rotation": [ + 0.00000344236764, -0.7444231, 0.6677082, 0.00001151614 + ], + "scale": [ + 0.9999999, 1.00000036, 1.00000036 + ], + "mesh": 80, + "name": "LANDING_GEAR_NOSEPART02_CENTER_1" + }, { + "translation": [ + 0.00474187545, -0.00036239624, -0.000593423843 + ], + "rotation": [ + 0.00000354927715, -0.7505984, 0.660758734, 0.0000114836384 + ], + "scale": [ + 1.00000012, 1.0000006, 1.00000155 + ], + "mesh": 81, + "name": "LANDING_GEAR_NOSEPART06_CENTER_1" + }, { + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "name": "Wing_right", + "children": [212, 214, 221, 354] + }, { + "translation": [ + -0.317629337, 0.32808125, 5.10369 + ], + "rotation": [ + -0.997071862, -0.0764705241, 1.94817673e-8, -1.84558758e-7 + ], + "scale": [ + 0.9999999, 1.00000024, 0.9999999 + ], + "name": "Door03_Hydraulic01_right", + "children": [213] + }, { + "translation": [ + -1.49011612e-7, -3.57627869e-7, 0 + ], + "rotation": [ + 3.643408e-7, 6.06337238e-8, 0.07647052, 0.997071862 + ], + "scale": [ + 0.9999998, 1, 1 + ], + "mesh": 82, + "name": "Landing_Gear_02_right" + }, { + "translation": [ + -1.450443, -1.40532589, 32.1805077 + ], + "rotation": [ + -0.6996959, 0.02121799, 0.08916648, 0.7085371 + ], + "scale": [ + 1.00000012, 1.00000024, 0.9999999 + ], + "name": "Trim_Elevator_right", + "children": [215, 217, 218, 219, 220] + }, { + "translation": [ + -4.46584368, -4.07698631, -0.00621521473 + ], + "rotation": [ + 0.7352896, 0.102219775, 0.1015787, 0.662255347 + ], + "scale": [ + 1.0000006, 1.00000024, 1.0000006 + ], + "name": "Elevator_right", + "children": [216] + }, { + "translation": [ + 0.434057236, -0.0895915, -0.0290718079 + ], + "rotation": [ + -0.972485244, 0.0438992977, -0.223115847, -0.0506432168 + ], + "scale": [ + 0.999998152, 1.00000036, 1.00000036 + ], + "mesh": 83, + "name": "ELEVATOR_RIGHT_1" + }, { + "translation": [ + 0.00000190734863, 0.00000381469727, 0.0000267624855 + ], + "rotation": [ + -0.708537, 0.08916643, -0.0212179776, 0.699696 + ], + "scale": [ + 0.9999995, 1.00000167, 0.99999994 + ], + "mesh": 84, + "name": "TRIM_ELEVATOR_RIGHT_1" + }, { + "translation": [ + -2.0646615, -1.33726311, -0.2853936 + ], + "rotation": [ + -0.0212182011, -0.699696064, 0.7085369, 0.08916638 + ], + "scale": [ + 0.999999464, 1.00000024, 0.99999994 + ], + "mesh": 85, + "name": "LIGHT_ASOBO_Logo_Right" + }, { + "translation": [ + 6.54495764, 31.5664921, 0.619330764 + ], + "rotation": [ + -0.708536863, 0.08916645, -0.0212180633, 0.6996961 + ], + "scale": [ + 0.9999995, 1.00000024, 0.999999762 + ], + "mesh": 86, + "name": "FROST_ELEVATORR" + }, { + "translation": [ + 0.0295939445, -0.0198955536, 0.0831642747 + ], + "rotation": [ + -0.708537042, 0.08916648, -0.02121799, 0.699695945 + ], + "scale": [ + 0.999999642, 1.00000024, 0.9999998 + ], + "mesh": 87, + "name": "Livery_KLM_ElevatorTrimR" + }, { + "translation": [ + -3.348375, 0.123601377, 1.04428136 + ], + "rotation": [ + 0.004733401, 0.259418637, 0.0519678779, 0.964354157 + ], + "scale": [ + 1, 1, 0.9999999 + ], + "name": "WING_BONE_RIGHT_00", + "children": [ + 222, + 224, + 226, + 238, + 241, + 244, + 247, + 248, + 249, + 250, + 252, + 254, + 256, + 293, + 295, + 353 + ] + }, { + "translation": [ + -1.24259973, 1.15350306, 2.95930767 + ], + "rotation": [ + 0.479384154, -0.2577262, 0.833346, 0.09644934 + ], + "scale": [ + 1.0000006, 1.00000012, 0.99999994 + ], + "name": "Door02_right", + "children": [223] + }, { + "translation": [ + -0.00695943832, -0.026063621, -0.0171692371 + ], + "rotation": [ + -0.0541638546, -0.71198833, -0.05044105, 0.698279738 + ], + "scale": [ + 1, 0.9999998, 0.999999642 + ], + "mesh": 88, + "name": "DOOR02_RIGHT_1" + }, { + "translation": [ + -3.96934962, 0.816749454, 2.69679642 + ], + "rotation": [ + 0.538764834, -0.07773489, 0.8388602, -0.001816788 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000012 + ], + "name": "Door03_right", + "children": [225] + }, { + "translation": [ + -0.0244517326, 0.00226718187, -0.006999016 + ], + "rotation": [ + -0.0277300254, -0.6687305, -0.05140735, 0.741207063 + ], + "scale": [ + 1.00000048, 0.9999989, 1.00000036 + ], + "mesh": 89, + "name": "DOOR03_RIGHT_1" + }, { + "translation": [ + -5.868534, 0.60752964, -2.41399217 + ], + "rotation": [ + 0.00732532656, -0.259887159, -0.064544186, 0.9634517 + ], + "scale": [ + 1, 1.00000012, 1.00000012 + ], + "name": "Engine_PIVOT_RIGHT_1", + "children": [ + 227, + 230, + 234, + 235, + 236, + 237 + ] + }, { + "translation": [ + -0.1857748, 1.42669618, -2.070343 + ], + "rotation": [ + -0.00838642847, -3.57871585e-7, 0.0153054669, 0.9998477 + ], + "scale": [ + 0.999999762, 1.00000048, 1 + ], + "name": "Reactor_Back_right", + "children": [228, 229] + }, { + "translation": [ + 0.00000381469727, 0.0000143051147, -0.0008557439 + ], + "rotation": [ + -1, 9.31321e-8, 8.661304e-8, 1.11758666e-7 + ], + "scale": [ + 1.000001, 1.000001, 1.00000048 + ], + "mesh": 90, + "name": "Engine_Duct_right" + }, { + "translation": [ + 0.633159637, 1.5341574, -1.1347959 + ], + "rotation": [ + -1, 9.31321e-8, 8.661304e-8, 1.11758666e-7 + ], + "scale": [ + 1.000001, 1.000001, 1.00000048 + ], + "mesh": 91, + "name": "Engine_Details04_right" + }, { + "translation": [ + -0.187087059, 1.39431691, -7.757461 + ], + "rotation": [ + -0.70699966, -0.004893535, 0.7069985, -0.0167538542 + ], + "scale": [ + 1.00000036, 0.9999999, 0.9999994 + ], + "name": "Reactor_Prop_Still_right", + "children": [231, 232, 233] + }, { + "translation": [ + -2.09181356, 0.00000262260437, 0.000002861023 + ], + "rotation": [ + 0.707106352, -0.00000134672428, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000072, 1.00000012, 0.9999983 + ], + "mesh": 92, + "name": "2_blurred_right" + }, { + "translation": [ + -2.09181356, 0.00000262260437, 0.000002861023 + ], + "rotation": [ + 0.707106352, -0.00000134672428, 0.7071072, -0.00000114838178 + ], + "scale": [ + 1.00000072, 1.00000012, 0.9999983 + ], + "mesh": 93, + "name": "2_slow_right" + }, { + "translation": [ + -2.09181452, 2.38418579e-7, 0.000008583069 + ], + "rotation": [ + 0.00000142262149, 0.707106352, 0.00000106503114, 0.7071072 + ], + "scale": [ + 1.00000119, 0.99999994, 0.999999046 + ], + "mesh": 94, + "name": "2_still_right" + }, { + "translation": [ + 9.66221, 0.181626081, -1.91145885 + ], + "rotation": [ + -0.9998477, -0.0153054586, -2.24708515e-7, -0.008386253 + ], + "scale": [ + 0.9999997, 0.9999994, 0.999999046 + ], + "mesh": 95, + "skin": 2, + "name": "Engine_Body_right" + }, { + "translation": [ + -0.188096046, 1.45635879, -4.35354853 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 96, + "name": "FX_EXHAUST_RIGHT" + }, { + "translation": [ + 9.662219, 0.181626022, -1.91145992 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 97, + "name": "FROST_ENGINER" + }, { + "translation": [ + -0.172908783, 1.13330376, -4.48742437 + ], + "rotation": [ + -0.9998477, -0.0153054548, -2.00650533e-7, -0.008386262 + ], + "scale": [ + 1.00000012, 1, 0.9999999 + ], + "mesh": 98, + "name": "Livery_KLM_EngB" + }, { + "translation": [ + -1.22019887, -0.462972879, -3.0046134 + ], + "rotation": [ + 0.682610035, 0.0262489542, -0.0316506177, 0.7296251 + ], + "scale": [ + 1.00000012, 1.00000072, 1.00000048 + ], + "name": "FlapsKrueger_1_right", + "children": [239, 240] + }, { + "translation": [ + 0.0344409943, 0.430824518, -0.540390551 + ], + "rotation": [ + 0.6952215, 0.169562757, 0.250215232, 0.652156353 + ], + "scale": [ + 0.999999166, 0.99999845, 0.999999 + ], + "mesh": 99, + "name": "FLAPSKRUEGER_1_RIGHT_1" + }, { + "translation": [ + 4.28600359, 4.1310997, 0.2542377 + ], + "rotation": [ + 0.695221364, 0.16956304, 0.250215232, 0.6521565 + ], + "scale": [ + 0.9999997, 0.9999996, 0.9999996 + ], + "mesh": 100, + "name": "FROST_KRUEGER_R_1" + }, { + "translation": [ + -5.42594433, 0.5245416, 3.44597554 + ], + "rotation": [ + -0.04774639, 0.5168637, 0.00933412, 0.854684234 + ], + "scale": [ + 1.00000024, 1.0000006, 1.0000006 + ], + "name": "Flaps_1_right", + "children": [242, 243] + }, { + "translation": [ + -0.005323887, 0.341879964, -2.47923374 + ], + "rotation": [ + 0.7235138, 0.006729279, 0.05795712, 0.687839746 + ], + "scale": [ + 0.9999998, 0.9999999, 1.00000012 + ], + "name": "flap_hydrolics_17_right" + }, { + "translation": [ + -0.06590319, 0.5249982, 0.00364017487 + ], + "rotation": [ + 0.6898752, -0.0682501, 0.7176352, -0.0664377958 + ], + "scale": [ + 0.9999999, 1, 1.00000012 + ], + "mesh": 101, + "name": "FLAPS_1_RIGHT_1" + }, { + "translation": [ + -2.31256652, 0.8711257, 4.775813 + ], + "rotation": [ + 0.6289141, 0.328698874, -0.377832651, 0.5946988 + ], + "scale": [ + 1.00000024, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_15_right", + "children": [245] + }, { + "translation": [ + 0.107634544, -0.3670988, -0.2216587 + ], + "rotation": [ + -0.579570949, 0.415745556, -0.575418353, -0.400183737 + ], + "scale": [ + 1.00000083, 1.000002, 0.99999845 + ], + "name": "Landing_Gear_16_right", + "children": [246] + }, { + "translation": [ + -0.626064062, 0.0166926384, 0.713189363 + ], + "rotation": [ + 0.5755835, -0.5788179, -0.4061651, -0.4107352 + ], + "scale": [ + 1.00000024, 0.9999999, 1.00000012 + ], + "mesh": 102, + "name": "LANDING_GEAR_16_RIGHT_1" + }, { + "translation": [ + -3.62844014, 0.5168278, 4.12484026 + ], + "rotation": [ + -0.04368652, 0.5110595, 0.00645816652, 0.8584102 + ], + "scale": [ + 0.9999996, 1.0000006, 1.00000012 + ], + "name": "Spoiler_1_1_right" + }, { + "translation": [ + -5.914755, 0.223984957, 2.89741 + ], + "rotation": [ + -0.04528014, 0.5080569, 0.00573390163, 0.860113442 + ], + "scale": [ + 0.9999406, 1.00000036, 1.00005925 + ], + "name": "Spoiler_1_2_right" + }, { + "translation": [ + -7.98300171, 0.0362910032, 1.76055336 + ], + "rotation": [ + -0.0436879, 0.5110594, 0.00645576557, 0.8584102 + ], + "scale": [ + 0.999996543, 0.999997437, 1.00000763 + ], + "name": "Spoiler_1_3_right" + }, { + "translation": [ + -3.50821, 0.7972367, 3.85419965 + ], + "rotation": [ + -0.0436865352, 0.5110595, 0.00645813067, 0.8584102 + ], + "scale": [ + 1.0000006, 1.00000012, 1.00000024 + ], + "name": "Spoiler_hydrolics_01_right", + "children": [251] + }, { + "translation": [ + -0.2856431, -0.2902993, 0.00000143051147 + ], + "rotation": [ + 0.659585953, 0.287899345, 0.27573052, 0.6372072 + ], + "scale": [ + 1.00000048, 1.00000048, 1.00000083 + ], + "name": "Spoiler_hydrolics_02_right" + }, { + "translation": [ + -5.847822, 0.6080638, 2.62399244 + ], + "rotation": [ + -0.0436855778, 0.5110596, 0.006460557, 0.8584101 + ], + "scale": [ + 0.9999967, 0.9999998, 1.000003 + ], + "name": "Spoiler_hydrolics_04_right", + "children": [253] + }, { + "translation": [ + -0.266388416, -0.318862677, 0.00736522675 + ], + "rotation": [ + -0.00608323934, 0.0124876853, 0.435711771, 0.8999791 + ], + "scale": [ + 0.9999625, 1.00002575, 1.00001311 + ], + "name": "Spoiler_hydrolics_03_right" + }, { + "translation": [ + -7.873269, 0.471502423, 1.46360469 + ], + "rotation": [ + -0.043686796, 0.5110597, 0.00645971065, 0.85841006 + ], + "scale": [ + 1.00001478, 1, 0.9999853 + ], + "name": "Spoiler_hydrolics_06_right", + "children": [255] + }, { + "translation": [ + -0.3056016, -0.3723048, -0.000500679 + ], + "rotation": [ + -0.00120041845, 0.0246579, -0.3649802, 0.9306879 + ], + "scale": [ + 0.999999464, 1.00000393, 0.999998748 + ], + "name": "Spoiler_hydrolics_05_right" + }, { + "translation": [ + -8.314303, 0.00000125169754, 0.00000160932541 + ], + "rotation": [ + -8.894129e-8, 1.06228981e-7, -5.58793456e-9, 1 + ], + "scale": [ + 1, 1.00000048, 1 + ], + "name": "WING_BONE_RIGHT_01", + "children": [ + 257, + 259, + 260, + 264, + 265, + 288, + 290, + 292 + ] + }, { + "translation": [ + -2.87029362, 0.254272521, 1.324141 + ], + "rotation": [ + -0.006843229, 0.6832025, 0.0139845656, 0.730062962 + ], + "scale": [ + 1.00000024, 0.99999994, 0.999999762 + ], + "name": "Flaps_2_right", + "children": [258] + }, { + "translation": [ + 0.08635962, 0.170149446, -2.57623672 + ], + "rotation": [ + 0.7297014, -0.149418682, -0.107723, 0.658487439 + ], + "scale": [ + 1.00000083, 0.999999, 1.00000119 + ], + "name": "flap_hydrolics_18_right" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic1_SPOILER_2_1_right" + }, { + "translation": [ + -1.26626873, 0.35705173, 0.8797917 + ], + "rotation": [ + 0.0357553177, -0.105803348, 0.0137958387, 0.9936483 + ], + "scale": [ + 1.0000006, 1.00000012, 0.999999642 + ], + "name": "Hydrolic2_Flaps_1_1_right", + "children": [261, 263] + }, { + "translation": [ + 0.00258350372, -0.3061065, 0.6527736 + ], + "rotation": [ + -0.00456417026, -0.004072003, -0.000149014391, 0.9999813 + ], + "scale": [ + 1.00000036, 0.99999994, 1.00000036 + ], + "name": "Flaps_1_1_right", + "children": [262] + }, { + "translation": [ + -0.67619133, 0.5609306, 0.008673191 + ], + "rotation": [ + -0.985641539, 0.0555401742, -0.153274238, -0.0439666323 + ], + "scale": [ + 0.9999994, 1.0000006, 1.000001 + ], + "mesh": 103, + "name": "FLAPS_1_1_RIGHT_1" + }, { + "translation": [ + 0.0025806427, -0.3045506, 0.651814461 + ], + "rotation": [ + 0.00173285324, -0.000023034203, -0.000235056825, 0.9999985 + ], + "scale": [ + 1.00000036, 1.00000012, 0.99999994 + ], + "name": "Hydrolic1_Flaps_1_1_right" + }, { + "translation": [ + -4.084032, 0.293872416, 0.4992954 + ], + "rotation": [ + 0.00735291326, 0.694946051, 0.002918173, 0.71901834 + ], + "scale": [ + 1.00000024, 0.999999344, 1.000001 + ], + "name": "Hydrolic2_SPOILER_2_1_right" + }, { + "translation": [ + -6.337867, 0.0336145163, 0.000215947628 + ], + "rotation": [ + 7.916242e-8, 9.260839e-8, -3.539026e-8, 1 + ], + "scale": [ + 0.99999994, 0.9999999, 1.00000012 + ], + "name": "WING_BONE_RIGHT_02", + "children": [ + 266, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 284, + 285, + 286, + 287 + ] + }, { + "translation": [ + -6.30582237, 0.00921285152, 0.6295024 + ], + "rotation": [ + -0.006843452, 0.683202565, 0.0139844473, 0.730062962 + ], + "scale": [ + 1.00000012, 1.00000048, 1.0000006 + ], + "name": "Flaps_3_right", + "children": [267] + }, { + "translation": [ + 0.111464262, 0.127858639, 2.31747055 + ], + "rotation": [ + 0.703286, -0.06726212, -0.06384566, 0.704832137 + ], + "scale": [ + 1.00000191, 0.999998868, 0.999999642 + ], + "name": "flap_hydrolics_19_right" + }, { + "translation": [ + -0.2144928, -0.019741416, 0.668693066 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic1_SPOILER_2_2_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic1_SPOILER_2_3_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic1_SPOILER_2_4_right" + }, { + "translation": [ + -0.2045784, 0.171005368, 0.421416372 + ], + "rotation": [ + 0.007603671, 0.6947902, 0.002633811, 0.7191675 + ], + "scale": [ + 1.00000036, 1.00000119, 0.999999166 + ], + "name": "Hydrolic2_SPOILER_2_2_right" + }, { + "translation": [ + -2.60531425, 0.109168172, 0.328037649 + ], + "rotation": [ + 0.007603495, 0.6947902, 0.00263364729, 0.7191675 + ], + "scale": [ + 0.9999998, 1.00000119, 0.999999642 + ], + "name": "Hydrolic2_SPOILER_2_3_right" + }, { + "translation": [ + -4.924349, 0.07270646, 0.26546222 + ], + "rotation": [ + 0.007603454, 0.6947917, 0.00263401144, 0.71916604 + ], + "scale": [ + 1.00000048, 1.00000143, 0.9999991 + ], + "name": "Hydrolic2_SPOILER_2_4_right" + }, { + "translation": [ + -6.56654739, 0.00651466846, -0.00213181973 + ], + "rotation": [ + 7.636844e-8, -3.37604327e-8, -2.71946135e-7, 1 + ], + "scale": [ + 1.00000036, 1.00000024, 1.00000012 + ], + "name": "WING_BONE_RIGHT_03", + "children": [275, 276, 277, 282, 283] + }, { + "translation": [ + 0.00313949585, 0.007908225, 0.4665305 + ], + "rotation": [ + 0.00851354748, -0.0145073244, 0.00494639948, 0.999846339 + ], + "scale": [ + 1.0000006, 1.00000048, 1.00000072 + ], + "name": "Aileron_1_right" + }, { + "translation": [ + -3.99923325, -0.02995944, 0.348880529 + ], + "rotation": [ + 0.008513322, -0.0145071112, 0.004946362, 0.999846339 + ], + "scale": [ + 1.0000006, 0.9999998, 1.00000048 + ], + "name": "Aileron_2_right" + }, { + "translation": [ + -5.34786224, -0.0235247612, 0.00155442953 + ], + "rotation": [ + -5.206093e-7, -2.95578445e-7, 4.65661358e-8, 1 + ], + "scale": [ + 1.00000012, 0.999999762, 1.00000024 + ], + "name": "WING_BONE_RIGHT_04", + "children": [278, 279, 280, 281] + }, { + "translation": [ + -5.1413517, -0.203313112, 1.33965993 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 104, + "name": "LIGHT_ASOBO_NavigationWing_Right" + }, { + "translation": [ + -0.9967365, -0.0491733551, -1.130012 + ], + "rotation": [ + -0.2594183, 0.004733398, 0.9643543, 0.05196754 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999998 + ], + "mesh": 105, + "name": "LIGHT_ASOBO_StrobeWing_Right" + }, { + "translation": [ + -0.6659126, -0.038210392, -1.22074091 + ], + "rotation": [ + -0.259418547, 0.00473311124, 0.964354157, 0.0519677028 + ], + "scale": [ + 0.9999999, 0.99999994, 0.9999999 + ], + "mesh": 106, + "name": "LIGHT_ASOBO_NavigationGreen" + }, { + "translation": [ + 0.045425415, -0.2883048, -1.03098571 + ], + "rotation": [ + 0.682595, 0.0266460124, -0.0320746265, 0.7296063 + ], + "scale": [ + 0.9999999, 1.00000083, 1.0000006 + ], + "name": "FlapsKrueger_5_right" + }, { + "translation": [ + 0.2617283, -0.112903118, -0.0147076249 + ], + "rotation": [ + 0.009750019, -0.0007162161, 0.9998518, 0.0141735421 + ], + "scale": [ + 1.00000048, 1.0000006, 1.00000036 + ], + "name": "Wing_Spoiler_2_5_right" + }, { + "translation": [ + -0.0365695953, -0.3669269, -1.4662689 + ], + "rotation": [ + 0.682594657, 0.0266457219, -0.0320744, 0.7296066 + ], + "scale": [ + 0.99999994, 1.00000048, 1 + ], + "name": "FlapsKrueger_4_right" + }, { + "translation": [ + -0.214468, -0.018866539, 0.668332756 + ], + "rotation": [ + 0.00760329748, 0.6947902, 0.0026336154, 0.7191675 + ], + "scale": [ + 0.9999999, 1.00000107, 1.00000012 + ], + "name": "Wing_Spoiler_2_2_right" + }, { + "translation": [ + -2.61495972, 0.00124442577, 0.58533144 + ], + "rotation": [ + 0.00760334125, 0.6947902, 0.00263350061, 0.7191675 + ], + "scale": [ + 0.9999999, 1.0000006, 0.9999999 + ], + "name": "Wing_Spoiler_2_3_right" + }, { + "translation": [ + -4.933054, 0.0184845924, 0.5068213 + ], + "rotation": [ + 0.007603228, 0.6947921, 0.00263381517, 0.7191656 + ], + "scale": [ + 0.9999999, 1.00000072, 0.9999999 + ], + "name": "Wing_Spoiler_2_4_right" + }, { + "translation": [ + 0.2762146, -0.432391644, -2.03908229 + ], + "rotation": [ + 0.6825947, 0.0266456585, -0.0320743, 0.729606569 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000048 + ], + "name": "FlapsKrueger_3_right" + }, { + "translation": [ + -1.75636578, -0.111109138, 1.0774467 + ], + "rotation": [ + -0.00158696191, -0.0932033658, 0.008658969, 0.995608151 + ], + "scale": [ + 1.00002742, 0.999999762, 0.9999723 + ], + "name": "Wing_Spoiler_1_4_right", + "children": [289] + }, { + "translation": [ + 0.0000190734863, -0.00000178813934, 0.000004529953 + ], + "rotation": [ + -0.983855069, 0.06006053, -0.168275133, -0.0102719525 + ], + "scale": [ + 1.00000036, 1.00000119, 1.00000215 + ], + "mesh": 107, + "name": "Spoiler_2_right" + }, { + "translation": [ + -4.0951395, -0.004290104, 0.768715262 + ], + "rotation": [ + 0.007352814, 0.694946051, 0.00291815167, 0.71901834 + ], + "scale": [ + 1.00000024, 1, 1.0000006 + ], + "name": "Wing_Spoiler_2_1_right", + "children": [291] + }, { + "translation": [ + 0.00445753336, -0.128248334, -3.35856247 + ], + "rotation": [ + 0.5129199, -0.04156178, 0.8570692, -0.024863895 + ], + "scale": [ + 0.9999995, 0.999999464, 1.00000036 + ], + "mesh": 108, + "skin": 3, + "name": "Spoiler_2_1_right" + }, { + "translation": [ + 1.923686, -0.482328415, -2.70131159 + ], + "rotation": [ + 0.6825947, 0.026645679, -0.03207439, 0.729606569 + ], + "scale": [ + 0.9999993, 1.00000012, 1.00000036 + ], + "name": "FlapsKrueger_2_right" + }, { + "translation": [ + -3.87551522, 0.573712, 3.3141005 + ], + "rotation": [ + -0.96442163, 0.0535871238, -0.258697569, -0.009747602 + ], + "scale": [ + 1.00000048, 0.9999999, 0.999999762 + ], + "name": "WING_DOOR02_right", + "children": [294] + }, { + "translation": [ + -0.138664722, -0.000884562731, -0.04613352 + ], + "rotation": [ + -0.03471186, 0.000975886069, 0.0109285992, 0.999337137 + ], + "scale": [ + 1.00000119, 1.00000191, 1.00000155 + ], + "mesh": 109, + "name": "Door04_right" + }, { + "translation": [ + -3.864641, 0.5912173, 3.303027 + ], + "rotation": [ + 0.4957456, -0.0643499047, 0.86604017, -0.008358427 + ], + "scale": [ + 1.00000072, 0.99999994, 0.9999998 + ], + "name": "Wheel_Base_right", + "children": [ + 296, + 300, + 323, + 324, + 326, + 332, + 339, + 351, + 352 + ] + }, { + "translation": [ + -0.205456257, -2.515431, -0.0104970932 + ], + "rotation": [ + 0.0577802733, 0.7012474, 0.7077393, 0.0633924752 + ], + "scale": [ + 1.00000012, 1.00000191, 0.99999845 + ], + "name": "Landing_Gear_07_right", + "children": [297, 298, 299] + }, { + "translation": [ + -0.302409172, 0.1270957, 0.16639185 + ], + "rotation": [ + -0.444534153, -0.450937033, 0.5486514, 0.545918345 + ], + "scale": [ + 1.0000006, 1.00000083, 0.999999166 + ], + "name": "landing_gear01_right" + }, { + "translation": [ + -0.7139559, 0.12507534, -0.177423239 + ], + "rotation": [ + -0.444530368, -0.45093137, 0.548656, 0.545921445 + ], + "scale": [ + 1.00000155, 1.00000143, 0.99999845 + ], + "name": "landing_gear08_right" + }, { + "translation": [ + -0.0145463943, -0.009224415, 0.004380226 + ], + "rotation": [ + -0.5460826, 0.543709338, -0.4476113, 0.453671843 + ], + "scale": [ + 0.999998748, -1.00000238, 1 + ], + "mesh": 110, + "name": "LANDING_GEAR_07_RIGHT_1" + }, { + "translation": [ + -0.373281956, -3.21106887, 0.009433746 + ], + "rotation": [ + -0.00171652681, -0.707084954, -0.00556244049, 0.7071046 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000083 + ], + "name": "Landing_Gear_10_right", + "children": [ + 301, + 303, + 319, + 320, + 321, + 322 + ] + }, { + "translation": [ + -0.0251255035, 0.339024067, -0.118941784 + ], + "rotation": [ + -0.5374941, -0.539788663, -0.461154252, 0.4550439 + ], + "scale": [ + 0.999981344, 0.9999963, 1.00002265 + ], + "name": "Landing_Gear_08_right", + "children": [302] + }, { + "translation": [ + -0.5063038, 0.0549430847, 0.22320509 + ], + "rotation": [ + -0.500294864, -0.502101, -0.501915932, -0.495661229 + ], + "scale": [ + 1.00000024, 1.00000024, 1.00000036 + ], + "mesh": 111, + "name": "LANDING_GEAR_08_RIGHT_1" + }, { + "translation": [ + 4.76837158e-7, -0.00338840485, 0.08094406 + ], + "rotation": [ + -0.99862957, -4.432793e-8, 3.406478e-7, -0.05233552 + ], + "scale": [ + 0.999999762, 1.00000036, 1.00000024 + ], + "name": "Landing_Gear_09_right", + "children": [ + 304, + 308, + 310, + 312, + 315, + 318 + ] + }, { + "translation": [ + -0.09416199, -0.312451124, -0.243170738 + ], + "rotation": [ + 0.501094043, -0.499797136, 0.495709479, 0.5033683 + ], + "scale": [ + 1.00000107, 1.0000006, 1.00000012 + ], + "name": "Landing_Gear_06_right", + "children": [305, 306, 307] + }, { + "translation": [ + -0.217030048, -0.08245611, 0.2587304 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear02_right" + }, { + "translation": [ + -0.414316177, -0.08274174, 0.0263545513 + ], + "rotation": [ + -0.5011059, 0.499803245, -0.4956936, 0.5033662 + ], + "scale": [ + 0.9999964, 1.00000978, 0.999994636 + ], + "name": "landing_gear03_right" + }, { + "translation": [ + 0.0187168121, -0.000515460968, 0.00186800957 + ], + "rotation": [ + 0.5033672, -0.4957098, -0.499798983, 0.5010931 + ], + "scale": [ + 0.9999993, 0.9999984, 0.999997437 + ], + "mesh": 112, + "name": "Landing_Gear_37_right" + }, { + "translation": [ + -0.04093027, 0.24169302, 0.0619034767 + ], + "rotation": [ + -0.5004197, -0.5004178, 0.4995824, -0.4995793 + ], + "scale": [ + 1.00000024, 1.00000048, 1.00000072 + ], + "name": "Landing_Gear_35_right", + "children": [309] + }, { + "translation": [ + 0.000933647156, -0.00006246567, 0.008129358 + ], + "rotation": [ + -0.5004207, -0.500417054, 0.4995827, 0.499578923 + ], + "scale": [ + 0.9999999, 0.99999994, 0.99999994 + ], + "mesh": 113, + "name": "LANDING_GEAR_35_RIGHT_1" + }, { + "translation": [ + -0.04742527, 0.2416637, -0.06125927 + ], + "rotation": [ + -0.5004193, -0.500418067, 0.499582171, -0.499579877 + ], + "scale": [ + 1.00000048, 0.99999845, 1.00000107 + ], + "name": "Landing_Gear_36_right", + "children": [311] + }, { + "translation": [ + 0.000936985, -0.0000596046448, 0.008125067 + ], + "rotation": [ + -0.50042063, -0.5004169, 0.4995828, 0.499579072 + ], + "scale": [ + 1.00000012, 0.99999994, 0.99999994 + ], + "mesh": 114, + "name": "LANDING_GEAR_36_RIGHT_1" + }, { + "translation": [ + -0.0517377853, -0.00623846054, -0.681098 + ], + "rotation": [ + -8.662516e-7, -1.002765e-14, 2.13181821e-13, 1 + ], + "scale": [ + 1.00007963, 0.999921441, 0.999999166 + ], + "name": "tire_01_key_right", + "children": [313, 314] + }, { + "translation": [ + 4.76837158e-7, 2.38418579e-7, 0.000006198883 + ], + "rotation": [ + -1, -0.00000128435931, 2.457422e-7, 0.0000010318663 + ], + "scale": [ + 1.00000155, 0.99999845, 1 + ], + "mesh": 115, + "name": "RWheel_01_still" + }, { + "translation": [ + 4.76837158e-7, 4.76837158e-7, 4.76837158e-7 + ], + "rotation": [ + -1, -0.00000129640068, 2.69830274e-8, 9.655992e-7 + ], + "mesh": 116, + "name": "RWheel_01_blurred" + }, { + "translation": [ + -0.0389318466, -0.006542444, 0.759859562 + ], + "rotation": [ + -1, -9.94863236e-14, 9.66441757e-14, 1.19248815e-8 + ], + "scale": [ + 1.000081, 0.9999192, 0.999999642 + ], + "name": "tire_02_key_right", + "children": [316, 317] + }, { + "translation": [ + -0.0000138282776, 0.00237965584, -0.00112342834 + ], + "rotation": [ + 9.772475e-8, -2.40173847e-7, -0.00000128558167, 1 + ], + "scale": [ + 1.00000083, 0.9999994, 0.9999974 + ], + "mesh": 117, + "name": "RWheel_02_still" + }, { + "translation": [ + -4.76837158e-7, 2.38418579e-7, 0 + ], + "rotation": [ + 8.742307e-8, -2.30968226e-7, -0.00000126240775, 1 + ], + "mesh": 118, + "name": "RWheel_02_blurred" + }, { + "translation": [ + -0.045715332, 0.000411272049, -0.00207901 + ], + "rotation": [ + 0.0009059459, 0.00443709735, -0.00318536069, 0.9999847 + ], + "scale": [ + 1.00000012, 0.9999997, 0.999998569 + ], + "mesh": 119, + "name": "LANDING_GEAR_09_RIGHT_1" + }, { + "translation": [ + 0.106811047, 0.491230726, 0.296488762 + ], + "rotation": [ + -0.9992415, 0.00000166204075, -0.00000249417667, -0.0389420055 + ], + "scale": [ + 1.00004983, 0.9999272, 1.000025 + ], + "name": "landing_gear04_right" + }, { + "translation": [ + 0.106812477, 0.186984062, -0.245285988 + ], + "rotation": [ + -0.99862957, -5.59745729e-7, 9.06202558e-7, -0.0523358621 + ], + "scale": [ + 1.00000143, 1, 0.99999994 + ], + "name": "landing_gear05_right" + }, { + "translation": [ + -0.0153021812, 0.474267721, 0.275247574 + ], + "rotation": [ + -0.998629451, -4.54888777e-7, 0.000002030508, -0.0523382 + ], + "scale": [ + 1.00000143, 1.0000006, 0.9999997 + ], + "name": "landing_gear06_right" + }, { + "translation": [ + 5.04977036, 3.959032, -0.5229354 + ], + "rotation": [ + -0.9986295, 0.00000121835467, 6.385188e-8, -0.0523364171 + ], + "scale": [ + 0.999993145, 1.00000429, 1.00000131 + ], + "mesh": 120, + "name": "LANDING_GEAR_10_RIGHT_1" + }, { + "translation": [ + -1.22381783, 0.348030329, 0.153943539 + ], + "rotation": [ + 0.00730130542, -0.7070985, 0.00345573318, 0.707069039 + ], + "scale": [ + 0.99999994, 1.00000036, 1.00000048 + ], + "name": "Landing_Gear_14_right" + }, { + "translation": [ + -0.2384944, -0.622866631, 0.0609898567 + ], + "rotation": [ + -0.738115668, -0.6531392, 0.109994896, 0.128436044 + ], + "scale": [ + 1, 1.00000024, 1 + ], + "name": "Landing_Gear_18_right", + "children": [325] + }, { + "translation": [ + -0.00116074085, 0.0119800568, 0.00297808647 + ], + "rotation": [ + 0.410734117, 0.4061668, -0.578818858, 0.575582147 + ], + "scale": [ + 1.00000119, 1.00000083, 0.9999982 + ], + "mesh": 121, + "name": "Landing_Gear_Part19_right" + }, { + "translation": [ + -0.27695322, -1.28430152, 0.173485756 + ], + "rotation": [ + -0.708400846, -0.000836311956, -0.7036754, -0.05485084 + ], + "scale": [ + 1.00000143, 1, 0.9999993 + ], + "name": "Landing_Gear_20_right", + "children": [327, 331] + }, { + "translation": [ + 0.008528233, -0.06482935, 0.00420856476 + ], + "rotation": [ + 0.526773155, 0.4382799, -0.377282143, 0.622959852 + ], + "scale": [ + 1.0000037, 1.00000608, 0.9999915 + ], + "name": "Landing_Gear_21_right", + "children": [328, 329, 330] + }, { + "translation": [ + 0.00144290924, 0.1629262, 0.06679213 + ], + "rotation": [ + 0.5143709, -0.5180562, 0.4851327, 0.481338263 + ], + "scale": [ + 0.999991357, 1.00000036, 1.00000954 + ], + "name": "Landing_Gear_19_right" + }, { + "translation": [ + 0.00000238418579, 0.134036064, 0.00517952442 + ], + "rotation": [ + 1.680337e-8, -3.11589247e-7, 3.5556468e-8, 1 + ], + "scale": [ + 0.9999948, 1.00000739, 0.9999984 + ], + "name": "Landing_Gear_41_right" + }, { + "translation": [ + -0.01197052, -0.00289225578, -0.0014500618 + ], + "rotation": [ + -0.5570017, -0.4223281, 0.3943125, 0.59657836 + ], + "scale": [ + 1, 0.999999762, 0.9999998 + ], + "mesh": 122, + "name": "LANDING_GEAR_21_RIGHT_1" + }, { + "translation": [ + -0.006863117, 0.001065731, 0.0102615356 + ], + "rotation": [ + -0.9989231, -0.0422115922, 0.000812967366, -0.0192414317 + ], + "scale": [ + 0.999998, 1.0000006, 1.00000012 + ], + "mesh": 123, + "name": "Landing_Gear_Part17_right" + }, { + "translation": [ + -0.334146976, -2.01456738, 0.263353348 + ], + "rotation": [ + -0.7060457, 0.0425617956, -0.7058248, -0.03872242 + ], + "scale": [ + 1.000001, 1.00000024, 1.00000072 + ], + "name": "Landing_Gear_33_right", + "children": [333, 338] + }, { + "translation": [ + 0.117917061, -0.148765087, 0.04537964 + ], + "rotation": [ + -0.984737754, 0.008130239, -0.17385301, 0.0007825128 + ], + "scale": [ + 0.999999762, 0.9999993, 1.00000167 + ], + "name": "LANDING_GEAR_37_RIGHT_1", + "children": [334, 336, 337] + }, { + "translation": [ + 0.667953134, 0.5748277, 0.00707626343 + ], + "rotation": [ + -0.5088381, -0.496233046, 0.494221658, 0.5005811 + ], + "scale": [ + 0.999994457, 1.00000381, 1.00000322 + ], + "name": "Landing_Gear_17_right", + "children": [335] + }, { + "translation": [ + 0.0260605812, 0.009506226, 0.411591649 + ], + "rotation": [ + 0.575589538, -0.5788269, -0.406153679, -0.410725355 + ], + "scale": [ + 1.00000048, 1.00000024, 0.9999995 + ], + "mesh": 124, + "name": "LANDING_GEAR_17_RIGHT_1" + }, { + "translation": [ + 0.167813063, 0.00268483162, 0.00000238418579 + ], + "rotation": [ + -6.41455244e-8, -4.106647e-8, 4.51690951e-8, 1 + ], + "scale": [ + 1.00000083, 1.00000048, 1.00000107 + ], + "name": "Landing_Gear_31_right" + }, { + "translation": [ + -0.0130119324, -0.0048263073, -0.0119996071 + ], + "rotation": [ + -0.9847378, 0.008131182, -0.173852846, -0.0007798245 + ], + "scale": [ + 0.9999999, 1.00000083, 1.000001 + ], + "mesh": 125, + "name": "LANDING_GEAR_31_RIGHT_1" + }, { + "translation": [ + -0.00679731369, 0.00124263763, 0.0102977753 + ], + "rotation": [ + 0.00000227614964, -4.39583118e-7, 0.00000154971735, 1 + ], + "scale": [ + 1.00000024, 0.9999999, 1.00000024 + ], + "mesh": 126, + "name": "LANDING_GEAR_33_RIGHT_1" + }, { + "translation": [ + -0.667070866, -2.00849319, 0.2415781 + ], + "rotation": [ + -0.709682167, -0.09555723, -0.6969779, 0.0379721373 + ], + "scale": [ + 1.00000048, 0.999999762, 1.00000131 + ], + "name": "Landing_Gear_34_right", + "children": [340, 350] + }, { + "translation": [ + 0.09678888, -0.131126165, -0.0691990852 + ], + "rotation": [ + -0.839773059, -0.406130224, 0.352001667, 0.07703543 + ], + "scale": [ + 1.00000072, 1.00000048, 0.9999989 + ], + "name": "Landing_Gear_38_right", + "children": [341, 349] + }, { + "translation": [ + 0.006328821, 0.9432006, -0.00322312117 + ], + "rotation": [ + -0.756983638, -0.64889437, 0.07686701, 0.00183209206 + ], + "scale": [ + 0.999998748, 1.000002, 1.00000048 + ], + "name": "Landing_Gear_32_right", + "children": [342, 347, 348] + }, { + "translation": [ + -4.76837158e-7, -4.76837158e-7, -0.00000166893 + ], + "rotation": [ + -2.79384949e-7, -5.963352e-8, 5.96058953e-8, 1 + ], + "scale": [ + 1.000005, 1.00000274, 0.9999952 + ], + "name": "Landing_Gear_27_right", + "children": [343, 344, 346] + }, { + "translation": [ + -0.05392933, -0.152823448, 0.0107153654 + ], + "rotation": [ + -0.0451062471, 0.07957671, 0.0931274, 0.9914436 + ], + "scale": [ + 1.00000119, 1.00000083, 0.999998748 + ], + "name": "Landing_Gear_23_right" + }, { + "translation": [ + 0.161372185, -0.885045052, 0.0548145771 + ], + "rotation": [ + 0.0121787246, -0.607089758, 0.093779996, 0.788986 + ], + "scale": [ + 1.00000322, 1.00000012, 0.999995232 + ], + "name": "Landing_Gear_28_right", + "children": [345] + }, { + "translation": [ + -0.0000145733356, -0.4443248, -0.007376671 + ], + "rotation": [ + 0.000009316709, -0.4681215, 0.00000457413125, 0.883664131 + ], + "scale": [ + 0.9999862, 0.999991059, 1.00001526 + ], + "mesh": 127, + "name": "LANDING_GEAR_28_RIGHT_1" + }, { + "translation": [ + 0.07389641, -0.45400703, 0.0186910629 + ], + "rotation": [ + -0.183565632, 0.381385535, -0.104944356, 0.899908543 + ], + "scale": [ + 0.999997139, 0.999986, 1.0000118 + ], + "mesh": 128, + "name": "LANDING_GEAR_27_RIGHT_1" + }, { + "translation": [ + 1.28528214, -0.0296049118, -0.135630727 + ], + "rotation": [ + -0.0498265065, 0.05795823, -0.000260304631, 0.997074842 + ], + "scale": [ + 0.9999991, 1.00000632, 0.9999972 + ], + "name": "Landing_Gear_29_right" + }, { + "translation": [ + -0.01305294, -0.0218217373, -0.0144455433 + ], + "rotation": [ + 0.000836591353, -0.286377579, 0.304134846, 0.9085643 + ], + "scale": [ + 0.9999999, 0.9999997, 1.00000036 + ], + "mesh": 129, + "name": "Landing_Gear_30_right" + }, { + "translation": [ + -0.01104641, -0.00550031662, -0.002030909 + ], + "rotation": [ + -0.8377833, -0.418001562, 0.277073324, -0.215926588 + ], + "scale": [ + 1.00000036, 0.9999998, 0.9999999 + ], + "mesh": 130, + "name": "LANDING_GEAR_32_RIGHT_1" + }, { + "translation": [ + -0.0068769455, 0.00369119644, 0.009632111 + ], + "rotation": [ + -0.151399776, 0.00672859652, 0.04388464, 0.987475038 + ], + "scale": [ + 0.9999999, 0.9999997, 0.9999994 + ], + "mesh": 131, + "name": "LANDING_GEAR_34_RIGHT_1" + }, { + "translation": [ + -0.257612228, -2.26505971, 0.121347904 + ], + "rotation": [ + -0.706045747, 0.04255996, -0.7058249, -0.0387206227 + ], + "scale": [ + 1, 1.0000006, 1.000001 + ], + "name": "landing_gear07_right" + }, { + "translation": [ + 0.0100855827, -0.002379179, -0.00680017471 + ], + "rotation": [ + -0.038719818, -0.7058248, -0.04256083, 0.7060458 + ], + "scale": [ + 0.9999998, 1.00000024, 0.9999995 + ], + "mesh": 132, + "name": "Landing_gear_Root_right" + }, { + "translation": [ + -12.9740658, 1.4153682, -6.55199766 + ], + "rotation": [ + -0.9643542, 0.05196784, -0.259418547, -0.004733256 + ], + "scale": [ + 1.00000119, 1.00000036, 0.999999 + ], + "name": "Engine_PIVOT_RIGHT_2" + }, { + "translation": [ + -0.6497253, 2.102611, 5.016356 + ], + "rotation": [ + 0.4909097, 0.490909636, -0.508927763, 0.508928239 + ], + "scale": [ + 0.9999998, 1, 1.000001 + ], + "name": "WING_DOOR03_right", + "children": [355, 357] + }, { + "translation": [ + -0.07994223, -0.3223496, 0.15869379 + ], + "rotation": [ + 1.22518031e-7, 1.05239437e-7, -1.40098223e-7, 1 + ], + "scale": [ + 1.00000012, 0.9999995, 1.0000006 + ], + "name": "Door03_Hydraulic02_right", + "children": [356] + }, { + "translation": [ + -0.000582695, -0.00743258, 0.0133094788 + ], + "rotation": [ + -0.508927763, -0.5089283, -0.4909096, -0.490909636 + ], + "scale": [ + 1.00000036, 0.99999845, 0.999999464 + ], + "mesh": 133, + "name": "Landing_Gear_01_right" + }, { + "translation": [ + 0.000002861023, 0, -0.00000393390656 + ], + "rotation": [ + -0.5089282, -0.508927941, -0.490909517, -0.490909666 + ], + "scale": [ + 0.999999166, 0.9999989, 0.9999999 + ], + "mesh": 134, + "name": "Door01_right" + }, { + "translation": [ + 0, -1.84435129, 23.1178951 + ], + "mesh": 135, + "name": "Undercarriage_Front_center" + }, { + "mesh": 136, + "name": "windowGlass_center" + }, { + "mesh": 137, + "name": "Body_front_center" + }, { + "translation": [ + -0.6216232, 1.38451254, -26.3910179 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "name": "BACK_DOOR", + "children": [362, 367, 369] + }, { + "translation": [ + 1.51670659, 0.0593546629, 0.09595871 + ], + "name": "Rear_door", + "children": [363, 364, 365, 366] + }, { + "translation": [ + -0.02428627, -0.0504982471, -0.0693092346 + ], + "rotation": [ + -0.00356744439, -0.0385848545, -0.0010725793, 0.9992484 + ], + "scale": [ + 0.00164638483, 0.00150018034, 0.00193848391 + ], + "mesh": 138, + "name": "PASSENGER_DOOR_2" + }, { + "translation": [ + 0.23453021, -0.06347895, 0.005973816 + ], + "rotation": [ + 9.313237e-10, -1, 7.45058149e-9, 7.573073e-8 + ], + "scale": [ + 1.00000012, 0.99999994, 1.00000012 + ], + "mesh": 139, + "name": "PASSENGER_DOOR_2_OUTSIDE" + }, { + "translation": [ + 0.283971548, 0.07695341, 0.310956955 + ], + "rotation": [ + 2.328329e-10, -1, 1.30385178e-8, 7.733145e-8 + ], + "scale": [ + 0.99999994, 0.9999999, 1.00000024 + ], + "mesh": 140, + "name": "PASSENGER_DOOR_2_PORTHOLE" + }, { + "translation": [ + 0.218189955, -0.066890955, 0.00326156616 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 141, + "name": "Livery_KLM_DoorB" + }, { + "translation": [ + 1.66407359, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Rear_door_pivot", + "children": [368] + }, { + "translation": [ + -0.00184059143, -0.06628418, 0.00227165222 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 142, + "name": "PASSENGER_DOOR_2_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 143, + "name": "INTERIOR2" + }, { + "translation": [ + -2.802113, 0.120608084, 17.4044781 + ], + "rotation": [ + 0, 0, 0.9848078, 0.173648223 + ], + "scale": [ + 1.59984982, 1.59984982, 1.59984982 + ], + "name": "CARGO_DOOR", + "children": [371, 373, 375] + }, { + "translation": [ + 0, 5.96046448e-8, -0.00000190734863 + ], + "rotation": [ + 0, 0, 4.72548919e-7, 1 + ], + "scale": [ + 0.7883396, 0.7883396, 0.7883396 + ], + "mesh": 144, + "name": "CARGO_DOOR_1", + "children": [372] + }, { + "translation": [ + -2.12045956, -0.670017064, -13.7996635 + ], + "rotation": [ + 0, 0, 0.984807849, -0.173647642 + ], + "scale": [ + 0.792880058, 0.792880058, 0.7928801 + ], + "mesh": 145, + "name": "CARGO_DOOR_OUTSIDE" + }, { + "translation": [ + -0.07027137, -0.09023255, 0.115065575 + ], + "rotation": [ + 0.00000272992838, 0.00000128662873, 0.9999597, -0.008979633 + ], + "scale": [ + 0.625058949, 0.625058949, 0.6250587 + ], + "name": "CARGO_DOOR_HINGE", + "children": [374] + }, { + "translation": [ + 0.508833647, 0.00215768814, 0.129505157 + ], + "rotation": [ + 2.253501e-14, 5.63375132e-14, -2.36296689e-8, 1 + ], + "scale": [ + 1.26122475, 1.26122475, 1.26122451 + ], + "mesh": 146, + "name": "CARGO_PISTON_2" + }, { + "translation": [ + -0.080994606, 0.09782207, 0.0176887512 + ], + "rotation": [ + 0, 0, 0.9848078, -0.173648223 + ], + "scale": [ + 0.625058651, 0.625058651, 0.625058651 + ], + "mesh": 147, + "name": "Livery_KLM_Cargo" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + -0.164798126, -0.98632735, -4.44642041e-7, -0.000002661212 + ], + "scale": [ + 1.00000024, 1.00000024, 1 + ], + "name": "CARGO_PISTON", + "children": [377] + }, { + "translation": [ + 0.00350117683, 0.002157867, -0.12951088 + ], + "rotation": [ + 1.18148282e-8, -1, 1.25193708e-7, -4.01339321e-7 + ], + "scale": [ + 1.26122534, 1.26122534, 1.261225 + ], + "mesh": 148, + "name": "CARGO_PISTON_1" + }, { + "translation": [ + -1.94440138, -0.0237501785, 17.58857 + ], + "rotation": [ + 0.7071068, 0, 0, 0.7071067 + ], + "scale": [ + 0.7524738, 0.752473652, 0.752473652 + ], + "name": "CARGO_PISTON001" + }, { + "translation": [ + 0.6120134, 1.38451254, 22.0964947 + ], + "name": "FRONT_DOOR", + "children": [380, 385, 387] + }, { + "translation": [ + 1.51670647, 0.0593546629, 0.09595871 + ], + "name": "Passenger_door", + "children": [381, 384] + }, { + "translation": [ + 0.0464611053, -0.0504982471, -0.0693092346 + ], + "mesh": 149, + "name": "PASSENGER_DOOR_1", + "children": [382, 383] + }, { + "translation": [ + 0.3973899, -0.005719185, -0.225822449 + ], + "rotation": [ + 3.41060557e-12, 3.549938e-14, -9.313229e-10, 1 + ], + "scale": [ + 0.999999762, 0.99999994, 1 + ], + "mesh": 150, + "name": "PASSENGER_DOOR_1_PORTHOLE" + }, { + "translation": [ + 0.171353817, 0.0248112679, 0.08783722 + ], + "rotation": [ + 1.74623066e-10, 2.79396817e-9, 6.776263580000001e-21, 1 + ], + "scale": [ + 0.999999762, 0.9999999, 0.9999998 + ], + "mesh": 151, + "name": "PASSENGER_DOOR_1_OUTSIDE" + }, { + "translation": [ + 0.19907999, -0.0314147472, 0.0150146484 + ], + "mesh": 152, + "name": "Livery_KLM_DoorA" + }, { + "translation": [ + 1.66407371, -0.27347517, 0.606191635 + ], + "rotation": [ + 0, 0.8367865, 0, 0.54752934 + ], + "name": "Passenger_door_pivot", + "children": [386] + }, { + "translation": [ + -0.00184440613, -0.06628418, 0.002272129 + ], + "scale": [ + 0.00147512392, 0.00147512334, 0.00147512392 + ], + "mesh": 153, + "name": "PASSENGER_DOOR_1_PIVOT" + }, { + "translation": [ + -1.22633743, -1.70828319, -2.829445 + ], + "mesh": 154, + "name": "INTERIOR1" + }, { + "translation": [ + 0.190857127, 0.9710189, 27.28954 + ], + "rotation": [ + -0.5561995, 0.243252084, 0.728066444, -0.318417639 + ], + "scale": [ + 1.00000012, 1.00000012, 1.00000036 + ], + "name": "LeftWiper", + "children": [389] + }, { + "translation": [ + 0.00000190734863, -0.3225479, 0.09060097 + ], + "rotation": [ + 0.061628297, -0.7044163, -0.0616281778, 0.7044159 + ], + "scale": [ + 0.9999997, 0.999999762, 1 + ], + "name": "LeftWiper_Aux1" + }, { + "translation": [ + -0.190857157, 0.97101897, 27.28954 + ], + "rotation": [ + -0.318417519, -0.728066444, 0.243252143, 0.5561996 + ], + "scale": [ + 1, 0.99999994, 0.99999994 + ], + "name": "RightWiper", + "children": [391] + }, { + "translation": [ + -0.00000381469727, 0.322551727, -0.09060049 + ], + "rotation": [ + 0.06162833, -0.704416156, -0.06162816, 0.7044159 + ], + "scale": [ + 1.00000012, 1, 1 + ], + "name": "RightWiper_Aux1" + }, { + "translation": [ + 23.0969028, 2.07969546, -12.9645138 + ], + "mesh": 155, + "skin": 4, + "name": "Aileron_left" + }, { + "translation": [ + 17.0303764, 0.9264157, -9.990757 + ], + "mesh": 156, + "skin": 5, + "name": "FLAPS_2_LEFT_1" + }, { + "translation": [ + 6.70049763, 0.205205679, -6.499737 + ], + "mesh": 157, + "skin": 6, + "name": "Spoiler_1_left" + }, { + "translation": [ + 18.7673969, 1.6507802, -8.411348 + ], + "mesh": 158, + "skin": 7, + "name": "FLAPSKRUEGER_2_LEFT_1" + }, { + "translation": [ + -23.1434269, 2.084283, -12.9893723 + ], + "mesh": 159, + "skin": 8, + "name": "Aileron_right" + }, { + "translation": [ + -16.5319614, 0.8568734, -9.7475 + ], + "mesh": 160, + "skin": 9, + "name": "FLAPS_2_RIGHT_1" + }, { + "mesh": 161, + "skin": 10, + "name": "Undercarriage_right" + }, { + "translation": [ + -18.7203178, 1.64729238, -8.41523552 + ], + "mesh": 162, + "skin": 11, + "name": "FLAPSKRUEGER_2_RIGHT_1" + }, { + "translation": [ + -6.70049953, 0.205205679, -6.49973631 + ], + "mesh": 163, + "skin": 12, + "name": "Spoiler_1_right" + }, { + "mesh": 164, + "skin": 13, + "name": "Undercarriage_left" + }, { + "translation": [ + 5.08613729, -0.375211, -5.852906 + ], + "mesh": 165, + "skin": 14, + "name": "Landing_Gear_04_left" + }, { + "translation": [ + -5.09013033, -0.375210226, -5.85290432 + ], + "mesh": 166, + "skin": 15, + "name": "Landing_Gear_04_right" + }, { + "translation": [ + 4.774393, -1.72206974, -5.902163 + ], + "mesh": 167, + "skin": 16, + "name": "Landing_Gear_22_left" + }, { + "translation": [ + -4.774393, -1.72206974, -5.902163 + ], + "rotation": [ + -1, 0, 0, 0 + ], + "mesh": 168, + "skin": 17, + "name": "Landing_Gear_22_right" + }, { + "translation": [ + 0.0008451908, 3.87055969, -0.13583234 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 169, + "name": "LIGHT_ASOBO_Beacon_Top" + }, { + "translation": [ + 0.7143089, 1.52168274, -37.00236 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 170, + "name": "LIGHT_ASOBO_StrobeTail_Left" + }, { + "translation": [ + -0.7061607, 1.52168584, -37.0003777 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 171, + "name": "LIGHT_ASOBO_StrobeTail_Right" + }, { + "translation": [ + 3.16649675e-7, -2.545454, 1.60331059 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 172, + "name": "LIGHT_ASOBO_Beacon_Belly" + }, { + "translation": [ + -3.42732048, -0.176593766, 3.17954969 + ], + "rotation": [ + -7.54979e-8, -1, -7.54979e-8, -5.6999333100000005e-15 + ], + "mesh": 173, + "name": "LIGHT_ASOBO_LandingWing_Right" + }, { + "translation": [ + 3.424549, -0.176594272, 3.16573286 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 174, + "name": "LIGHT_ASOBO_LandingWing_Left" + }, { + "translation": [ + 2.57077742, 1.38609684, 21.8967667 + ], + "scale": [ + 0.99999994, 1, 1.00000012 + ], + "mesh": 175, + "name": "Porthole_Blocker_center" + }, { + "translation": [ + 3.36336136, -0.176594272, 3.26802778 + ], + "rotation": [ + 0, -1, 0, 7.54979e-8 + ], + "mesh": 176, + "name": "LIGHT_ASOBO_RunwayTurnOff_Left" + }, { + "translation": [ + -3.36571121, -0.176593781, 3.267181 + ], + "rotation": [ + 0, -1, 0, -4.371139e-8 + ], + "mesh": 177, + "name": "LIGHT_ASOBO_RunwayTurnOff_Right" + }, { + "translation": [ + -2.73759484, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 178, + "name": "LIGHT_ASOBO_Wing_Right" + }, { + "translation": [ + 2.73906183, -0.154844522, 5.708071 + ], + "rotation": [ + 0, -1, 0, -7.54979e-8 + ], + "mesh": 179, + "name": "LIGHT_ASOBO_Wing_Left" + }, { + "translation": [ + -1.85954881, -0.838579834, 17.40458 + ], + "scale": [ + 1.261225, 1.261225, 1.261225 + ], + "mesh": 180, + "name": "CARGO_INTERIOR" + }, { + "mesh": 181, + "name": "FROST_FUSELAGE" + }, { + "mesh": 182, + "skin": 18, + "name": "FROST_WINGR" + }, { + "translation": [ + 18.75111, 1.65194607, -8.437931 + ], + "rotation": [ + 0.0150541924, 0.2984709, 0.0480716079, 0.953088462 + ], + "scale": [ + 1, 0.99999994, 1 + ], + "mesh": 183, + "skin": 19, + "name": "FROST_KRUEGER_L_2" + }, { + "mesh": 184, + "skin": 20, + "name": "FROST_KRUEGER_R_2" + }, { + "mesh": 185, + "skin": 21, + "name": "FROST_WINGL" + }, { + "mesh": 186, + "skin": 22, + "name": "wiper" + }, { + "translation": [ + -0.316766739, -2.02013946, 23.8162861 + ], + "rotation": [ + -0.49999997, 6.53831e-8, 0.866025448, 3.77489471e-8 + ], + "mesh": 187, + "name": "GROUND_GPUPipe" + }, { + "translation": [ + 2.78484678, -0.623671055, -4.947361 + ], + "mesh": 188, + "name": "GROUND_FuelPipe" + }, { + "mesh": 189, + "name": "WINDSHIELD" + }, { + "translation": [ + 0.000472832, 2.099659, -22.4412289 + ], + "mesh": 190, + "name": "Livery_KLM_RegNumber" + }, { + "translation": [ + 0.0000178813934, 3.235571, -3.81252861 + ], + "mesh": 191, + "name": "Livery_KLM_FuselageB" + }, { + "translation": [ + 0, 3.52926064, -4.46892834 + ], + "mesh": 192, + "name": "Livery_KLM_FuselageA" + }, { + "translation": [ + 26.0779648, 2.60006762, -15.256813 + ], + "mesh": 193, + "skin": 23, + "name": "Wing_body_left" + }, { + "translation": [ + -26.0779648, 2.60006762, -15.256813 + ], + "rotation": [ + -1, 0, 0, -1.62920685e-7 + ], + "mesh": 194, + "skin": 24, + "name": "Wing_body_right" + }, { + "translation": [ + -0.000002663216946530156, 9.241080284118652, -36.35052490234375 + ], + "rotation": [ + 0.28291264176368713, 0.5717583298683167, 0.4160439670085907, 0.6480435132980347 + ], + "mesh": 195, + "name": "Rudder_LIVERYDECAL" + }, { + "translation": [ + 0.7220770120620728, -1.9521019458770752, 23.631929397583008 + ], + "rotation": [ + 0.715813398361206, 0.03603672236204147, 0.6965124607086182, 0.034396108239889145 + ], + "mesh": 196, + "name": "C_Door_02_Left_LIVERYDECALS" + }, { + "translation": [ + -0.726417064666748, -1.9530106782913208, 23.631912231445312 + ], + "rotation": [ + -0.03489641100168228, 0.6998390555381775, -0.03553038462996483, 0.7125623822212219 + ], + "mesh": 197, + "name": "C_Door_02_right_LIVERYDECALS" + }, { + "translation": [ + -2.3514771461486816, 1.3771086931228638, -26.49029541015625 + ], + "mesh": 198, + "name": "DoorB_LIVERYDECAL" + }, { + "mesh": 199, + "name": "Livery_KLM_FuselageA.001" + }, { + "translation": [ + 0.6497254371643066, -2.1026113033294678, -5.016356945037842 + ], + "rotation": [ + 0.712636411190033, 0.7015312910079956, -0.0006685919361189008, 0.001663838280364871 + ], + "mesh": 200, + "name": "Door01_left_LIVERYDECAL" + }, { + "translation": [ + -0.6497254967689514, -2.102611780166626, -5.016357421875 + ], + "rotation": [ + -0.0016642240807414055, -0.0006689373985864222, -0.7015330791473389, 0.7126347422599792 + ], + "mesh": 201, + "name": "Door01_right_LIVERYDECAL" + }, { + "mesh": 202, + "name": "livery_vstab" + }, { + "translation": [ + -2.7386319637298584, -0.0703480988740921, 17.432857513427734 + ], + "mesh": 203, + "name": "Cargo_Door_LIVERYDECAL" + }, { + "mesh": 204, + "name": "Plane.001" + }, { + "mesh": 205, + "name": "Plane.002" + }, { + "mesh": 206, + "name": "Plane.005" + }, { + "mesh": 207, + "name": "Plane.006" + }, { + "scale": [ + 1.0019999742507935, 1, 1 + ], + "mesh": 208, + "name": "Plane.010" + } + ], + "scene": 0, + "scenes": [ + { + "nodes": [ + 0, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445 + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 0, + "joints": [ + 29, + 30, + 41, + 42, + 51, + 53 + ], + "skeleton": 29, + "name": "skeleton #0" + }, { + "inverseBindMatrices": 1, + "joints": [ + 28, 29, 142 + ], + "skeleton": 28, + "name": "skeleton #1" + }, { + "inverseBindMatrices": 2, + "joints": [ + 221, 226, 256 + ], + "skeleton": 221, + "name": "skeleton #2" + }, { + "inverseBindMatrices": 3, + "joints": [ + 256, + 265, + 284, + 285, + 286, + 290 + ], + "skeleton": 256, + "name": "skeleton #3" + }, { + "inverseBindMatrices": 4, + "joints": [ + 0, + 20, + 28, + 29, + 30, + 31, + 38, + 39 + ], + "skeleton": 0, + "name": "skeleton #4" + }, { + "inverseBindMatrices": 5, + "joints": [ + 0, + 20, + 28, + 29, + 30, + 43, + 55 + ], + "skeleton": 0, + "name": "skeleton #5" + }, { + "inverseBindMatrices": 6, + "joints": [ + 28, 154, 155, 156 + ], + "skeleton": 28, + "name": "skeleton #6" + }, { + "inverseBindMatrices": 7, + "joints": [ + 28, + 29, + 30, + 31, + 32, + 36, + 40, + 52, + 65, + 66 + ], + "skeleton": 28, + "name": "skeleton #7" + }, { + "inverseBindMatrices": 8, + "joints": [ + 0, + 211, + 221, + 256, + 265, + 274, + 275, + 276 + ], + "skeleton": 0, + "name": "skeleton #8" + }, { + "inverseBindMatrices": 9, + "joints": [ + 0, + 211, + 221, + 256, + 257, + 265, + 266 + ], + "skeleton": 0, + "name": "skeleton #9" + }, { + "inverseBindMatrices": 10, + "joints": [ + 211, 221 + ], + "skeleton": 211, + "name": "skeleton #10" + }, { + "inverseBindMatrices": 11, + "joints": [ + 221, + 238, + 256, + 265, + 274, + 277, + 281, + 283, + 287, + 292 + ], + "skeleton": 221, + "name": "skeleton #11" + }, { + "inverseBindMatrices": 12, + "joints": [ + 221, 247, 248, 249 + ], + "skeleton": 221, + "name": "skeleton #12" + }, { + "inverseBindMatrices": 13, + "joints": [ + 20, 28 + ], + "skeleton": 20, + "name": "skeleton #13" + }, { + "inverseBindMatrices": 14, + "joints": [ + 0, + 20, + 28, + 72, + 101, + 102, + 103, + 105, + 106, + 109, + 127 + ], + "skeleton": 0, + "name": "skeleton #14" + }, { + "inverseBindMatrices": 15, + "joints": [ + 0, + 211, + 221, + 295, + 296, + 297, + 298, + 300, + 319, + 320, + 351 + ], + "skeleton": 0, + "name": "skeleton #15" + }, { + "inverseBindMatrices": 16, + "joints": [ + 0, + 20, + 28, + 72, + 75, + 76, + 79, + 94, + 95, + 98 + ], + "skeleton": 0, + "name": "skeleton #16" + }, { + "inverseBindMatrices": 17, + "joints": [ + 0, + 211, + 221, + 295, + 326, + 327, + 329, + 332, + 333, + 336 + ], + "skeleton": 0, + "name": "skeleton #17" + }, { + "inverseBindMatrices": 18, + "joints": [ + 0, + 211, + 221, + 256, + 265, + 274, + 277 + ], + "skeleton": 0, + "name": "skeleton #18" + }, { + "inverseBindMatrices": 19, + "joints": [ + 28, + 29, + 30, + 31, + 32, + 36, + 40, + 52, + 65, + 66 + ], + "skeleton": 28, + "name": "skeleton #7_1" + }, { + "inverseBindMatrices": 20, + "joints": [ + 221, + 238, + 256, + 265, + 274, + 277, + 281, + 283, + 287, + 292 + ], + "skeleton": 221, + "name": "skeleton #11_1" + }, { + "inverseBindMatrices": 21, + "joints": [ + 0, + 20, + 28, + 29, + 30, + 31, + 32 + ], + "skeleton": 0, + "name": "skeleton #19" + }, { + "inverseBindMatrices": 22, + "joints": [ + 0, 388, 389, 390, 391 + ], + "skeleton": 0, + "name": "skeleton #20" + }, { + "inverseBindMatrices": 23, + "joints": [ + 0, + 20, + 28, + 29, + 30, + 31, + 32 + ], + "skeleton": 0, + "name": "skeleton #19_1" + }, { + "inverseBindMatrices": 24, + "joints": [ + 0, + 211, + 221, + 256, + 265, + 274, + 277 + ], + "skeleton": 0, + "name": "skeleton #18_1" + } + ], + "textures": [ + { + "extensions": { + "MSFT_texture_dds": { + "source": 0 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 1 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 2 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 3 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 4 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 5 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 6 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 7 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 3 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 8 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 9 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 10 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 11 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 12 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 13 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 14 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 15 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 13 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 14 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 15 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 16 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 17 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 18 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 19 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 20 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 21 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 22 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 23 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 24 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 25 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 26 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 27 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 28 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 29 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 30 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 31 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 32 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 33 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 34 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 35 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 36 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 37 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 38 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 39 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 40 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 41 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 42 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 43 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 44 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 45 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 46 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 47 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 48 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 7 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 49 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 50 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 51 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 52 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 53 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 54 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 55 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 56 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 57 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 58 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 59 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 60 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 61 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 62 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 63 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 64 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 65 + } + } + }, { + "extensions": { + "MSFT_texture_dds": { + "source": 66 + } + } + } + ], + "extensionsUsed": [ + "ASOBO_normal_map_convention", + "ASOBO_material_blend_gbuffer", + "ASOBO_material_draw_order", + "ASOBO_material_detail_map", + "ASOBO_material_windshield_v2", + "MSFT_texture_dds", + "ASOBO_asset_optimized" + ], + "buffers": [ + { + "byteLength": 16690724, + "uri": "B787_lod2.bin" + } + ], + "images": [ + { + "uri": "787_10_AIRFRAME_TAIL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "LIVERY_KLM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DEFAULTDIRT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP02_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "GLASS_DETAILMAP01_MASK.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_DETAIL_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIGHTS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "FROST_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_WINGS_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_REARGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIRE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_TIREBLUR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSTILL_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGSLOW_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGBLURRED_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_DECALS1_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LOD4_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_UNDERCARRIAGE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FUSELAGE2_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_FRONTGEAR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HANDLE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "PASSENGER_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_HUBLOT_EMIS.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_DOOR_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_COMP.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "CARGO_SOUTE_NORM.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + }, { + "uri": "787_10_AIRFRAME_ENGINE0_ALBD.PNG.DDS", + "extras": "ASOBO_image_converted_meta" + } + ] +} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.bin new file mode 100644 index 00000000..5f052ebf Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.gltf new file mode 100644 index 00000000..4a9c7b97 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod3.gltf @@ -0,0 +1 @@ +{"accessors":[{"bufferView":0,"componentType":5126,"count":6,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":384,"componentType":5126,"count":6,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":768,"componentType":5126,"count":2,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":896,"componentType":5126,"count":2,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":1024,"componentType":5126,"count":11,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":1728,"componentType":5126,"count":11,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":2432,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":2880,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3328,"componentType":5126,"count":5,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3648,"componentType":5126,"count":4,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3904,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":4352,"componentType":5126,"count":8,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":4864,"componentType":5126,"count":4,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":5120,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":5568,"componentType":5126,"count":8,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":6080,"componentType":5126,"count":10,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":6720,"componentType":5126,"count":10,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7360,"componentType":5126,"count":3,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7552,"componentType":5126,"count":3,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7744,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":8192,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":1,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":1608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":2412,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":2412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":3216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":3216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":4824,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":4020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":7236,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":4824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":6432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":5628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":6432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":7236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":12060,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":8040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":12864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":8844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":14472,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":9648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":16080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":10452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":16884,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":11256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":12060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":12864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":21708,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":13668,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":22512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":14472,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":24120,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":15276,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":26532,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":16080,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":25728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":16884,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":17688,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":31356,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":18492,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":19296,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":33768,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":20100,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":32160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":20904,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":35376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":21708,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":36180,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":22512,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":23316,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":24120,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":41004,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":24924,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":41808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":25728,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":43416,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":26532,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":45828,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":27336,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":45024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":28140,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":28944,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":50652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":29748,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":30552,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":53064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":31356,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":55476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":32160,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":51456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":32964,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":33768,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":60300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":34572,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":54672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":35376,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":62712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":36180,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":36984,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":65124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":37788,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":38592,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":61104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":39396,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":69948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":40200,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":72360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":41004,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":64320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":41808,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":74772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":42612,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":43416,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":44220,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":79596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":45024,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":82008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":45828,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":70752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":46632,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":84420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":47436,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":86832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":48240,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":73968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":49044,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":89244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":49848,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":91656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":50652,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":51456,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":94068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":52260,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":96480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":53064,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":80400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":53868,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":98892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":54672,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":101304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":55476,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":83616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":56280,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":103716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":57084,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":86832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":57488,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":106128,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":57892,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":88448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":58296,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":107340,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":58700,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":108552,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":59104,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":90064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":59508,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":109764,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":59912,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":110976,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":60316,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":91680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":60720,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":112188,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":61124,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":113400,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":61528,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":93296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":61932,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":114612,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":62336,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":115824,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":62740,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":94912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":63144,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":117036,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":63548,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":118248,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":63952,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":96528,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":64356,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":119460,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":64760,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":120672,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":65164,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":98144,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":65568,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":121884,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":65972,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":123096,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":66376,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":99760,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":66780,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":124308,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":67184,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":125520,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":67588,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":101376,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":67992,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":126732,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":68396,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":127944,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":68800,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":102992,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":69204,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":129156,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":69608,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":104608,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70012,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":106224,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70416,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":130368,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":70820,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":107840,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":71224,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":131580,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":71628,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":132792,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":72032,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":109456,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":72436,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":134004,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":72840,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":111072,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":73244,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":135216,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":73648,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":112688,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":74052,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":136428,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":74456,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":137640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":74860,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":114304,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":75264,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":138852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":75668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":140064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":76072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":115920,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":76476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":141276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":76880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":142488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":77284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":117536,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":77688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":143700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":78092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":144912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":78496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":119152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":78900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":146124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":79304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":147336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":79708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":120768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":80112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":148548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":80516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":149760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":80920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":122384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":81324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":150972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":81728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":152184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":82132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":124000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":82536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":153396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":82940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":154608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":83344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":125616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":83748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":155820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":84152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":157032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":84556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":127232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":84960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":158244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":85364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":159456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":85768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":128848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":86172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":160668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":86576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":161880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":86980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":130464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":87384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":163092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":87788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":164304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":88192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":132080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":88596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":165516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":89000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":166728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":89404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":133696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":89808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":167940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":90212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":169152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":90616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":135312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":91020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":170364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":91424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":171576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":91828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":136928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":92232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":172788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":92636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":174000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":93040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":138544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":93444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":175212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":93848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":176424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":94252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":140160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":94656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":177636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":95060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":178848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":95464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":141776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":95868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":180060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":96272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":181272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":96676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":143392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":97080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":182484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":97484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":183696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":97888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":145008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":98292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":184908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":98696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":186120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":99100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":146624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":99504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":187332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":99908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":188544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":100312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":148240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":100716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":189756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":101120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":190968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":101524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":149856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":101928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":192180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":102332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":193392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":102736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":151472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":103140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":194604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":103544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":195816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":103948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":153088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":104352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":197028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":104756,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":198240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":105560,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":154704,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":106364,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":200652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":107168,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":203064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":107972,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":157920,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":108776,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":205476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":109580,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":207888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":110384,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":161136,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":111188,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":210300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":111992,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":212712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":112796,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":164352,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":113600,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":215124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":114404,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":217536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":115208,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":167568,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":116012,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":219948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":116816,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":222360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":117620,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":170784,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":118424,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":224772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":119228,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":227184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":120032,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":174000,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":120836,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":229596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":121640,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":232008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":122444,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":177216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":123248,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":234420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":124052,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":236832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":124856,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":180432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":125660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":239244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":126464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":241656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":127268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":183648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":128072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":244068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":128876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":246480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":129680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":186864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":130484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":248892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":131288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":251304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":132092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":190080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":132896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":253716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":133700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":256128,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":134504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":193296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":135308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":258540,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":136112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":260952,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":136916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":196512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":137720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":263364,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":138524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":265776,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":139328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":199728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":140132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":268188,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":140936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":270600,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":141740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":202944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":142544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":273012,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":143348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":275424,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":144152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":206160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":144956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":277836,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":145760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":280248,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":146564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":209376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":147368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":282660,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":148172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":285072,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":148976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":212592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":149780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":287484,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":150584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":289896,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":151388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":215808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":152192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":292308,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":152996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":294720,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":153800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":219024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":154604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":297132,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":155408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":299544,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":156212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":222240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":157016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":301956,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":157820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":304368,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":158624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":225456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":159428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":306780,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":160232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":309192,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":161036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":228672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":161840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":311604,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":162644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":314016,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":163448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":231888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":164252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":316428,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":165056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":318840,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":165860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":235104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":166664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":321252,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":167468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":323664,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":168272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":238320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":169076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":326076,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":169880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":328488,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":170684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":241536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":171488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":330900,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":172292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":333312,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":173096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":244752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":173900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":335724,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":174704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":338136,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":175508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":247968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":176312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":340548,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":177116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":342960,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":177920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":251184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":178724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":345372,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":179528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":347784,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":180332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":254400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":181136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":350196,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":181940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":352608,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":182744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":257616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":183548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":355020,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":184352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":357432,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":185156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":260832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":185960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":359844,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":186764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":362256,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":187568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":264048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":188372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":364668,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":189176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":367080,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":189580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":267264,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":189984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":368292,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":190388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":369504,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":190792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":268880,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":191196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":370716,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":191600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":371928,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":192004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":270496,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":192408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":373140,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":192812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":374352,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":193216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":272112,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":193620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":375564,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":194024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":376776,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":194428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":273728,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":194832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":377988,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":195236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":275344,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":195640,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":276960,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196044,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":379200,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":196448,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":278576,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196852,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":380412,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":197256,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":280192,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":197660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":381624,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":198464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":281808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":199268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":384036,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":200072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":386448,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":200876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":285024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":201680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":388860,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":202484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":391272,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":203288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":288240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":204092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":393684,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":204896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":396096,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":205700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":291456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":206504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":398508,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":207308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":400920,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":208112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":294672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":208916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":403332,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":209720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":405744,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":210524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":297888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":211328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":408156,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":212132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":410568,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":212936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":301104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":213740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":412980,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":214544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":415392,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":215348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":304320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":216152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":417804,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":216956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":420216,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":217760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":307536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":218564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":422628,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":219368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":425040,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":220172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":310752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":220976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":427452,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":221780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":429864,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":222584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":313968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":223388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":432276,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":224192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":434688,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":224996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":317184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":225800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":437100,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":226604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":439512,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":227408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":320400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":228212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":441924,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":229016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":444336,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":229820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":323616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":230624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":446748,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":231428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":449160,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":232232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":326832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":233036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":451572,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":233840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":453984,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":234644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":330048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":235448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":456396,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":236252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":458808,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":237056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":333264,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":237860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":461220,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":238664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":463632,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":239468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":336480,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":240272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":466044,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":241076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":468456,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":241880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":339696,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":242684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":470868,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":243488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":473280,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":244292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":342912,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":245096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":475692,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":245900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":478104,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":246704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":346128,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":247508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":480516,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":248312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":482928,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":249116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":349344,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":249920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":485340,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":250724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":487752,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":251528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":352560,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":252332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":490164,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":253136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":492576,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":253940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":355776,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":254744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":494988,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":255548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":497400,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":256352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":358992,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":257156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":499812,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":257960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":502224,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":258764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":362208,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":259568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":504636,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":260372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":507048,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":261176,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":365424,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":261980,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":509460,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":262784,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":511872,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":263588,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":368640,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":264392,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":514284,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":265196,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":516696,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":266000,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":371856,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":266804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":519108,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":267608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":521520,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":268412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":375072,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":269216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":523932,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":270020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":526344,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":270824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":378288,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":271628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":528756,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":272432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":531168,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":273236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":381504,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":274040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":533580,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":274844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":535992,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":275648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":384720,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":276452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":538404,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":277256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":540816,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":278060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":387936,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":278864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":543228,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":279668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":545640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":280072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":391152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":280476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":546852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":280880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":548064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":281284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":392768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":281688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":549276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":282092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":550488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":282496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":394384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":282900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":551700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":283304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":552912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":283708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":396000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":284112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":554124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":284516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":555336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":284920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":397616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":285324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":556548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":285728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":557760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":286132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":399232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":286536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":558972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":286940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":560184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":287344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":400848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":287748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":561396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":288152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":562608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":288556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":402464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":288960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":563820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":289364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":565032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":289768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":404080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":290172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":566244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":290576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":567456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":290980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":405696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":291384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":568668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":291788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":569880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":292192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":407312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":292596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":571092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":293000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":572304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":293404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":408928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":293808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":573516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":294212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":574728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":294616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":410544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":295020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":575940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":295424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":577152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":295828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":412160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":296232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":578364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":296636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":413776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":579576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":297444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":415392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":417008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":298252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":580788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":298656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":418624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":420240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":582000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":299868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":421856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":423472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":583212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":425088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":301484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":584424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":426704,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":302292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":585636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":302696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":586848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":303100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":428320,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":303504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":588060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":303908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":589272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":304312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":429936,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":304716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":590484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":305120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":591696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":305524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":431552,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":305928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":592908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":306332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":594120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":306736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":433168,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":307140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":595332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":307544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":596544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":307948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":434784,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":308352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":597756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":308756,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":598968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":309160,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":436400,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":309564,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":600180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":309968,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":601392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":310372,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":438016,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":310776,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":602604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":311180,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":603816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":311584,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":439632,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":311988,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":605028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":312392,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":606240,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":312796,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":441248,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":313200,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":607452,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":313604,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":608664,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":314008,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":442864,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":314412,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":609876,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":314816,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":611088,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":315220,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":444480,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":315624,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":612300,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":316028,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":446096,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":316432,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":613512,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":316836,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":447712,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":317240,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":614724,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":317644,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":615936,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":318048,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":449328,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":318452,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":617148,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":318856,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":618360,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":319260,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":450944,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":319664,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":452560,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320068,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":619572,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320472,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454176,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320484,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454224,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320496,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454272,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320508,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454320,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320520,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":620784,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320924,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454368,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":321328,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":621996,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":321732,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":623208,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":322136,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":455984,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":322540,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":624420,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":322944,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":625632,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":323348,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":457600,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":323752,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":626844,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":324156,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":628056,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":324560,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":459216,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":324964,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":629268,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":325368,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":630480,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":325772,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":460832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":326176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":631692,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":326580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":632904,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":326984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":462448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":327388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":634116,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":327792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":635328,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":328196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":464064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":328600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":636540,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":329004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":637752,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":329408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":465680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":329812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":638964,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":330216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":640176,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":330620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":467296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":331024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":641388,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":331428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":642600,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":331832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":468912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":332236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":643812,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":4,"componentType":5126,"count":82,"min":[-0.25237342715263367,2.679995536804199,-38.98570251464844],"max":[0.2523697018623352,12.393295288085938,-32.777099609375],"type":"VEC3","name":"x3_Rudder_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":12,"componentType":5120,"count":82,"type":"VEC4","name":"x3_Rudder_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":16,"componentType":5120,"count":82,"type":"VEC4","name":"x3_Rudder_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":20,"componentType":5122,"count":82,"type":"VEC2","name":"x3_Rudder_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":24,"componentType":5122,"count":82,"type":"VEC2","name":"x3_Rudder_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":28,"componentType":5123,"count":82,"type":"VEC4","name":"x3_Rudder_center_vertices#0_COLOR_0"},{"bufferView":5,"componentType":5123,"count":138,"type":"SCALAR","name":"x3_Rudder_center_indices#0"},{"bufferView":4,"byteOffset":2952,"componentType":5126,"count":40,"min":[-0.21104387938976288,-0.5556049346923828,-1.0596466064453125],"max":[0.2110438048839569,0.5556044578552246,1.0596466064453125],"type":"VEC3","name":"x3_Livery_KLM_Rudder_vertices#0_POSITION"},{"bufferView":4,"byteOffset":2964,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Livery_KLM_Rudder_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":2968,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Livery_KLM_Rudder_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":2972,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Livery_KLM_Rudder_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":2976,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Livery_KLM_Rudder_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":2980,"componentType":5123,"count":40,"type":"VEC4","name":"x3_Livery_KLM_Rudder_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":276,"componentType":5123,"count":102,"type":"SCALAR","name":"x3_Livery_KLM_Rudder_indices#0"},{"bufferView":4,"byteOffset":4392,"componentType":5126,"count":38,"min":[-0.07582969963550568,-0.802740216255188,-0.799527108669281],"max":[0.03561084717512131,0.0010426774388179183,0.6260731816291809],"type":"VEC3","name":"x3_C_Door_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":4404,"componentType":5120,"count":38,"type":"VEC4","name":"x3_C_Door_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":4408,"componentType":5120,"count":38,"type":"VEC4","name":"x3_C_Door_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":4412,"componentType":5122,"count":38,"type":"VEC2","name":"x3_C_Door_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":4416,"componentType":5122,"count":38,"type":"VEC2","name":"x3_C_Door_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":4420,"componentType":5123,"count":38,"type":"VEC4","name":"x3_C_Door_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":480,"componentType":5123,"count":78,"type":"SCALAR","name":"x3_C_Door_right_indices#1"},{"bufferView":4,"byteOffset":5760,"componentType":5126,"count":16,"min":[-0.05284452438354492,-0.35190147161483765,-0.6955661177635193],"max":[0.05284440517425537,0.3519015908241272,0.6955662369728088],"type":"VEC3","name":"x3_Livery_KLM_RGDoor_vertices#0_POSITION"},{"bufferView":4,"byteOffset":5772,"componentType":5120,"count":16,"type":"VEC4","name":"x3_Livery_KLM_RGDoor_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":5776,"componentType":5120,"count":16,"type":"VEC4","name":"x3_Livery_KLM_RGDoor_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":5780,"componentType":5122,"count":16,"type":"VEC2","name":"x3_Livery_KLM_RGDoor_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":5784,"componentType":5122,"count":16,"type":"VEC2","name":"x3_Livery_KLM_RGDoor_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":5788,"componentType":5123,"count":16,"type":"VEC4","name":"x3_Livery_KLM_RGDoor_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":636,"componentType":5123,"count":30,"type":"SCALAR","name":"x3_Livery_KLM_RGDoor_indices#0"},{"bufferView":4,"byteOffset":6336,"componentType":5126,"count":43,"min":[0.041437480598688126,-0.2936725914478302,-0.930530309677124],"max":[0.7319868803024292,0.10878972709178925,0.95964115858078],"type":"VEC3","name":"x3_C_Door_01_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":6348,"componentType":5120,"count":43,"type":"VEC4","name":"x3_C_Door_01_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":6352,"componentType":5120,"count":43,"type":"VEC4","name":"x3_C_Door_01_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":6356,"componentType":5122,"count":43,"type":"VEC2","name":"x3_C_Door_01_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":6360,"componentType":5122,"count":43,"type":"VEC2","name":"x3_C_Door_01_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":6364,"componentType":5123,"count":43,"type":"VEC4","name":"x3_C_Door_01_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":696,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_C_Door_01_right_indices#0"},{"bufferView":4,"byteOffset":7884,"componentType":5126,"count":37,"min":[-0.08399135619401932,-0.7955362796783447,-0.7618427872657776],"max":[0.059951599687337875,0.0030883168801665306,0.6639270186424255],"type":"VEC3","name":"x3_C_Door_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":7896,"componentType":5120,"count":37,"type":"VEC4","name":"x3_C_Door_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":7900,"componentType":5120,"count":37,"type":"VEC4","name":"x3_C_Door_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":7904,"componentType":5122,"count":37,"type":"VEC2","name":"x3_C_Door_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":7908,"componentType":5122,"count":37,"type":"VEC2","name":"x3_C_Door_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":7912,"componentType":5123,"count":37,"type":"VEC4","name":"x3_C_Door_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":888,"componentType":5123,"count":78,"type":"SCALAR","name":"x3_C_Door_left_indices#1"},{"bufferView":4,"byteOffset":9216,"componentType":5126,"count":16,"min":[-0.052844561636447906,-0.3519015312194824,-0.6955661773681641],"max":[0.05284450575709343,0.3519015312194824,0.6955661773681641],"type":"VEC3","name":"x3_Livery_KLM_LGDoor_vertices#0_POSITION"},{"bufferView":4,"byteOffset":9228,"componentType":5120,"count":16,"type":"VEC4","name":"x3_Livery_KLM_LGDoor_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":9232,"componentType":5120,"count":16,"type":"VEC4","name":"x3_Livery_KLM_LGDoor_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":9236,"componentType":5122,"count":16,"type":"VEC2","name":"x3_Livery_KLM_LGDoor_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":9240,"componentType":5122,"count":16,"type":"VEC2","name":"x3_Livery_KLM_LGDoor_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":9244,"componentType":5123,"count":16,"type":"VEC4","name":"x3_Livery_KLM_LGDoor_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1044,"componentType":5123,"count":30,"type":"SCALAR","name":"x3_Livery_KLM_LGDoor_indices#0"},{"bufferView":4,"byteOffset":9792,"componentType":5126,"count":41,"min":[-0.7320094108581543,-0.29325971007347107,-0.9280006885528564],"max":[-0.041459131985902786,0.1092025563120842,0.962169885635376],"type":"VEC3","name":"x3_C_Door_01_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":9804,"componentType":5120,"count":41,"type":"VEC4","name":"x3_C_Door_01_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":9808,"componentType":5120,"count":41,"type":"VEC4","name":"x3_C_Door_01_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":9812,"componentType":5122,"count":41,"type":"VEC2","name":"x3_C_Door_01_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":9816,"componentType":5122,"count":41,"type":"VEC2","name":"x3_C_Door_01_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":9820,"componentType":5123,"count":41,"type":"VEC4","name":"x3_C_Door_01_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1104,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_C_Door_01_left_indices#0"},{"bufferView":4,"byteOffset":11268,"componentType":5126,"count":36,"min":[0.7656331062316895,1.3028311729431152,-39.56481170654297],"max":[9.347391128540039,2.4664881229400635,-34.850791931152344],"type":"VEC3","name":"x3_Elevator_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":11280,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Elevator_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":11284,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Elevator_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":11288,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Elevator_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":11292,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Elevator_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":11296,"componentType":5123,"count":36,"type":"VEC4","name":"x3_Elevator_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1296,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Elevator_left_indices#0"},{"bufferView":4,"byteOffset":12564,"componentType":5126,"count":200,"min":[1.6828149557113647,0.982743501663208,-38.744876861572266],"max":[9.855287551879883,2.5371522903442383,-30.5740966796875],"type":"VEC3","name":"FROST_ELEVATORL001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":12576,"componentType":5120,"count":200,"type":"VEC4","name":"FROST_ELEVATORL001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":12580,"componentType":5120,"count":200,"type":"VEC4","name":"FROST_ELEVATORL001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":12584,"componentType":5122,"count":200,"type":"VEC2","name":"FROST_ELEVATORL001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":12588,"componentType":5122,"count":200,"type":"VEC2","name":"FROST_ELEVATORL001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":12592,"componentType":5123,"count":200,"type":"VEC4","name":"FROST_ELEVATORL001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1416,"componentType":5123,"count":300,"type":"SCALAR","name":"FROST_ELEVATORL001_indices#0"},{"bufferView":4,"byteOffset":19764,"componentType":5126,"count":159,"min":[1.1060726642608643,0.4761982560157776,-39.7297248840332],"max":[9.833050727844238,2.4955482482910156,-30.271474838256836],"type":"VEC3","name":"x3_Trim_Elevator_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":19776,"componentType":5120,"count":159,"type":"VEC4","name":"x3_Trim_Elevator_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":19780,"componentType":5120,"count":159,"type":"VEC4","name":"x3_Trim_Elevator_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":19784,"componentType":5122,"count":159,"type":"VEC2","name":"x3_Trim_Elevator_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":19788,"componentType":5122,"count":159,"type":"VEC2","name":"x3_Trim_Elevator_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":19792,"componentType":5123,"count":159,"type":"VEC4","name":"x3_Trim_Elevator_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2016,"componentType":5123,"count":414,"type":"SCALAR","name":"x3_Trim_Elevator_left_indices#0"},{"bufferView":4,"byteOffset":25488,"componentType":5126,"count":3,"min":[-0.026365283876657486,-0.014438450336456299,-0.03060138039290905],"max":[0.0007920264033600688,-0.010132819414138794,-0.0008687974186614156],"type":"VEC3","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":25500,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":25504,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":25508,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":25512,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":25516,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2844,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Logo_Left_indices#0"},{"bufferView":4,"byteOffset":25596,"componentType":5126,"count":94,"min":[-0.2000730037689209,-0.8401398658752441,-0.9833755493164062],"max":[0.2000725269317627,0.8401395082473755,0.9833755493164062],"type":"VEC3","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_POSITION"},{"bufferView":4,"byteOffset":25608,"componentType":5120,"count":94,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":25612,"componentType":5120,"count":94,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":25616,"componentType":5122,"count":94,"type":"VEC2","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":25620,"componentType":5122,"count":94,"type":"VEC2","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":25624,"componentType":5123,"count":94,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimL_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2850,"componentType":5123,"count":270,"type":"SCALAR","name":"x3_Livery_KLM_ElevatorTrimL_indices#0"},{"bufferView":4,"byteOffset":28980,"componentType":5126,"count":3,"min":[-0.0030384063720703125,0.010597944259643555,0.02518939971923828],"max":[-0.0007419586181640625,0.013393640518188477,0.026857376098632812],"type":"VEC3","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_POSITION"},{"bufferView":4,"byteOffset":28992,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":28996,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":29000,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":29004,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":29008,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3390,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_NavigationRed_indices#0"},{"bufferView":4,"byteOffset":29088,"componentType":5126,"count":4,"min":[-0.017635345458984375,0.024918079376220703,-0.011774063110351562],"max":[-0.001972198486328125,0.05131053924560547,-0.008241653442382812],"type":"VEC3","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":29100,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":29104,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":29108,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":29112,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":29116,"componentType":5123,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3396,"componentType":5123,"count":6,"type":"SCALAR","name":"x3_LIGHT_ASOBO_NavigationWing_Left_indices#0"},{"bufferView":4,"byteOffset":29232,"componentType":5126,"count":3,"min":[0.027011871337890625,0.0137939453125,0.024614334106445312],"max":[0.030628204345703125,0.017323970794677734,0.0253143310546875],"type":"VEC3","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":29244,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":29248,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":29252,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":29256,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":29260,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3408,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_StrobeWing_Left_indices#0"},{"bufferView":4,"byteOffset":29340,"componentType":5126,"count":24,"min":[-1.038822054862976,-0.25515908002853394,-1.0270861387252808],"max":[1.0416889190673828,0.14307540655136108,0.36604490876197815],"type":"VEC3","name":"x3_Spoiler_2_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":29352,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Spoiler_2_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":29356,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Spoiler_2_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":29360,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Spoiler_2_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":29364,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Spoiler_2_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":29368,"componentType":5123,"count":24,"type":"VEC4","name":"x3_Spoiler_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3414,"componentType":5123,"count":36,"type":"SCALAR","name":"x3_Spoiler_2_left_indices#0"},{"bufferView":4,"byteOffset":30204,"componentType":5126,"count":134,"min":[-1.0627738237380981,-0.06693630665540695,-1.6151909828186035],"max":[0.7649363279342651,0.6509166955947876,0.27188000082969666],"type":"VEC3","name":"x3_Flaps_1_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":30216,"componentType":5120,"count":134,"type":"VEC4","name":"x3_Flaps_1_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":30220,"componentType":5120,"count":134,"type":"VEC4","name":"x3_Flaps_1_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":30224,"componentType":5122,"count":134,"type":"VEC2","name":"x3_Flaps_1_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":30228,"componentType":5122,"count":134,"type":"VEC2","name":"x3_Flaps_1_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":30232,"componentType":5123,"count":134,"type":"VEC4","name":"x3_Flaps_1_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3486,"componentType":5123,"count":288,"type":"SCALAR","name":"x3_Flaps_1_1_left_indices#0"},{"bufferView":4,"byteOffset":35028,"componentType":5126,"count":36,"min":[3.323634386062622,-0.4529212713241577,-0.7563261985778809],"max":[8.716888427734375,0.8474713563919067,3.1077423095703125],"type":"VEC3","name":"FROST_KRUEGERL003_vertices#0_POSITION"},{"bufferView":4,"byteOffset":35040,"componentType":5120,"count":36,"type":"VEC4","name":"FROST_KRUEGERL003_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":35044,"componentType":5120,"count":36,"type":"VEC4","name":"FROST_KRUEGERL003_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":35048,"componentType":5122,"count":36,"type":"VEC2","name":"FROST_KRUEGERL003_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":35052,"componentType":5122,"count":36,"type":"VEC2","name":"FROST_KRUEGERL003_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":35056,"componentType":5123,"count":36,"type":"VEC4","name":"FROST_KRUEGERL003_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4062,"componentType":5123,"count":54,"type":"SCALAR","name":"FROST_KRUEGERL003_indices#0"},{"bufferView":4,"byteOffset":36324,"componentType":5126,"count":95,"min":[-2.339193344116211,-0.37116098403930664,-1.43719482421875],"max":[3.058910846710205,0.8772868514060974,2.4244511127471924],"type":"VEC3","name":"x3_FlapsKrueger_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":36336,"componentType":5120,"count":95,"type":"VEC4","name":"x3_FlapsKrueger_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":36340,"componentType":5120,"count":95,"type":"VEC4","name":"x3_FlapsKrueger_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":36344,"componentType":5122,"count":95,"type":"VEC2","name":"x3_FlapsKrueger_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":36348,"componentType":5122,"count":95,"type":"VEC2","name":"x3_FlapsKrueger_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":36352,"componentType":5123,"count":95,"type":"VEC4","name":"x3_FlapsKrueger_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4170,"componentType":5123,"count":228,"type":"SCALAR","name":"x3_FlapsKrueger_1_left_indices#0"},{"bufferView":4,"byteOffset":39744,"componentType":5126,"count":194,"min":[-3.4624414443969727,-0.26880714297294617,-2.4887919425964355],"max":[4.0117506980896,1.4273381233215332,0.11581400036811829],"type":"VEC3","name":"x3_Flaps_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":39756,"componentType":5120,"count":194,"type":"VEC4","name":"x3_Flaps_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":39760,"componentType":5120,"count":194,"type":"VEC4","name":"x3_Flaps_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":39764,"componentType":5122,"count":194,"type":"VEC2","name":"x3_Flaps_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":39768,"componentType":5122,"count":194,"type":"VEC2","name":"x3_Flaps_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":39772,"componentType":5123,"count":194,"type":"VEC4","name":"x3_Flaps_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4626,"componentType":5123,"count":339,"type":"SCALAR","name":"x3_Flaps_1_left_indices#0"},{"bufferView":4,"byteOffset":46728,"componentType":5126,"count":28,"min":[-0.4450570344924927,-0.07203429192304611,-0.18740883469581604],"max":[0.06948048621416092,0.06068330258131027,0.045962993055582047],"type":"VEC3","name":"x3_Landing_Gear_17_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":46740,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":46744,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":46748,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Landing_Gear_17_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":46752,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Landing_Gear_17_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":46756,"componentType":5123,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5304,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_17_left_indices#0"},{"bufferView":4,"byteOffset":47736,"componentType":5126,"count":24,"min":[-0.7085371017456055,-0.05271777883172035,-0.3127738833427429],"max":[0.06933873146772385,0.6506999135017395,0.08763234317302704],"type":"VEC3","name":"x3_Landing_Gear_31_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":47748,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":47752,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":47756,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Landing_Gear_31_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":47760,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Landing_Gear_31_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":47764,"componentType":5123,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5424,"componentType":5123,"count":36,"type":"SCALAR","name":"x3_Landing_Gear_31_left_indices#0"},{"bufferView":4,"byteOffset":48600,"componentType":5126,"count":34,"min":[-0.1679796427488327,0.010532571002840996,-0.0869051069021225],"max":[0.06946840137243271,0.20492330193519592,0.06629917025566101],"type":"VEC3","name":"x3_Landing_Gear_33_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":48612,"componentType":5120,"count":34,"type":"VEC4","name":"x3_Landing_Gear_33_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":48616,"componentType":5120,"count":34,"type":"VEC4","name":"x3_Landing_Gear_33_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":48620,"componentType":5122,"count":34,"type":"VEC2","name":"x3_Landing_Gear_33_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":48624,"componentType":5122,"count":34,"type":"VEC2","name":"x3_Landing_Gear_33_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":48628,"componentType":5123,"count":34,"type":"VEC4","name":"x3_Landing_Gear_33_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5496,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_33_left_indices#0"},{"bufferView":4,"byteOffset":49824,"componentType":5126,"count":26,"min":[-0.8506450653076172,-0.08881284296512604,-0.08856969326734543],"max":[0.06877904385328293,0.784827709197998,0.8842982649803162],"type":"VEC3","name":"x3_Landing_Gear_30_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":49836,"componentType":5120,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":49840,"componentType":5120,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":49844,"componentType":5122,"count":26,"type":"VEC2","name":"x3_Landing_Gear_30_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":49848,"componentType":5122,"count":26,"type":"VEC2","name":"x3_Landing_Gear_30_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":49852,"componentType":5123,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5616,"componentType":5123,"count":42,"type":"SCALAR","name":"x3_Landing_Gear_30_left_indices#0"},{"bufferView":4,"byteOffset":50760,"componentType":5126,"count":44,"min":[-0.6459922790527344,-0.08312942087650299,-0.09812013059854507],"max":[0.08840885758399963,0.6036122441291809,0.7013183832168579],"type":"VEC3","name":"x3_Landing_Gear_32_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":50772,"componentType":5120,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":50776,"componentType":5120,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":50780,"componentType":5122,"count":44,"type":"VEC2","name":"x3_Landing_Gear_32_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":50784,"componentType":5122,"count":44,"type":"VEC2","name":"x3_Landing_Gear_32_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":50788,"componentType":5123,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5700,"componentType":5123,"count":84,"type":"SCALAR","name":"x3_Landing_Gear_32_left_indices#0"},{"bufferView":4,"byteOffset":52344,"componentType":5126,"count":36,"min":[-0.14805452525615692,-0.031516183167696,-0.06807056069374084],"max":[0.07366479933261871,0.1707341969013214,0.1583222597837448],"type":"VEC3","name":"x3_Landing_Gear_34_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":52356,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_34_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":52360,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_34_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":52364,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_34_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":52368,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_34_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":52372,"componentType":5123,"count":36,"type":"VEC4","name":"x3_Landing_Gear_34_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5868,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_34_left_indices#0"},{"bufferView":4,"byteOffset":53640,"componentType":5126,"count":38,"min":[-0.5249789357185364,-0.06987446546554565,-0.23300065100193024],"max":[0.04763861373066902,0.03742034733295441,0.0658683106303215],"type":"VEC3","name":"x3_Landing_Gear_21_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":53652,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":53656,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":53660,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Landing_Gear_21_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":53664,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Landing_Gear_21_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":53668,"componentType":5123,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5988,"componentType":5123,"count":72,"type":"SCALAR","name":"x3_Landing_Gear_21_left_indices#0"},{"bufferView":4,"byteOffset":55008,"componentType":5126,"count":106,"min":[-0.041703540831804276,-0.0027951993979513645,-0.06835334748029709],"max":[0.03720469772815704,0.09789524227380753,0.0663219466805458],"type":"VEC3","name":"x3_Landing_Gear_Part17_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":55020,"componentType":5120,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":55024,"componentType":5120,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":55028,"componentType":5122,"count":106,"type":"VEC2","name":"x3_Landing_Gear_Part17_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":55032,"componentType":5122,"count":106,"type":"VEC2","name":"x3_Landing_Gear_Part17_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":55036,"componentType":5123,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6132,"componentType":5123,"count":276,"type":"SCALAR","name":"x3_Landing_Gear_Part17_left_indices#0"},{"bufferView":4,"byteOffset":58824,"componentType":5126,"count":84,"min":[-0.26032522320747375,-0.2842477858066559,-0.5570253729820251],"max":[0.2621158957481384,0.08912281692028046,0.0890941396355629],"type":"VEC3","name":"x3_Landing_Gear_07_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":58836,"componentType":5120,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":58840,"componentType":5120,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":58844,"componentType":5122,"count":84,"type":"VEC2","name":"x3_Landing_Gear_07_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":58848,"componentType":5122,"count":84,"type":"VEC2","name":"x3_Landing_Gear_07_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":58852,"componentType":5123,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6684,"componentType":5123,"count":216,"type":"SCALAR","name":"x3_Landing_Gear_07_left_indices#0"},{"bufferView":4,"byteOffset":61848,"componentType":5126,"count":124,"min":[-0.192624032497406,-0.3123703896999359,-0.05880754441022873],"max":[0.3298163414001465,0.058782290667295456,0.5867204070091248],"type":"VEC3","name":"x3_Landing_Gear_08_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":61860,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":61864,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":61868,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Landing_Gear_08_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":61872,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Landing_Gear_08_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":61876,"componentType":5123,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":7116,"componentType":5123,"count":300,"type":"SCALAR","name":"x3_Landing_Gear_08_left_indices#0"},{"bufferView":4,"byteOffset":66312,"componentType":5126,"count":132,"min":[-0.23557592928409576,-0.10106657445430756,-0.05199788510799408],"max":[0.22164994478225708,0.05250846967101097,0.7016521692276001],"type":"VEC3","name":"x3_Landing_Gear_36_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":66324,"componentType":5120,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":66328,"componentType":5120,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":66332,"componentType":5122,"count":132,"type":"VEC2","name":"x3_Landing_Gear_36_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":66336,"componentType":5122,"count":132,"type":"VEC2","name":"x3_Landing_Gear_36_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":66340,"componentType":5123,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":7716,"componentType":5123,"count":288,"type":"SCALAR","name":"x3_Landing_Gear_36_left_indices#0"},{"bufferView":4,"byteOffset":71064,"componentType":5126,"count":136,"min":[-0.22926229238510132,-0.10058541595935822,-0.7593185305595398],"max":[0.22794239223003387,0.052349552512168884,0.053085312247276306],"type":"VEC3","name":"x3_Landing_Gear_35_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":71076,"componentType":5120,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":71080,"componentType":5120,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":71084,"componentType":5122,"count":136,"type":"VEC2","name":"x3_Landing_Gear_35_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":71088,"componentType":5122,"count":136,"type":"VEC2","name":"x3_Landing_Gear_35_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":71092,"componentType":5123,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":8292,"componentType":5123,"count":288,"type":"SCALAR","name":"x3_Landing_Gear_35_left_indices#0"},{"bufferView":4,"byteOffset":75960,"componentType":5126,"count":322,"min":[-0.967563271522522,-0.6218786239624023,-0.6219954490661621],"max":[0.9675797820091248,0.6219096183776855,0.6219280362129211],"type":"VEC3","name":"x3_LWheel_01_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":75972,"componentType":5120,"count":322,"type":"VEC4","name":"x3_LWheel_01_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":75976,"componentType":5120,"count":322,"type":"VEC4","name":"x3_LWheel_01_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":75980,"componentType":5122,"count":322,"type":"VEC2","name":"x3_LWheel_01_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":75984,"componentType":5122,"count":322,"type":"VEC2","name":"x3_LWheel_01_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":75988,"componentType":5123,"count":322,"type":"VEC4","name":"x3_LWheel_01_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":8868,"componentType":5123,"count":708,"type":"SCALAR","name":"x3_LWheel_01_still_indices#0"},{"bufferView":4,"byteOffset":87552,"componentType":5126,"count":300,"min":[-0.9604098796844482,-0.626029908657074,-0.6272152662277222],"max":[0.9604149460792542,0.6283391714096069,0.6271774768829346],"type":"VEC3","name":"x3_LWheel_01_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":87564,"componentType":5120,"count":300,"type":"VEC4","name":"x3_LWheel_01_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":87568,"componentType":5120,"count":300,"type":"VEC4","name":"x3_LWheel_01_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":87572,"componentType":5122,"count":300,"type":"VEC2","name":"x3_LWheel_01_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":87576,"componentType":5122,"count":300,"type":"VEC2","name":"x3_LWheel_01_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":87580,"componentType":5123,"count":300,"type":"VEC4","name":"x3_LWheel_01_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10284,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_LWheel_01_blurred_indices#0"},{"bufferView":4,"byteOffset":98352,"componentType":5126,"count":322,"min":[-0.9674298167228699,-0.6207314729690552,-0.6220363974571228],"max":[0.9675118923187256,0.6232026815414429,0.6218374967575073],"type":"VEC3","name":"x3_LWheel_02_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":98364,"componentType":5120,"count":322,"type":"VEC4","name":"x3_LWheel_02_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":98368,"componentType":5120,"count":322,"type":"VEC4","name":"x3_LWheel_02_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":98372,"componentType":5122,"count":322,"type":"VEC2","name":"x3_LWheel_02_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":98376,"componentType":5122,"count":322,"type":"VEC2","name":"x3_LWheel_02_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":98380,"componentType":5123,"count":322,"type":"VEC4","name":"x3_LWheel_02_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11436,"componentType":5123,"count":708,"type":"SCALAR","name":"x3_LWheel_02_still_indices#0"},{"bufferView":4,"byteOffset":109944,"componentType":5126,"count":300,"min":[-0.9604412913322449,-0.6283254623413086,-0.6271680593490601],"max":[0.9604587554931641,0.6260239481925964,0.6272009611129761],"type":"VEC3","name":"x3_LWheel_02_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":109956,"componentType":5120,"count":300,"type":"VEC4","name":"x3_LWheel_02_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":109960,"componentType":5120,"count":300,"type":"VEC4","name":"x3_LWheel_02_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":109964,"componentType":5122,"count":300,"type":"VEC2","name":"x3_LWheel_02_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":109968,"componentType":5122,"count":300,"type":"VEC2","name":"x3_LWheel_02_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":109972,"componentType":5123,"count":300,"type":"VEC4","name":"x3_LWheel_02_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":12852,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_LWheel_02_blurred_indices#0"},{"bufferView":4,"byteOffset":120744,"componentType":5126,"count":765,"min":[-0.4377422034740448,-0.3427107036113739,-1.0736439228057861],"max":[0.4346805810928345,0.2542424201965332,1.0110937356948853],"type":"VEC3","name":"x3_Landing_Gear_09_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":120756,"componentType":5120,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":120760,"componentType":5120,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":120764,"componentType":5122,"count":765,"type":"VEC2","name":"x3_Landing_Gear_09_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":120768,"componentType":5122,"count":765,"type":"VEC2","name":"x3_Landing_Gear_09_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":120772,"componentType":5123,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":14004,"componentType":5123,"count":1656,"type":"SCALAR","name":"x3_Landing_Gear_09_left_indices#0"},{"bufferView":4,"byteOffset":148284,"componentType":5126,"count":138,"min":[4.745774269104004,-4.135944843292236,-0.07562390714883804],"max":[5.362856864929199,-2.238924264907837,0.5285301208496094],"type":"VEC3","name":"x3_Landing_Gear_10_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":148296,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":148300,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":148304,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Landing_Gear_10_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":148308,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Landing_Gear_10_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":148312,"componentType":5123,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17316,"componentType":5123,"count":330,"type":"SCALAR","name":"x3_Landing_Gear_10_left_indices#0"},{"bufferView":4,"byteOffset":153252,"componentType":5126,"count":326,"min":[-0.33166223764419556,-2.8012187480926514,-0.1834215670824051],"max":[0.3085395097732544,0.11308292299509048,1.4801949262619019],"type":"VEC3","name":"x3_Landing_gear_Root_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":153264,"componentType":5120,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":153268,"componentType":5120,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":153272,"componentType":5122,"count":326,"type":"VEC2","name":"x3_Landing_gear_Root_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":153276,"componentType":5122,"count":326,"type":"VEC2","name":"x3_Landing_gear_Root_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":153280,"componentType":5123,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17976,"componentType":5123,"count":774,"type":"SCALAR","name":"x3_Landing_gear_Root_left_indices#0"},{"bufferView":4,"byteOffset":164988,"componentType":5126,"count":36,"min":[-0.7532697916030884,-0.059459567070007324,-0.3278627395629883],"max":[0.07904601097106934,0.6829325556755066,0.12481577694416046],"type":"VEC3","name":"x3_Landing_Gear_16_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":165000,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":165004,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":165008,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_16_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":165012,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_16_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":165016,"componentType":5123,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19524,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_16_left_indices#0"},{"bufferView":4,"byteOffset":166284,"componentType":5126,"count":10,"min":[0.06097686290740967,-0.8854029774665833,-0.5860790014266968],"max":[0.6322737336158752,-0.05754295364022255,0.535726010799408],"type":"VEC3","name":"x3_Door02_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":166296,"componentType":5120,"count":10,"type":"VEC4","name":"x3_Door02_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":166300,"componentType":5120,"count":10,"type":"VEC4","name":"x3_Door02_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":166304,"componentType":5122,"count":10,"type":"VEC2","name":"x3_Door02_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":166308,"componentType":5122,"count":10,"type":"VEC2","name":"x3_Door02_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":166312,"componentType":5123,"count":10,"type":"VEC4","name":"x3_Door02_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19644,"componentType":5123,"count":18,"type":"SCALAR","name":"x3_Door02_left_indices#0"},{"bufferView":4,"byteOffset":166644,"componentType":5126,"count":28,"min":[0.01710420474410057,-0.9674975872039795,-0.7525056600570679],"max":[0.15367422997951508,-0.08536681532859802,0.33059951663017273],"type":"VEC3","name":"x3_Door03_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":166656,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Door03_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":166660,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Door03_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":166664,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Door03_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":166668,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Door03_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":166672,"componentType":5123,"count":28,"type":"VEC4","name":"x3_Door03_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19680,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Door03_left_indices#0"},{"bufferView":4,"byteOffset":167652,"componentType":5126,"count":59,"min":[0.21584224700927734,-2.5987346172332764,-0.8714854717254639],"max":[0.6099698543548584,-0.41588810086250305,1.7047114372253418],"type":"VEC3","name":"x3_Door04_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":167664,"componentType":5120,"count":59,"type":"VEC4","name":"x3_Door04_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":167668,"componentType":5120,"count":59,"type":"VEC4","name":"x3_Door04_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":167672,"componentType":5122,"count":59,"type":"VEC2","name":"x3_Door04_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":167676,"componentType":5122,"count":59,"type":"VEC2","name":"x3_Door04_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":167680,"componentType":5123,"count":59,"type":"VEC4","name":"x3_Door04_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19800,"componentType":5123,"count":138,"type":"SCALAR","name":"x3_Door04_left_indices#0"},{"bufferView":4,"byteOffset":169776,"componentType":5126,"count":765,"min":[-1.448843002319336,-1.4470993280410767,-1.304614782333374],"max":[1.4488394260406494,1.4505829811096191,0],"type":"VEC3","name":"x3_1_still_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":169788,"componentType":5120,"count":765,"type":"VEC4","name":"x3_1_still_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":169792,"componentType":5120,"count":765,"type":"VEC4","name":"x3_1_still_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":169796,"componentType":5122,"count":765,"type":"VEC2","name":"x3_1_still_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":169800,"componentType":5122,"count":765,"type":"VEC2","name":"x3_1_still_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":169804,"componentType":5123,"count":765,"type":"VEC4","name":"x3_1_still_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":20076,"componentType":5123,"count":1860,"type":"SCALAR","name":"x3_1_still_left_indices#0"},{"bufferView":4,"byteOffset":197316,"componentType":5126,"count":87,"min":[-1.4503744840621948,-1.4411083459854126,0.004562959540635347],"max":[1.4213157892227173,1.443753719329834,1.282714605331421],"type":"VEC3","name":"x3_1_slow_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":197328,"componentType":5120,"count":87,"type":"VEC4","name":"x3_1_slow_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":197332,"componentType":5120,"count":87,"type":"VEC4","name":"x3_1_slow_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":197336,"componentType":5122,"count":87,"type":"VEC2","name":"x3_1_slow_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":197340,"componentType":5122,"count":87,"type":"VEC2","name":"x3_1_slow_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":197344,"componentType":5123,"count":87,"type":"VEC4","name":"x3_1_slow_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":23796,"componentType":5123,"count":360,"type":"SCALAR","name":"x3_1_slow_left_indices#1"},{"bufferView":4,"byteOffset":200448,"componentType":5126,"count":87,"min":[-1.4504354000091553,-1.4424867630004883,-1.2827162742614746],"max":[1.4187357425689697,1.4424872398376465,-0.004564391449093819],"type":"VEC3","name":"x3_1_blurred_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":200460,"componentType":5120,"count":87,"type":"VEC4","name":"x3_1_blurred_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":200464,"componentType":5120,"count":87,"type":"VEC4","name":"x3_1_blurred_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":200468,"componentType":5122,"count":87,"type":"VEC2","name":"x3_1_blurred_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":200472,"componentType":5122,"count":87,"type":"VEC2","name":"x3_1_blurred_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":200476,"componentType":5123,"count":87,"type":"VEC4","name":"x3_1_blurred_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":24516,"componentType":5123,"count":360,"type":"SCALAR","name":"x3_1_blurred_left_indices#1"},{"bufferView":4,"byteOffset":203580,"componentType":5126,"count":465,"min":[-1.9435062408447266,-1.9257596731185913,-1.22777259349823],"max":[1.9441807270050049,1.9257575273513794,1.2277723550796509],"type":"VEC3","name":"x3_Engine_Duct_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":203592,"componentType":5120,"count":465,"type":"VEC4","name":"x3_Engine_Duct_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":203596,"componentType":5120,"count":465,"type":"VEC4","name":"x3_Engine_Duct_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":203600,"componentType":5122,"count":465,"type":"VEC2","name":"x3_Engine_Duct_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":203604,"componentType":5122,"count":465,"type":"VEC2","name":"x3_Engine_Duct_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":203608,"componentType":5123,"count":465,"type":"VEC4","name":"x3_Engine_Duct_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":25236,"componentType":5123,"count":1068,"type":"SCALAR","name":"x3_Engine_Duct_left_indices#0"},{"bufferView":4,"byteOffset":220320,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_LEFT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":220332,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":220336,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":220340,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":220344,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":220348,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":27372,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_LEFT_indices#0"},{"bufferView":4,"byteOffset":220464,"componentType":5126,"count":225,"min":[7.773784637451172,-3.588141918182373,-0.6566510200500488],"max":[11.83829116821289,0.628913164138794,4.233853340148926],"type":"VEC3","name":"FROST_ENGINEL001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":220476,"componentType":5120,"count":225,"type":"VEC4","name":"FROST_ENGINEL001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":220480,"componentType":5120,"count":225,"type":"VEC4","name":"FROST_ENGINEL001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":220484,"componentType":5122,"count":225,"type":"VEC2","name":"FROST_ENGINEL001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":220488,"componentType":5122,"count":225,"type":"VEC2","name":"FROST_ENGINEL001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":220492,"componentType":5123,"count":225,"type":"VEC4","name":"FROST_ENGINEL001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":27384,"componentType":5123,"count":480,"type":"SCALAR","name":"FROST_ENGINEL001_indices#0"},{"bufferView":4,"byteOffset":228564,"componentType":5126,"count":8,"min":[-2.0154333114624023,-0.27122175693511963,-0.4341895580291748],"max":[2.0154333114624023,0.2712216377258301,0.434190034866333],"type":"VEC3","name":"x3_Livery_KLM_EngA_vertices#0_POSITION"},{"bufferView":4,"byteOffset":228576,"componentType":5120,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngA_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":228580,"componentType":5120,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngA_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":228584,"componentType":5122,"count":8,"type":"VEC2","name":"x3_Livery_KLM_EngA_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":228588,"componentType":5122,"count":8,"type":"VEC2","name":"x3_Livery_KLM_EngA_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":228592,"componentType":5123,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngA_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":28344,"componentType":5123,"count":12,"type":"SCALAR","name":"x3_Livery_KLM_EngA_indices#0"},{"bufferView":4,"byteOffset":228852,"componentType":5126,"count":50,"min":[-0.2745403051376343,-0.26211661100387573,-1.894355297088623],"max":[2.1205391883850098,0.7965272068977356,1.6294667720794678],"type":"VEC3","name":"x3_Door01_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":228864,"componentType":5120,"count":50,"type":"VEC4","name":"x3_Door01_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":228868,"componentType":5120,"count":50,"type":"VEC4","name":"x3_Door01_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":228872,"componentType":5122,"count":50,"type":"VEC2","name":"x3_Door01_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":228876,"componentType":5122,"count":50,"type":"VEC2","name":"x3_Door01_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":228880,"componentType":5123,"count":50,"type":"VEC4","name":"x3_Door01_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":28368,"componentType":5123,"count":90,"type":"SCALAR","name":"x3_Door01_left_indices#0"},{"bufferView":4,"byteOffset":230652,"componentType":5126,"count":62,"min":[-0.049669791013002396,-0.09976045787334442,-0.0679607093334198],"max":[0.09498081356287003,0.08591406792402267,0.3146898150444031],"type":"VEC3","name":"x3_Landing_Gear_NosePart10_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":230664,"componentType":5120,"count":62,"type":"VEC4","name":"x3_Landing_Gear_NosePart10_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":230668,"componentType":5120,"count":62,"type":"VEC4","name":"x3_Landing_Gear_NosePart10_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":230672,"componentType":5122,"count":62,"type":"VEC2","name":"x3_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":230676,"componentType":5122,"count":62,"type":"VEC2","name":"x3_Landing_Gear_NosePart10_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":230680,"componentType":5123,"count":62,"type":"VEC4","name":"x3_Landing_Gear_NosePart10_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":28548,"componentType":5123,"count":132,"type":"SCALAR","name":"x3_Landing_Gear_NosePart10_center_indices#0"},{"bufferView":4,"byteOffset":232884,"componentType":5126,"count":64,"min":[-0.09188728034496307,-0.20168370008468628,-0.06795656681060791],"max":[0.05276350677013397,-0.01600933074951172,0.3146938681602478],"type":"VEC3","name":"x3_Landing_Gear_NosePart09_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":232896,"componentType":5120,"count":64,"type":"VEC4","name":"x3_Landing_Gear_NosePart09_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":232900,"componentType":5120,"count":64,"type":"VEC4","name":"x3_Landing_Gear_NosePart09_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":232904,"componentType":5122,"count":64,"type":"VEC2","name":"x3_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":232908,"componentType":5122,"count":64,"type":"VEC2","name":"x3_Landing_Gear_NosePart09_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":232912,"componentType":5123,"count":64,"type":"VEC4","name":"x3_Landing_Gear_NosePart09_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":28812,"componentType":5123,"count":132,"type":"SCALAR","name":"x3_Landing_Gear_NosePart09_center_indices#0"},{"bufferView":4,"byteOffset":235188,"componentType":5126,"count":548,"min":[-0.5393059253692627,-0.4840036630630493,-0.5141434073448181],"max":[0.539304792881012,0.48234760761260986,0.45221367478370667],"type":"VEC3","name":"x3_Wheel_Nose_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":235200,"componentType":5120,"count":548,"type":"VEC4","name":"x3_Wheel_Nose_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":235204,"componentType":5120,"count":548,"type":"VEC4","name":"x3_Wheel_Nose_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":235208,"componentType":5122,"count":548,"type":"VEC2","name":"x3_Wheel_Nose_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":235212,"componentType":5122,"count":548,"type":"VEC2","name":"x3_Wheel_Nose_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":235216,"componentType":5123,"count":548,"type":"VEC4","name":"x3_Wheel_Nose_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":29076,"componentType":5123,"count":960,"type":"SCALAR","name":"x3_Wheel_Nose_center_indices#0"},{"bufferView":4,"byteOffset":254916,"componentType":5126,"count":300,"min":[-0.5439202189445496,-0.4866790771484375,-0.4866744577884674],"max":[0.5439202189445496,0.4866764545440674,0.48668208718299866],"type":"VEC3","name":"x3_Wheel_Nose_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":254928,"componentType":5120,"count":300,"type":"VEC4","name":"x3_Wheel_Nose_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":254932,"componentType":5120,"count":300,"type":"VEC4","name":"x3_Wheel_Nose_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":254936,"componentType":5122,"count":300,"type":"VEC2","name":"x3_Wheel_Nose_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":254940,"componentType":5122,"count":300,"type":"VEC2","name":"x3_Wheel_Nose_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":254944,"componentType":5123,"count":300,"type":"VEC4","name":"x3_Wheel_Nose_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":30996,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_Wheel_Nose_blurred_indices#0"},{"bufferView":4,"byteOffset":265716,"componentType":5126,"count":178,"min":[-0.32607021927833557,-1.882482886314392,-0.2244565635919571],"max":[0.32540684938430786,-0.8391174674034119,0.3319075405597687],"type":"VEC3","name":"x3_Landing_Gear_NosePart13_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":265728,"componentType":5120,"count":178,"type":"VEC4","name":"x3_Landing_Gear_NosePart13_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":265732,"componentType":5120,"count":178,"type":"VEC4","name":"x3_Landing_Gear_NosePart13_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":265736,"componentType":5122,"count":178,"type":"VEC2","name":"x3_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":265740,"componentType":5122,"count":178,"type":"VEC2","name":"x3_Landing_Gear_NosePart13_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":265744,"componentType":5123,"count":178,"type":"VEC4","name":"x3_Landing_Gear_NosePart13_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":32148,"componentType":5123,"count":426,"type":"SCALAR","name":"x3_Landing_Gear_NosePart13_center_indices#0"},{"bufferView":4,"byteOffset":272124,"componentType":5126,"count":78,"min":[-0.04488702863454819,-0.055755794048309326,-0.08164215087890625],"max":[0.05085218325257301,0.7302201986312866,0.47156333923339844],"type":"VEC3","name":"x3_Landing_Gear_NosePart07_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":272136,"componentType":5120,"count":78,"type":"VEC4","name":"x3_Landing_Gear_NosePart07_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":272140,"componentType":5120,"count":78,"type":"VEC4","name":"x3_Landing_Gear_NosePart07_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":272144,"componentType":5122,"count":78,"type":"VEC2","name":"x3_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":272148,"componentType":5122,"count":78,"type":"VEC2","name":"x3_Landing_Gear_NosePart07_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":272152,"componentType":5123,"count":78,"type":"VEC4","name":"x3_Landing_Gear_NosePart07_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":33000,"componentType":5123,"count":228,"type":"SCALAR","name":"x3_Landing_Gear_NosePart07_center_indices#0"},{"bufferView":4,"byteOffset":274932,"componentType":5126,"count":384,"min":[-0.36159074306488037,-0.38352787494659424,0.09259713441133499],"max":[0.36433959007263184,-0.13732154667377472,0.12965838611125946],"type":"VEC3","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":274944,"componentType":5120,"count":384,"type":"VEC4","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":274948,"componentType":5120,"count":384,"type":"VEC4","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":274952,"componentType":5122,"count":384,"type":"VEC2","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":274956,"componentType":5122,"count":384,"type":"VEC2","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":274960,"componentType":5123,"count":384,"type":"VEC4","name":"x3_Landing_Gear_NosePart_lightpod_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":33456,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_Landing_Gear_NosePart_lightpod_center_indices#0"},{"bufferView":4,"byteOffset":288756,"componentType":5126,"count":36,"min":[-0.36288225650787354,1.0389200448989868,0.03543475270271301],"max":[0.36280402541160583,1.2851260900497437,0.045526981353759766],"type":"VEC3","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":288768,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":288772,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":288776,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":288780,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":288784,"componentType":5123,"count":36,"type":"VEC4","name":"x3_Landing_Gear_NosePart_glass_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":34608,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_Landing_Gear_NosePart_glass_center_indices#0"},{"bufferView":4,"byteOffset":290052,"componentType":5126,"count":966,"min":[-0.6842957139015198,-1.2313508987426758,-0.34244734048843384],"max":[0.6873666644096375,0.0804537907242775,0.4118485152721405],"type":"VEC3","name":"x3_Landing_Gear_NosePart16_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":290064,"componentType":5120,"count":966,"type":"VEC4","name":"x3_Landing_Gear_NosePart16_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":290068,"componentType":5120,"count":966,"type":"VEC4","name":"x3_Landing_Gear_NosePart16_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":290072,"componentType":5122,"count":966,"type":"VEC2","name":"x3_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":290076,"componentType":5122,"count":966,"type":"VEC2","name":"x3_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":290080,"componentType":5123,"count":966,"type":"VEC4","name":"x3_Landing_Gear_NosePart16_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":34800,"componentType":5123,"count":1881,"type":"SCALAR","name":"x3_Landing_Gear_NosePart16_center_indices#0"},{"bufferView":4,"byteOffset":324828,"componentType":5126,"count":3,"min":[0.005114555358886719,0.0018151402473449707,0.07024471461772919],"max":[0.01271173357963562,0.01633089780807495,0.07051077485084534],"type":"VEC3","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":324840,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":324844,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":324848,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":324852,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":324856,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38562,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_LandingNose_Left_indices#0"},{"bufferView":4,"byteOffset":324936,"componentType":5126,"count":3,"min":[-0.009423524141311646,0.0011743605136871338,0.07099391520023346],"max":[-0.0018263459205627441,0.015690118074417114,0.07125997543334961],"type":"VEC3","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":324948,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":324952,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":324956,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":324960,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":324964,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38568,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_LandingNose_Right_indices#0"},{"bufferView":4,"byteOffset":325044,"componentType":5126,"count":3,"min":[-0.0004626661539077759,-0.00022479891777038574,0.07268691062927246],"max":[0.008807972073554993,0.014089375734329224,0.07294926047325134],"type":"VEC3","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":325056,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":325060,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":325064,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":325068,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":325072,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38574,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Taxi_Left_indices#0"},{"bufferView":4,"byteOffset":325152,"componentType":5126,"count":3,"min":[-0.006385669112205505,-0.0010486841201782227,0.07343602925539017],"max":[0.002884969115257263,0.013265490531921387,0.07369838654994965],"type":"VEC3","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":325164,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":325168,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":325172,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":325176,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":325180,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38580,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Taxi_Right_indices#0"},{"bufferView":4,"byteOffset":325260,"componentType":5126,"count":38,"min":[-9.347382545471191,1.3028274774551392,-39.56478500366211],"max":[-0.7656378746032715,2.4664862155914307,-34.850765228271484],"type":"VEC3","name":"x3_Elevator_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":325272,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Elevator_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":325276,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Elevator_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":325280,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Elevator_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":325284,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Elevator_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":325288,"componentType":5123,"count":38,"type":"VEC4","name":"x3_Elevator_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38586,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Elevator_right_indices#0"},{"bufferView":4,"byteOffset":326628,"componentType":5126,"count":200,"min":[-9.855287551879883,0.982743501663208,-38.744876861572266],"max":[-1.6828149557113647,2.5371522903442383,-30.5740966796875],"type":"VEC3","name":"FROST_ELEVATORR001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":326640,"componentType":5120,"count":200,"type":"VEC4","name":"FROST_ELEVATORR001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":326644,"componentType":5120,"count":200,"type":"VEC4","name":"FROST_ELEVATORR001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":326648,"componentType":5122,"count":200,"type":"VEC2","name":"FROST_ELEVATORR001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":326652,"componentType":5122,"count":200,"type":"VEC2","name":"FROST_ELEVATORR001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":326656,"componentType":5123,"count":200,"type":"VEC4","name":"FROST_ELEVATORR001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38706,"componentType":5123,"count":300,"type":"SCALAR","name":"FROST_ELEVATORR001_indices#0"},{"bufferView":4,"byteOffset":333828,"componentType":5126,"count":148,"min":[-9.83304500579834,0.4933221638202667,-39.729732513427734],"max":[-1.1060717105865479,2.4954967498779297,-30.271469116210938],"type":"VEC3","name":"x3_Trim_Elevator_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":333840,"componentType":5120,"count":148,"type":"VEC4","name":"x3_Trim_Elevator_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":333844,"componentType":5120,"count":148,"type":"VEC4","name":"x3_Trim_Elevator_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":333848,"componentType":5122,"count":148,"type":"VEC2","name":"x3_Trim_Elevator_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":333852,"componentType":5122,"count":148,"type":"VEC2","name":"x3_Trim_Elevator_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":333856,"componentType":5123,"count":148,"type":"VEC4","name":"x3_Trim_Elevator_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":39306,"componentType":5123,"count":378,"type":"SCALAR","name":"x3_Trim_Elevator_right_indices#0"},{"bufferView":4,"byteOffset":339156,"componentType":5126,"count":3,"min":[-0.030492784455418587,-0.009933382272720337,-0.027533169835805893],"max":[-0.0007920266361907125,-0.0038215811364352703,-0.00086545932572335],"type":"VEC3","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":339168,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":339172,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":339176,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":339180,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":339184,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":40062,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Logo_Right_indices#0"},{"bufferView":4,"byteOffset":339264,"componentType":5126,"count":83,"min":[-0.20007038116455078,-0.8237499594688416,-0.9833717346191406],"max":[0.20007109642028809,0.8237496614456177,0.9833793640136719],"type":"VEC3","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_POSITION"},{"bufferView":4,"byteOffset":339276,"componentType":5120,"count":83,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":339280,"componentType":5120,"count":83,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":339284,"componentType":5122,"count":83,"type":"VEC2","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":339288,"componentType":5122,"count":83,"type":"VEC2","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":339292,"componentType":5123,"count":83,"type":"VEC4","name":"x3_Livery_KLM_ElevatorTrimR_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":40068,"componentType":5123,"count":228,"type":"SCALAR","name":"x3_Livery_KLM_ElevatorTrimR_indices#0"},{"bufferView":4,"byteOffset":342252,"componentType":5126,"count":10,"min":[-0.6322744488716125,-0.8853996396064758,-0.5860819816589355],"max":[-0.060977354645729065,-0.05754287168383598,0.5357276797294617],"type":"VEC3","name":"x3_Door02_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":342264,"componentType":5120,"count":10,"type":"VEC4","name":"x3_Door02_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":342268,"componentType":5120,"count":10,"type":"VEC4","name":"x3_Door02_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":342272,"componentType":5122,"count":10,"type":"VEC2","name":"x3_Door02_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":342276,"componentType":5122,"count":10,"type":"VEC2","name":"x3_Door02_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":342280,"componentType":5123,"count":10,"type":"VEC4","name":"x3_Door02_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":40524,"componentType":5123,"count":18,"type":"SCALAR","name":"x3_Door02_right_indices#0"},{"bufferView":4,"byteOffset":342612,"componentType":5126,"count":28,"min":[-0.15367619693279266,-0.967495858669281,-0.7525060772895813],"max":[-0.017104292288422585,-0.08536640554666519,0.33059895038604736],"type":"VEC3","name":"x3_Door03_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":342624,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Door03_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":342628,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Door03_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":342632,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Door03_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":342636,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Door03_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":342640,"componentType":5123,"count":28,"type":"VEC4","name":"x3_Door03_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":40560,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Door03_right_indices#0"},{"bufferView":4,"byteOffset":343620,"componentType":5126,"count":465,"min":[-1.943507194519043,-1.9257582426071167,-1.2277727127075195],"max":[1.9441816806793213,1.9257560968399048,1.2277724742889404],"type":"VEC3","name":"x3_Engine_Duct_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":343632,"componentType":5120,"count":465,"type":"VEC4","name":"x3_Engine_Duct_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":343636,"componentType":5120,"count":465,"type":"VEC4","name":"x3_Engine_Duct_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":343640,"componentType":5122,"count":465,"type":"VEC2","name":"x3_Engine_Duct_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":343644,"componentType":5122,"count":465,"type":"VEC2","name":"x3_Engine_Duct_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":343648,"componentType":5123,"count":465,"type":"VEC4","name":"x3_Engine_Duct_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":40680,"componentType":5123,"count":1068,"type":"SCALAR","name":"x3_Engine_Duct_right_indices#0"},{"bufferView":4,"byteOffset":360360,"componentType":5126,"count":86,"min":[-1.4504361152648926,-1.4424867630004883,-1.2827130556106567],"max":[1.4187363386154175,1.4424872398376465,-0.004360597115010023],"type":"VEC3","name":"x3_2_blurred_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":360372,"componentType":5120,"count":86,"type":"VEC4","name":"x3_2_blurred_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":360376,"componentType":5120,"count":86,"type":"VEC4","name":"x3_2_blurred_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":360380,"componentType":5122,"count":86,"type":"VEC2","name":"x3_2_blurred_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":360384,"componentType":5122,"count":86,"type":"VEC2","name":"x3_2_blurred_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":360388,"componentType":5123,"count":86,"type":"VEC4","name":"x3_2_blurred_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":42816,"componentType":5123,"count":360,"type":"SCALAR","name":"x3_2_blurred_right_indices#1"},{"bufferView":4,"byteOffset":363456,"componentType":5126,"count":86,"min":[-1.4503744840621948,-1.4411083459854126,0.0043591661378741264],"max":[1.4213157892227173,1.443753719329834,1.2827115058898926],"type":"VEC3","name":"x3_2_slow_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":363468,"componentType":5120,"count":86,"type":"VEC4","name":"x3_2_slow_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":363472,"componentType":5120,"count":86,"type":"VEC4","name":"x3_2_slow_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":363476,"componentType":5122,"count":86,"type":"VEC2","name":"x3_2_slow_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":363480,"componentType":5122,"count":86,"type":"VEC2","name":"x3_2_slow_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":363484,"componentType":5123,"count":86,"type":"VEC4","name":"x3_2_slow_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":43536,"componentType":5123,"count":360,"type":"SCALAR","name":"x3_2_slow_right_indices#1"},{"bufferView":4,"byteOffset":366552,"componentType":5126,"count":765,"min":[-1.4488445520401,-1.447099208831787,-1.3046133518218994],"max":[1.4488409757614136,1.4505828619003296,0],"type":"VEC3","name":"x3_2_still_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":366564,"componentType":5120,"count":765,"type":"VEC4","name":"x3_2_still_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":366568,"componentType":5120,"count":765,"type":"VEC4","name":"x3_2_still_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":366572,"componentType":5122,"count":765,"type":"VEC2","name":"x3_2_still_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":366576,"componentType":5122,"count":765,"type":"VEC2","name":"x3_2_still_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":366580,"componentType":5123,"count":765,"type":"VEC4","name":"x3_2_still_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":44256,"componentType":5123,"count":1860,"type":"SCALAR","name":"x3_2_still_right_indices#0"},{"bufferView":4,"byteOffset":394092,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_RIGHT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":394104,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":394108,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":394112,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":394116,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":394120,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":47976,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_RIGHT_indices#0"},{"bufferView":4,"byteOffset":394236,"componentType":5126,"count":225,"min":[-11.838289260864258,-3.5881409645080566,-0.6566500663757324],"max":[-7.773782253265381,0.6289138793945312,4.233853340148926],"type":"VEC3","name":"FROST_ENGINER001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":394248,"componentType":5120,"count":225,"type":"VEC4","name":"FROST_ENGINER001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":394252,"componentType":5120,"count":225,"type":"VEC4","name":"FROST_ENGINER001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":394256,"componentType":5122,"count":225,"type":"VEC2","name":"FROST_ENGINER001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":394260,"componentType":5122,"count":225,"type":"VEC2","name":"FROST_ENGINER001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":394264,"componentType":5123,"count":225,"type":"VEC4","name":"FROST_ENGINER001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":47988,"componentType":5123,"count":480,"type":"SCALAR","name":"FROST_ENGINER001_indices#0"},{"bufferView":4,"byteOffset":402336,"componentType":5126,"count":8,"min":[-2.015434741973877,-0.27122175693511963,-0.4341893196105957],"max":[2.0154314041137695,0.2712215185165405,0.434190034866333],"type":"VEC3","name":"x3_Livery_KLM_EngB_vertices#0_POSITION"},{"bufferView":4,"byteOffset":402348,"componentType":5120,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngB_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":402352,"componentType":5120,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngB_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":402356,"componentType":5122,"count":8,"type":"VEC2","name":"x3_Livery_KLM_EngB_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":402360,"componentType":5122,"count":8,"type":"VEC2","name":"x3_Livery_KLM_EngB_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":402364,"componentType":5123,"count":8,"type":"VEC4","name":"x3_Livery_KLM_EngB_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":48948,"componentType":5123,"count":12,"type":"SCALAR","name":"x3_Livery_KLM_EngB_indices#0"},{"bufferView":4,"byteOffset":402624,"componentType":5126,"count":16,"min":[-8.716888427734375,-0.452919602394104,-0.7563257217407227],"max":[-3.323636531829834,0.8474729061126709,3.107743263244629],"type":"VEC3","name":"FROST_KRUEGERR003_vertices#0_POSITION"},{"bufferView":4,"byteOffset":402636,"componentType":5120,"count":16,"type":"VEC4","name":"FROST_KRUEGERR003_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":402640,"componentType":5120,"count":16,"type":"VEC4","name":"FROST_KRUEGERR003_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":402644,"componentType":5122,"count":16,"type":"VEC2","name":"FROST_KRUEGERR003_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":402648,"componentType":5122,"count":16,"type":"VEC2","name":"FROST_KRUEGERR003_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":402652,"componentType":5123,"count":16,"type":"VEC4","name":"FROST_KRUEGERR003_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":48972,"componentType":5123,"count":24,"type":"SCALAR","name":"FROST_KRUEGERR003_indices#0"},{"bufferView":4,"byteOffset":403200,"componentType":5126,"count":89,"min":[-3.0429697036743164,-0.37209126353263855,-1.425876259803772],"max":[2.3551323413848877,0.8763584494590759,2.4357666969299316],"type":"VEC3","name":"x3_FlapsKrueger_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":403212,"componentType":5120,"count":89,"type":"VEC4","name":"x3_FlapsKrueger_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":403216,"componentType":5120,"count":89,"type":"VEC4","name":"x3_FlapsKrueger_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":403220,"componentType":5122,"count":89,"type":"VEC2","name":"x3_FlapsKrueger_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":403224,"componentType":5122,"count":89,"type":"VEC2","name":"x3_FlapsKrueger_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":403228,"componentType":5123,"count":89,"type":"VEC4","name":"x3_FlapsKrueger_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":49020,"componentType":5123,"count":204,"type":"SCALAR","name":"x3_FlapsKrueger_1_right_indices#0"},{"bufferView":4,"byteOffset":406404,"componentType":5126,"count":150,"min":[-3.971318244934082,-0.3322523236274719,-2.4729957580566406],"max":[3.4751830101013184,1.31447172164917,0.13161027431488037],"type":"VEC3","name":"x3_Flaps_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":406416,"componentType":5120,"count":150,"type":"VEC4","name":"x3_Flaps_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":406420,"componentType":5120,"count":150,"type":"VEC4","name":"x3_Flaps_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":406424,"componentType":5122,"count":150,"type":"VEC2","name":"x3_Flaps_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":406428,"componentType":5122,"count":150,"type":"VEC2","name":"x3_Flaps_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":406432,"componentType":5123,"count":150,"type":"VEC4","name":"x3_Flaps_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":49428,"componentType":5123,"count":246,"type":"SCALAR","name":"x3_Flaps_1_right_indices#0"},{"bufferView":4,"byteOffset":411804,"componentType":5126,"count":36,"min":[-0.07904615998268127,-0.6829320788383484,-0.12481560558080673],"max":[0.753271222114563,0.05945952609181404,0.32786229252815247],"type":"VEC3","name":"x3_Landing_Gear_16_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":411816,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":411820,"componentType":5120,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":411824,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_16_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":411828,"componentType":5122,"count":36,"type":"VEC2","name":"x3_Landing_Gear_16_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":411832,"componentType":5123,"count":36,"type":"VEC4","name":"x3_Landing_Gear_16_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":49920,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_16_right_indices#0"},{"bufferView":4,"byteOffset":413100,"componentType":5126,"count":143,"min":[-0.5998412370681763,-0.09761866927146912,-1.594496250152588],"max":[1.2254441976547241,0.6203984022140503,0.25260159373283386],"type":"VEC3","name":"x3_Flaps_1_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":413112,"componentType":5120,"count":143,"type":"VEC4","name":"x3_Flaps_1_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":413116,"componentType":5120,"count":143,"type":"VEC4","name":"x3_Flaps_1_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":413120,"componentType":5122,"count":143,"type":"VEC2","name":"x3_Flaps_1_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":413124,"componentType":5122,"count":143,"type":"VEC2","name":"x3_Flaps_1_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":413128,"componentType":5123,"count":143,"type":"VEC4","name":"x3_Flaps_1_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":50040,"componentType":5123,"count":270,"type":"SCALAR","name":"x3_Flaps_1_1_right_indices#0"},{"bufferView":4,"byteOffset":418248,"componentType":5126,"count":3,"min":[-0.0122833251953125,0.010597944259643555,0.0026445388793945312],"max":[-0.01038360595703125,0.013393640518188477,0.004874229431152344],"type":"VEC3","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION"},{"bufferView":4,"byteOffset":418260,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":418264,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":418268,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":418272,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":418276,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":50580,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_NavigationGreen_indices#0"},{"bufferView":4,"byteOffset":418356,"componentType":5126,"count":4,"min":[0.0034999847412109375,0.02491593360900879,-0.013380050659179688],"max":[0.019163131713867188,0.051308393478393555,-0.009847640991210938],"type":"VEC3","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":418368,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":418372,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":418376,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":418380,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":418384,"componentType":5123,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":50586,"componentType":5123,"count":6,"type":"SCALAR","name":"x3_LIGHT_ASOBO_NavigationWing_Right_indices#0"},{"bufferView":4,"byteOffset":418500,"componentType":5126,"count":3,"min":[-0.05275726318359375,0.010921001434326172,0.0037736892700195312],"max":[-0.051776885986328125,0.01444101333618164,0.007266044616699219],"type":"VEC3","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":418512,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":418516,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":418520,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":418524,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":418528,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":50598,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_StrobeWing_Right_indices#0"},{"bufferView":4,"byteOffset":418608,"componentType":5126,"count":138,"min":[-1.0416648387908936,-0.2551587224006653,-1.02711021900177],"max":[1.0387980937957764,0.14307525753974915,0.3660537600517273],"type":"VEC3","name":"x3_Spoiler_2_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":418620,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Spoiler_2_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":418624,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Spoiler_2_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":418628,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Spoiler_2_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":418632,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Spoiler_2_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":418636,"componentType":5123,"count":138,"type":"VEC4","name":"x3_Spoiler_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":50604,"componentType":5123,"count":462,"type":"SCALAR","name":"x3_Spoiler_2_right_indices#0"},{"bufferView":4,"byteOffset":423576,"componentType":5126,"count":47,"min":[-0.6099686622619629,-2.5987343788146973,-0.8714852333068848],"max":[-0.21584230661392212,-0.41588783264160156,1.704709768295288],"type":"VEC3","name":"x3_Door04_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":423588,"componentType":5120,"count":47,"type":"VEC4","name":"x3_Door04_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":423592,"componentType":5120,"count":47,"type":"VEC4","name":"x3_Door04_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":423596,"componentType":5122,"count":47,"type":"VEC2","name":"x3_Door04_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":423600,"componentType":5122,"count":47,"type":"VEC2","name":"x3_Door04_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":423604,"componentType":5123,"count":47,"type":"VEC4","name":"x3_Door04_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":51528,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_Door04_right_indices#0"},{"bufferView":4,"byteOffset":425268,"componentType":5126,"count":84,"min":[-0.26211535930633545,-0.08912298083305359,-0.0890941470861435],"max":[0.2603246867656708,0.28424832224845886,0.5570254325866699],"type":"VEC3","name":"x3_Landing_Gear_07_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":425280,"componentType":5120,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":425284,"componentType":5120,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":425288,"componentType":5122,"count":84,"type":"VEC2","name":"x3_Landing_Gear_07_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":425292,"componentType":5122,"count":84,"type":"VEC2","name":"x3_Landing_Gear_07_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":425296,"componentType":5123,"count":84,"type":"VEC4","name":"x3_Landing_Gear_07_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":51720,"componentType":5123,"count":216,"type":"SCALAR","name":"x3_Landing_Gear_07_right_indices#0"},{"bufferView":4,"byteOffset":428292,"componentType":5126,"count":124,"min":[-0.3298172056674957,-0.05878119170665741,-0.5867292881011963],"max":[0.1926245391368866,0.3123645484447479,0.05880843475461006],"type":"VEC3","name":"x3_Landing_Gear_08_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":428304,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":428308,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":428312,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Landing_Gear_08_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":428316,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Landing_Gear_08_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":428320,"componentType":5123,"count":124,"type":"VEC4","name":"x3_Landing_Gear_08_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":52152,"componentType":5123,"count":300,"type":"SCALAR","name":"x3_Landing_Gear_08_right_indices#0"},{"bufferView":4,"byteOffset":432756,"componentType":5126,"count":136,"min":[-0.22794313728809357,-0.052349481731653214,-0.05308520793914795],"max":[0.2292630523443222,0.10058528184890747,0.7593170404434204],"type":"VEC3","name":"x3_Landing_Gear_35_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":432768,"componentType":5120,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":432772,"componentType":5120,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":432776,"componentType":5122,"count":136,"type":"VEC2","name":"x3_Landing_Gear_35_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":432780,"componentType":5122,"count":136,"type":"VEC2","name":"x3_Landing_Gear_35_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":432784,"componentType":5123,"count":136,"type":"VEC4","name":"x3_Landing_Gear_35_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":52752,"componentType":5123,"count":288,"type":"SCALAR","name":"x3_Landing_Gear_35_right_indices#0"},{"bufferView":4,"byteOffset":437652,"componentType":5126,"count":132,"min":[-0.22165074944496155,-0.052508436143398285,-0.7016505599021912],"max":[0.2355768084526062,0.10106650739908218,0.05199776589870453],"type":"VEC3","name":"x3_Landing_Gear_36_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":437664,"componentType":5120,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":437668,"componentType":5120,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":437672,"componentType":5122,"count":132,"type":"VEC2","name":"x3_Landing_Gear_36_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":437676,"componentType":5122,"count":132,"type":"VEC2","name":"x3_Landing_Gear_36_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":437680,"componentType":5123,"count":132,"type":"VEC4","name":"x3_Landing_Gear_36_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":53328,"componentType":5123,"count":288,"type":"SCALAR","name":"x3_Landing_Gear_36_right_indices#0"},{"bufferView":4,"byteOffset":442404,"componentType":5126,"count":322,"min":[-0.9675708413124084,-0.6219156980514526,-0.6219280958175659],"max":[0.9675543308258057,0.6218847036361694,0.6219955086708069],"type":"VEC3","name":"x3_RWheel_01_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":442416,"componentType":5120,"count":322,"type":"VEC4","name":"x3_RWheel_01_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":442420,"componentType":5120,"count":322,"type":"VEC4","name":"x3_RWheel_01_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":442424,"componentType":5122,"count":322,"type":"VEC2","name":"x3_RWheel_01_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":442428,"componentType":5122,"count":322,"type":"VEC2","name":"x3_RWheel_01_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":442432,"componentType":5123,"count":322,"type":"VEC4","name":"x3_RWheel_01_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":53904,"componentType":5123,"count":708,"type":"SCALAR","name":"x3_RWheel_01_still_indices#0"},{"bufferView":4,"byteOffset":453996,"componentType":5126,"count":300,"min":[-0.9603776335716248,-0.6283622980117798,-0.6271824240684509],"max":[0.9603725671768188,0.626052975654602,0.6272202134132385],"type":"VEC3","name":"x3_RWheel_01_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":454008,"componentType":5120,"count":300,"type":"VEC4","name":"x3_RWheel_01_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":454012,"componentType":5120,"count":300,"type":"VEC4","name":"x3_RWheel_01_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":454016,"componentType":5122,"count":300,"type":"VEC2","name":"x3_RWheel_01_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":454020,"componentType":5122,"count":300,"type":"VEC2","name":"x3_RWheel_01_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":454024,"componentType":5123,"count":300,"type":"VEC4","name":"x3_RWheel_01_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":55320,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_RWheel_01_blurred_indices#0"},{"bufferView":4,"byteOffset":464796,"componentType":5126,"count":322,"min":[-0.9675037264823914,-0.6232092976570129,-0.621836245059967],"max":[0.9674216508865356,0.6207380294799805,0.6220351457595825],"type":"VEC3","name":"x3_RWheel_02_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":464808,"componentType":5120,"count":322,"type":"VEC4","name":"x3_RWheel_02_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":464812,"componentType":5120,"count":322,"type":"VEC4","name":"x3_RWheel_02_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":464816,"componentType":5122,"count":322,"type":"VEC2","name":"x3_RWheel_02_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":464820,"componentType":5122,"count":322,"type":"VEC2","name":"x3_RWheel_02_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":464824,"componentType":5123,"count":322,"type":"VEC4","name":"x3_RWheel_02_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":56472,"componentType":5123,"count":708,"type":"SCALAR","name":"x3_RWheel_02_still_indices#0"},{"bufferView":4,"byteOffset":476388,"componentType":5126,"count":300,"min":[-0.96048903465271,-0.6260079145431519,-0.6271998882293701],"max":[0.9604715704917908,0.6283093094825745,0.6271669864654541],"type":"VEC3","name":"x3_RWheel_02_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":476400,"componentType":5120,"count":300,"type":"VEC4","name":"x3_RWheel_02_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":476404,"componentType":5120,"count":300,"type":"VEC4","name":"x3_RWheel_02_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":476408,"componentType":5122,"count":300,"type":"VEC2","name":"x3_RWheel_02_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":476412,"componentType":5122,"count":300,"type":"VEC2","name":"x3_RWheel_02_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":476416,"componentType":5123,"count":300,"type":"VEC4","name":"x3_RWheel_02_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":57888,"componentType":5123,"count":576,"type":"SCALAR","name":"x3_RWheel_02_blurred_indices#0"},{"bufferView":4,"byteOffset":487188,"componentType":5126,"count":765,"min":[-0.43468108773231506,-0.25424256920814514,-1.011093020439148],"max":[0.4377427399158478,0.3427109122276306,1.0736430883407593],"type":"VEC3","name":"x3_Landing_Gear_09_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":487200,"componentType":5120,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":487204,"componentType":5120,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":487208,"componentType":5122,"count":765,"type":"VEC2","name":"x3_Landing_Gear_09_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":487212,"componentType":5122,"count":765,"type":"VEC2","name":"x3_Landing_Gear_09_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":487216,"componentType":5123,"count":765,"type":"VEC4","name":"x3_Landing_Gear_09_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":59040,"componentType":5123,"count":1656,"type":"SCALAR","name":"x3_Landing_Gear_09_right_indices#0"},{"bufferView":4,"byteOffset":514728,"componentType":5126,"count":138,"min":[-5.362834930419922,2.2389307022094727,-0.5285307765007019],"max":[-4.745755195617676,4.135956764221191,0.0756240040063858],"type":"VEC3","name":"x3_Landing_Gear_10_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":514740,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":514744,"componentType":5120,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":514748,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Landing_Gear_10_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":514752,"componentType":5122,"count":138,"type":"VEC2","name":"x3_Landing_Gear_10_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":514756,"componentType":5123,"count":138,"type":"VEC4","name":"x3_Landing_Gear_10_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":62352,"componentType":5123,"count":330,"type":"SCALAR","name":"x3_Landing_Gear_10_right_indices#0"},{"bufferView":4,"byteOffset":519696,"componentType":5126,"count":38,"min":[-0.04763829708099365,-0.03742067888379097,-0.0658683031797409],"max":[0.5249754786491394,0.0698750838637352,0.23300060629844666],"type":"VEC3","name":"x3_Landing_Gear_21_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":519708,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":519712,"componentType":5120,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":519716,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Landing_Gear_21_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":519720,"componentType":5122,"count":38,"type":"VEC2","name":"x3_Landing_Gear_21_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":519724,"componentType":5123,"count":38,"type":"VEC4","name":"x3_Landing_Gear_21_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":63012,"componentType":5123,"count":72,"type":"SCALAR","name":"x3_Landing_Gear_21_right_indices#0"},{"bufferView":4,"byteOffset":521064,"componentType":5126,"count":106,"min":[-0.037204571068286896,-0.09789526462554932,-0.06632204353809357],"max":[0.04170340299606323,0.0027952000964432955,0.06835345178842545],"type":"VEC3","name":"x3_Landing_Gear_Part17_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":521076,"componentType":5120,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":521080,"componentType":5120,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":521084,"componentType":5122,"count":106,"type":"VEC2","name":"x3_Landing_Gear_Part17_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":521088,"componentType":5122,"count":106,"type":"VEC2","name":"x3_Landing_Gear_Part17_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":521092,"componentType":5123,"count":106,"type":"VEC4","name":"x3_Landing_Gear_Part17_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":63156,"componentType":5123,"count":276,"type":"SCALAR","name":"x3_Landing_Gear_Part17_right_indices#0"},{"bufferView":4,"byteOffset":524880,"componentType":5126,"count":28,"min":[-0.06948040425777435,-0.060683686286211014,-0.04596276581287384],"max":[0.4450564980506897,0.07203474640846252,0.18740791082382202],"type":"VEC3","name":"x3_Landing_Gear_17_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":524892,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":524896,"componentType":5120,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":524900,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Landing_Gear_17_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":524904,"componentType":5122,"count":28,"type":"VEC2","name":"x3_Landing_Gear_17_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":524908,"componentType":5123,"count":28,"type":"VEC4","name":"x3_Landing_Gear_17_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":63708,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Landing_Gear_17_right_indices#0"},{"bufferView":4,"byteOffset":525888,"componentType":5126,"count":24,"min":[-0.06933871656656265,-0.6507024168968201,-0.08763211220502853],"max":[0.7085369825363159,0.05271798372268677,0.31277307868003845],"type":"VEC3","name":"x3_Landing_Gear_31_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":525900,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":525904,"componentType":5120,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":525908,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Landing_Gear_31_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":525912,"componentType":5122,"count":24,"type":"VEC2","name":"x3_Landing_Gear_31_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":525916,"componentType":5123,"count":24,"type":"VEC4","name":"x3_Landing_Gear_31_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":63828,"componentType":5123,"count":36,"type":"SCALAR","name":"x3_Landing_Gear_31_right_indices#0"},{"bufferView":4,"byteOffset":526752,"componentType":5126,"count":67,"min":[-0.06947313249111176,-0.20492340624332428,-0.06629911065101624],"max":[0.1725696474313736,0.000004279869699530536,0.08807598054409027],"type":"VEC3","name":"x3_Landing_Gear_33_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":526764,"componentType":5120,"count":67,"type":"VEC4","name":"x3_Landing_Gear_33_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":526768,"componentType":5120,"count":67,"type":"VEC4","name":"x3_Landing_Gear_33_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":526772,"componentType":5122,"count":67,"type":"VEC2","name":"x3_Landing_Gear_33_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":526776,"componentType":5122,"count":67,"type":"VEC2","name":"x3_Landing_Gear_33_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":526780,"componentType":5123,"count":67,"type":"VEC4","name":"x3_Landing_Gear_33_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":63900,"componentType":5123,"count":180,"type":"SCALAR","name":"x3_Landing_Gear_33_right_indices#0"},{"bufferView":4,"byteOffset":529164,"componentType":5126,"count":26,"min":[-0.06877897679805756,-0.7848284244537354,-0.8842968940734863],"max":[0.8506442308425903,0.088812917470932,0.08856955915689468],"type":"VEC3","name":"x3_Landing_Gear_30_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":529176,"componentType":5120,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":529180,"componentType":5120,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":529184,"componentType":5122,"count":26,"type":"VEC2","name":"x3_Landing_Gear_30_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":529188,"componentType":5122,"count":26,"type":"VEC2","name":"x3_Landing_Gear_30_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":529192,"componentType":5123,"count":26,"type":"VEC4","name":"x3_Landing_Gear_30_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":64260,"componentType":5123,"count":42,"type":"SCALAR","name":"x3_Landing_Gear_30_right_indices#0"},{"bufferView":4,"byteOffset":530100,"componentType":5126,"count":44,"min":[-0.08840883523225784,-0.603611946105957,-0.7013182640075684],"max":[0.6459921598434448,0.0831293836236,0.09812010824680328],"type":"VEC3","name":"x3_Landing_Gear_32_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":530112,"componentType":5120,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":530116,"componentType":5120,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":530120,"componentType":5122,"count":44,"type":"VEC2","name":"x3_Landing_Gear_32_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":530124,"componentType":5122,"count":44,"type":"VEC2","name":"x3_Landing_Gear_32_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":530128,"componentType":5123,"count":44,"type":"VEC4","name":"x3_Landing_Gear_32_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":64344,"componentType":5123,"count":84,"type":"SCALAR","name":"x3_Landing_Gear_32_right_indices#0"},{"bufferView":4,"byteOffset":531684,"componentType":5126,"count":74,"min":[-0.07412227988243103,-0.17073450982570648,-0.1583220213651657],"max":[0.14805454015731812,0.036707326769828796,0.06973279267549515],"type":"VEC3","name":"x3_Landing_Gear_34_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":531696,"componentType":5120,"count":74,"type":"VEC4","name":"x3_Landing_Gear_34_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":531700,"componentType":5120,"count":74,"type":"VEC4","name":"x3_Landing_Gear_34_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":531704,"componentType":5122,"count":74,"type":"VEC2","name":"x3_Landing_Gear_34_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":531708,"componentType":5122,"count":74,"type":"VEC2","name":"x3_Landing_Gear_34_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":531712,"componentType":5123,"count":74,"type":"VEC4","name":"x3_Landing_Gear_34_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":64512,"componentType":5123,"count":204,"type":"SCALAR","name":"x3_Landing_Gear_34_right_indices#1"},{"bufferView":4,"byteOffset":534348,"componentType":5126,"count":326,"min":[-0.3085397183895111,-0.11308299750089645,-1.4801926612854004],"max":[0.33166247606277466,2.801220655441284,0.1834212988615036],"type":"VEC3","name":"x3_Landing_gear_Root_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":534360,"componentType":5120,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":534364,"componentType":5120,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":534368,"componentType":5122,"count":326,"type":"VEC2","name":"x3_Landing_gear_Root_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":534372,"componentType":5122,"count":326,"type":"VEC2","name":"x3_Landing_gear_Root_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":534376,"componentType":5123,"count":326,"type":"VEC4","name":"x3_Landing_gear_Root_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":64920,"componentType":5123,"count":774,"type":"SCALAR","name":"x3_Landing_gear_Root_right_indices#0"},{"bufferView":4,"byteOffset":546084,"componentType":5126,"count":52,"min":[-2.120542049407959,-0.26211634278297424,-1.8943557739257812],"max":[0.2745405435562134,0.7965261936187744,1.6294655799865723],"type":"VEC3","name":"x3_Door01_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":546096,"componentType":5120,"count":52,"type":"VEC4","name":"x3_Door01_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":546100,"componentType":5120,"count":52,"type":"VEC4","name":"x3_Door01_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":546104,"componentType":5122,"count":52,"type":"VEC2","name":"x3_Door01_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":546108,"componentType":5122,"count":52,"type":"VEC2","name":"x3_Door01_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":546112,"componentType":5123,"count":52,"type":"VEC4","name":"x3_Door01_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":66468,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_Door01_right_indices#0"},{"bufferView":4,"byteOffset":547956,"componentType":5126,"count":273,"min":[-0.7852555513381958,-0.30259478092193604,-0.3225712478160858],"max":[0.7852543592453003,1.7006288766860962,3.0263099670410156],"type":"VEC3","name":"x3_Undercarriage_Front_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":547968,"componentType":5120,"count":273,"type":"VEC4","name":"x3_Undercarriage_Front_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":547972,"componentType":5120,"count":273,"type":"VEC4","name":"x3_Undercarriage_Front_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":547976,"componentType":5122,"count":273,"type":"VEC2","name":"x3_Undercarriage_Front_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":547980,"componentType":5122,"count":273,"type":"VEC2","name":"x3_Undercarriage_Front_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":547984,"componentType":5123,"count":273,"type":"VEC4","name":"x3_Undercarriage_Front_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":66660,"componentType":5123,"count":393,"type":"SCALAR","name":"x3_Undercarriage_Front_center_indices#0"},{"bufferView":4,"byteOffset":557784,"componentType":5126,"count":814,"min":[-2.8455252647399902,1.092073917388916,-26.906558990478516],"max":[2.8519418239593506,1.8424654006958008,22.025039672851562],"type":"VEC3","name":"x3_windowGlass_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":557796,"componentType":5120,"count":814,"type":"VEC4","name":"x3_windowGlass_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":557800,"componentType":5120,"count":814,"type":"VEC4","name":"x3_windowGlass_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":557804,"componentType":5122,"count":814,"type":"VEC2","name":"x3_windowGlass_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":557808,"componentType":5122,"count":814,"type":"VEC2","name":"x3_windowGlass_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":557812,"componentType":5123,"count":814,"type":"VEC4","name":"x3_windowGlass_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":67446,"componentType":5123,"count":1626,"type":"SCALAR","name":"x3_windowGlass_center_indices#0"},{"bufferView":4,"byteOffset":587088,"componentType":5126,"count":5014,"min":[-3.252951145172119,-2.5151028633117676,-39.21535873413086],"max":[3.252951145172119,12.464640617370605,28.476634979248047],"type":"VEC3","name":"x3_Body_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":587100,"componentType":5120,"count":5014,"type":"VEC4","name":"x3_Body_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":587104,"componentType":5120,"count":5014,"type":"VEC4","name":"x3_Body_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":587108,"componentType":5122,"count":5014,"type":"VEC2","name":"x3_Body_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":587112,"componentType":5122,"count":5014,"type":"VEC2","name":"x3_Body_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":587116,"componentType":5123,"count":5014,"type":"VEC4","name":"x3_Body_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":70698,"componentType":5123,"count":12390,"type":"SCALAR","name":"x3_Body_center_indices#6"},{"bufferView":4,"byteOffset":767592,"componentType":5126,"count":1381,"min":[-3.216355562210083,-2.38889741897583,-37.5186882019043],"max":[3.216355562210083,12.302053451538086,28.516590118408203],"type":"VEC3","name":"FROST_FUSELAGE001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":767604,"componentType":5120,"count":1381,"type":"VEC4","name":"FROST_FUSELAGE001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":767608,"componentType":5120,"count":1381,"type":"VEC4","name":"FROST_FUSELAGE001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":767612,"componentType":5122,"count":1381,"type":"VEC2","name":"FROST_FUSELAGE001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":767616,"componentType":5122,"count":1381,"type":"VEC2","name":"FROST_FUSELAGE001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":767620,"componentType":5123,"count":1381,"type":"VEC4","name":"FROST_FUSELAGE001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":95478,"componentType":5123,"count":3552,"type":"SCALAR","name":"FROST_FUSELAGE001_indices#0"},{"bufferView":4,"byteOffset":817308,"componentType":5126,"count":76,"min":[-1.63640558719635,1.1248418092727661,25.029531478881836],"max":[1.63640558719635,1.8481528759002686,27.009525299072266],"type":"VEC3","name":"x3_WINDSHIELD_vertices#0_POSITION"},{"bufferView":4,"byteOffset":817320,"componentType":5120,"count":76,"type":"VEC4","name":"x3_WINDSHIELD_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":817324,"componentType":5120,"count":76,"type":"VEC4","name":"x3_WINDSHIELD_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":817328,"componentType":5122,"count":76,"type":"VEC2","name":"x3_WINDSHIELD_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":817332,"componentType":5122,"count":76,"type":"VEC2","name":"x3_WINDSHIELD_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":817336,"componentType":5123,"count":76,"type":"VEC4","name":"x3_WINDSHIELD_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":102582,"componentType":5123,"count":234,"type":"SCALAR","name":"x3_WINDSHIELD_indices#0"},{"bufferView":4,"byteOffset":820044,"componentType":5126,"count":544,"min":[-5.406018257141113,-0.25349560379981995,-48.82345199584961],"max":[0.2644622027873993,0.42833685874938965,0.1163593977689743],"type":"VEC3","name":"x3_Porthole_Blocker_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":820056,"componentType":5120,"count":544,"type":"VEC4","name":"x3_Porthole_Blocker_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":820060,"componentType":5120,"count":544,"type":"VEC4","name":"x3_Porthole_Blocker_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":820064,"componentType":5122,"count":544,"type":"VEC2","name":"x3_Porthole_Blocker_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":820068,"componentType":5122,"count":544,"type":"VEC2","name":"x3_Porthole_Blocker_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":820072,"componentType":5123,"count":544,"type":"VEC4","name":"x3_Porthole_Blocker_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":103050,"componentType":5123,"count":816,"type":"SCALAR","name":"x3_Porthole_Blocker_center_indices#0"},{"bufferView":4,"byteOffset":839628,"componentType":5126,"count":4,"min":[-0.04375565052032471,0.027031421661376953,-0.08321332931518555],"max":[-0.009208147414028645,0.08187198638916016,-0.06787276268005371],"type":"VEC3","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION"},{"bufferView":4,"byteOffset":839640,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":839644,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":839648,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":839652,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":839656,"componentType":5123,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104682,"componentType":5123,"count":6,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Beacon_Belly_indices#0"},{"bufferView":4,"byteOffset":839772,"componentType":5126,"count":4,"min":[-0.012800686061382294,-0.07480287551879883,-0.06730921566486359],"max":[-0.004207842983305454,-0.06878948211669922,-0.0611618310213089],"type":"VEC3","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION"},{"bufferView":4,"byteOffset":839784,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":839788,"componentType":5120,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":839792,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":839796,"componentType":5122,"count":4,"type":"VEC2","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":839800,"componentType":5123,"count":4,"type":"VEC4","name":"x3_LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104694,"componentType":5123,"count":6,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Beacon_Top_indices#0"},{"bufferView":4,"byteOffset":839916,"componentType":5126,"count":3,"min":[0.025082111358642578,0.0470188707113266,0.05144834518432617],"max":[0.041039466857910156,0.06633411347866058,0.06078958511352539],"type":"VEC3","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":839928,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":839932,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":839936,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":839940,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":839944,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104706,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_LandingWing_Left_indices#0"},{"bufferView":4,"byteOffset":840024,"componentType":5126,"count":3,"min":[-0.03306722640991211,0.0470188707113266,0.07366704940795898],"max":[-0.01431417465209961,0.06633410602807999,0.07678556442260742],"type":"VEC3","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840036,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840040,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840044,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840048,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840052,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104712,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_LandingWing_Right_indices#0"},{"bufferView":4,"byteOffset":840132,"componentType":5126,"count":3,"min":[0.04707932472229004,-0.01686510443687439,0.006795406341552734],"max":[0.0535123348236084,0.004947096109390259,0.026953697204589844],"type":"VEC3","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840144,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840148,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840152,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840156,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840160,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104718,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left_indices#0"},{"bufferView":4,"byteOffset":840240,"componentType":5126,"count":3,"min":[-0.05218672752380371,-0.01686510443687439,0.019605159759521484],"max":[-0.03882431983947754,0.004947096109390259,0.037015438079833984],"type":"VEC3","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840252,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840256,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840260,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840264,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840268,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104724,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right_indices#0"},{"bufferView":4,"byteOffset":840348,"componentType":5126,"count":3,"min":[0.011102437973022461,0.018764615058898926,-0.00572967529296875],"max":[0.013572514057159424,0.020845651626586914,-0.004261016845703125],"type":"VEC3","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840360,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840364,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840368,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840372,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840376,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104730,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_StrobeTail_Left_indices#0"},{"bufferView":4,"byteOffset":840456,"componentType":5126,"count":3,"min":[-0.004686951637268066,0.018764734268188477,-0.00374603271484375],"max":[-0.002954244613647461,0.021648406982421875,-0.002735137939453125],"type":"VEC3","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840468,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840472,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840476,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840480,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840484,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104736,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_StrobeTail_Right_indices#0"},{"bufferView":4,"byteOffset":840564,"componentType":5126,"count":3,"min":[0.06098461151123047,0.014184713363647461,-0.019765853881835938],"max":[0.07079386711120605,0.03238396346569061,-9.5367431640625e-7],"type":"VEC3","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840576,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840580,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840584,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840588,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840592,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104742,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Wing_Left_indices#0"},{"bufferView":4,"byteOffset":840672,"componentType":5126,"count":3,"min":[-0.06932544708251953,0.015733569860458374,-0.016122817993164062],"max":[-0.059476613998413086,0.032518431544303894,0.0058917999267578125],"type":"VEC3","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840684,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840688,"componentType":5120,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840692,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840696,"componentType":5122,"count":3,"type":"VEC2","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840700,"componentType":5123,"count":3,"type":"VEC4","name":"x3_LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104748,"componentType":5123,"count":3,"type":"SCALAR","name":"x3_LIGHT_ASOBO_Wing_Right_indices#0"},{"bufferView":4,"byteOffset":840780,"componentType":5126,"count":12,"min":[-2.667531967163086,-0.20421838760375977,-0.8157100677490234],"max":[2.667531967163086,0.20421838760375977,0.8157100677490234],"type":"VEC3","name":"x3_Livery_KLM_RegNumber_vertices#0_POSITION"},{"bufferView":4,"byteOffset":840792,"componentType":5120,"count":12,"type":"VEC4","name":"x3_Livery_KLM_RegNumber_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":840796,"componentType":5120,"count":12,"type":"VEC4","name":"x3_Livery_KLM_RegNumber_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":840800,"componentType":5122,"count":12,"type":"VEC2","name":"x3_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":840804,"componentType":5122,"count":12,"type":"VEC2","name":"x3_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":840808,"componentType":5123,"count":12,"type":"VEC4","name":"x3_Livery_KLM_RegNumber_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104754,"componentType":5123,"count":24,"type":"SCALAR","name":"x3_Livery_KLM_RegNumber_indices#0"},{"bufferView":4,"byteOffset":841212,"componentType":5126,"count":4425,"min":[-2.861222267150879,-1.6333253383636475,-27.526147842407227],"max":[2.861222267150879,1.6333253383636475,27.526147842407227],"type":"VEC3","name":"x0_Livery_KLM_FuselageB_vertices#0_POSITION"},{"bufferView":4,"byteOffset":841224,"componentType":5120,"count":4425,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":841228,"componentType":5120,"count":4425,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":841232,"componentType":5122,"count":4425,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":841236,"componentType":5122,"count":4425,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":841240,"componentType":5123,"count":4425,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":104802,"componentType":5123,"count":12444,"type":"SCALAR","name":"x0_Livery_KLM_FuselageB_indices#0"},{"bufferView":4,"byteOffset":1000512,"componentType":5126,"count":8184,"min":[-3.0187995433807373,-4.272808074951172,-32.944366455078125],"max":[3.019928216934204,4.495274543762207,32.94788360595703],"type":"VEC3","name":"x3_Livery_KLM_FuselageA_vertices#0_POSITION"},{"bufferView":4,"byteOffset":1000524,"componentType":5120,"count":8184,"type":"VEC4","name":"x3_Livery_KLM_FuselageA_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":1000528,"componentType":5120,"count":8184,"type":"VEC4","name":"x3_Livery_KLM_FuselageA_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":1000532,"componentType":5122,"count":8184,"type":"VEC2","name":"x3_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":1000536,"componentType":5122,"count":8184,"type":"VEC2","name":"x3_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":1000540,"componentType":5123,"count":8184,"type":"VEC4","name":"x3_Livery_KLM_FuselageA_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":129690,"componentType":5123,"count":20358,"type":"SCALAR","name":"x3_Livery_KLM_FuselageA_indices#0"},{"bufferView":6,"componentType":5126,"count":60,"min":[11.163616180419922,0.004612445831298828,-1.609161615371704],"max":[20.709306716918945,0.1383029818534851,-0.5123214721679688],"type":"VEC3","name":"x3_Spoiler_2_1_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":12,"componentType":5120,"count":60,"type":"VEC4","name":"x3_Spoiler_2_1_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":16,"componentType":5120,"count":60,"type":"VEC4","name":"x3_Spoiler_2_1_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":20,"componentType":5122,"count":60,"type":"VEC2","name":"x3_Spoiler_2_1_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":24,"componentType":5122,"count":60,"type":"VEC2","name":"x3_Spoiler_2_1_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":28,"componentType":5123,"count":60,"type":"VEC4","name":"x3_Spoiler_2_1_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":36,"componentType":5123,"count":60,"normalized":true,"type":"VEC4","name":"x3_Spoiler_2_1_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":44,"componentType":5120,"count":60,"type":"VEC4","name":"x3_Spoiler_2_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":170406,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_Spoiler_2_1_left_indices#0"},{"bufferView":6,"byteOffset":2880,"componentType":5126,"count":72,"min":[-20.70876693725586,-0.13830706477165222,0.5123319625854492],"max":[-11.163603782653809,-0.004616826772689819,1.6091699600219727],"type":"VEC3","name":"x3_Spoiler_2_1_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":2892,"componentType":5120,"count":72,"type":"VEC4","name":"x3_Spoiler_2_1_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":2896,"componentType":5120,"count":72,"type":"VEC4","name":"x3_Spoiler_2_1_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":2900,"componentType":5122,"count":72,"type":"VEC2","name":"x3_Spoiler_2_1_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":2904,"componentType":5122,"count":72,"type":"VEC2","name":"x3_Spoiler_2_1_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":2908,"componentType":5123,"count":72,"type":"VEC4","name":"x3_Spoiler_2_1_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":2916,"componentType":5123,"count":72,"normalized":true,"type":"VEC4","name":"x3_Spoiler_2_1_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":2924,"componentType":5120,"count":72,"type":"VEC4","name":"x3_Spoiler_2_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":170598,"componentType":5123,"count":126,"type":"SCALAR","name":"x3_Spoiler_2_1_right_indices#0"},{"bufferView":6,"byteOffset":6336,"componentType":5126,"count":147,"min":[-5.82675313949585,-2.3647263050079346,-6.911769390106201],"max":[-0.2661839425563812,0.32777005434036255,-3.3858397006988525],"type":"VEC3","name":"x3_Undercarriage_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":6348,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":6352,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":6356,"componentType":5122,"count":147,"type":"VEC2","name":"x3_Undercarriage_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":6360,"componentType":5122,"count":147,"type":"VEC2","name":"x3_Undercarriage_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":6364,"componentType":5123,"count":147,"type":"VEC4","name":"x3_Undercarriage_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":6372,"componentType":5123,"count":147,"normalized":true,"type":"VEC4","name":"x3_Undercarriage_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":6380,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":170850,"componentType":5123,"count":201,"type":"SCALAR","name":"x3_Undercarriage_right_indices#0"},{"bufferView":6,"byteOffset":13392,"componentType":5126,"count":147,"min":[0.2661839425563812,-2.3647263050079346,-6.911769390106201],"max":[5.826752662658691,0.327769935131073,-3.3858394622802734],"type":"VEC3","name":"x3_Undercarriage_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":13404,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":13408,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":13412,"componentType":5122,"count":147,"type":"VEC2","name":"x3_Undercarriage_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":13416,"componentType":5122,"count":147,"type":"VEC2","name":"x3_Undercarriage_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":13420,"componentType":5123,"count":147,"type":"VEC4","name":"x3_Undercarriage_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":13428,"componentType":5123,"count":147,"normalized":true,"type":"VEC4","name":"x3_Undercarriage_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":13436,"componentType":5120,"count":147,"type":"VEC4","name":"x3_Undercarriage_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":171252,"componentType":5123,"count":201,"type":"SCALAR","name":"x3_Undercarriage_left_indices#0"},{"bufferView":6,"byteOffset":20448,"componentType":5126,"count":122,"min":[-26.87578773498535,0.5165846347808838,-13.396984100341797],"max":[-10.14120864868164,2.830193042755127,-1.468538522720337],"type":"VEC3","name":"FROST_KRUEGERR004_vertices#0_POSITION"},{"bufferView":6,"byteOffset":20460,"componentType":5120,"count":122,"type":"VEC4","name":"FROST_KRUEGERR004_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":20464,"componentType":5120,"count":122,"type":"VEC4","name":"FROST_KRUEGERR004_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":20468,"componentType":5122,"count":122,"type":"VEC2","name":"FROST_KRUEGERR004_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":20472,"componentType":5122,"count":122,"type":"VEC2","name":"FROST_KRUEGERR004_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":20476,"componentType":5123,"count":122,"type":"VEC4","name":"FROST_KRUEGERR004_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":20484,"componentType":5123,"count":122,"normalized":true,"type":"VEC4","name":"FROST_KRUEGERR004_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":20492,"componentType":5120,"count":122,"type":"VEC4","name":"FROST_KRUEGERR004_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":171654,"componentType":5123,"count":186,"type":"SCALAR","name":"FROST_KRUEGERR004_indices#0"},{"bufferView":6,"byteOffset":26304,"componentType":5126,"count":112,"min":[10.141210556030273,0.5165841579437256,-13.396986961364746],"max":[26.875789642333984,2.830195903778076,-1.468536138534546],"type":"VEC3","name":"FROST_KRUEGERL004_vertices#0_POSITION"},{"bufferView":6,"byteOffset":26316,"componentType":5120,"count":112,"type":"VEC4","name":"FROST_KRUEGERL004_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":26320,"componentType":5120,"count":112,"type":"VEC4","name":"FROST_KRUEGERL004_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":26324,"componentType":5122,"count":112,"type":"VEC2","name":"FROST_KRUEGERL004_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":26328,"componentType":5122,"count":112,"type":"VEC2","name":"FROST_KRUEGERL004_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":26332,"componentType":5123,"count":112,"type":"VEC4","name":"FROST_KRUEGERL004_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":26340,"componentType":5123,"count":112,"normalized":true,"type":"VEC4","name":"FROST_KRUEGERL004_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":26348,"componentType":5120,"count":112,"type":"VEC4","name":"FROST_KRUEGERL004_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":172026,"componentType":5123,"count":186,"type":"SCALAR","name":"FROST_KRUEGERL004_indices#0"},{"bufferView":6,"byteOffset":31680,"componentType":5126,"count":561,"min":[-30.037269592285156,-1.3455458879470825,-17.45484161376953],"max":[-3.075892925262451,3.389582633972168,3.6106882095336914],"type":"VEC3","name":"FROST_WINGR001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":31692,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGR001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":31696,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGR001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":31700,"componentType":5122,"count":561,"type":"VEC2","name":"FROST_WINGR001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":31704,"componentType":5122,"count":561,"type":"VEC2","name":"FROST_WINGR001_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":31708,"componentType":5123,"count":561,"type":"VEC4","name":"FROST_WINGR001_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":31716,"componentType":5123,"count":561,"normalized":true,"type":"VEC4","name":"FROST_WINGR001_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":31724,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGR001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":172398,"componentType":5123,"count":1449,"type":"SCALAR","name":"FROST_WINGR001_indices#0"},{"bufferView":6,"byteOffset":58608,"componentType":5126,"count":561,"min":[3.075892210006714,-1.3455458879470825,-17.4548397064209],"max":[30.037267684936523,3.389582633972168,3.610687255859375],"type":"VEC3","name":"FROST_WINGL001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":58620,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGL001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":58624,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGL001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":58628,"componentType":5122,"count":561,"type":"VEC2","name":"FROST_WINGL001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":58632,"componentType":5122,"count":561,"type":"VEC2","name":"FROST_WINGL001_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":58636,"componentType":5123,"count":561,"type":"VEC4","name":"FROST_WINGL001_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":58644,"componentType":5123,"count":561,"normalized":true,"type":"VEC4","name":"FROST_WINGL001_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":58652,"componentType":5120,"count":561,"type":"VEC4","name":"FROST_WINGL001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":175296,"componentType":5123,"count":1449,"type":"SCALAR","name":"FROST_WINGL001_indices#0"},{"bufferView":6,"byteOffset":85536,"componentType":5126,"count":454,"min":[-0.21264007687568665,0.9412015676498413,26.39714241027832],"max":[0.21264027059078217,1.7450270652770996,27.306394577026367],"type":"VEC3","name":"x3_wiper_vertices#0_POSITION"},{"bufferView":6,"byteOffset":85548,"componentType":5120,"count":454,"type":"VEC4","name":"x3_wiper_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":85552,"componentType":5120,"count":454,"type":"VEC4","name":"x3_wiper_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":85556,"componentType":5122,"count":454,"type":"VEC2","name":"x3_wiper_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":85560,"componentType":5122,"count":454,"type":"VEC2","name":"x3_wiper_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":85564,"componentType":5123,"count":454,"type":"VEC4","name":"x3_wiper_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":85572,"componentType":5123,"count":454,"normalized":true,"type":"VEC4","name":"x3_wiper_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":85580,"componentType":5120,"count":454,"type":"VEC4","name":"x3_wiper_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":178194,"componentType":5123,"count":810,"type":"SCALAR","name":"x3_wiper_indices#0"},{"bufferView":6,"byteOffset":107328,"componentType":5126,"count":40,"min":[-10.421077728271484,-0.8743336200714111,6.4515838623046875],"max":[-3.0438435077667236,0.6078687906265259,7.405038833618164],"type":"VEC3","name":"x3_Spoiler_1_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":107340,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":107344,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":107348,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Spoiler_1_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":107352,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Spoiler_1_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":107356,"componentType":5123,"count":40,"type":"VEC4","name":"x3_Spoiler_1_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":107364,"componentType":5123,"count":40,"normalized":true,"type":"VEC4","name":"x3_Spoiler_1_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":107372,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":179814,"componentType":5123,"count":60,"type":"SCALAR","name":"x3_Spoiler_1_right_indices#0"},{"bufferView":6,"byteOffset":109248,"componentType":5126,"count":290,"min":[-21.10552406311035,0.555815577507019,-13.091991424560547],"max":[-11.76388931274414,2.073246479034424,-7.669435501098633],"type":"VEC3","name":"x3_Flaps_2_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":109260,"componentType":5120,"count":290,"type":"VEC4","name":"x3_Flaps_2_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":109264,"componentType":5120,"count":290,"type":"VEC4","name":"x3_Flaps_2_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":109268,"componentType":5122,"count":290,"type":"VEC2","name":"x3_Flaps_2_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":109272,"componentType":5122,"count":290,"type":"VEC2","name":"x3_Flaps_2_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":109276,"componentType":5123,"count":290,"type":"VEC4","name":"x3_Flaps_2_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":109284,"componentType":5123,"count":290,"normalized":true,"type":"VEC4","name":"x3_Flaps_2_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":109292,"componentType":5120,"count":290,"type":"VEC4","name":"x3_Flaps_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":179934,"componentType":5123,"count":606,"type":"SCALAR","name":"x3_Flaps_2_right_indices#0"},{"bufferView":6,"byteOffset":123168,"componentType":5126,"count":124,"min":[-24.889142990112305,1.8992329835891724,-14.56723690032959],"max":[-21.34499740600586,2.498643636703491,-11.97108268737793],"type":"VEC3","name":"x3_Aileron_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":123180,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Aileron_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":123184,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Aileron_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":123188,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Aileron_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":123192,"componentType":5122,"count":124,"type":"VEC2","name":"x3_Aileron_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":123196,"componentType":5123,"count":124,"type":"VEC4","name":"x3_Aileron_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":123204,"componentType":5123,"count":124,"normalized":true,"type":"VEC4","name":"x3_Aileron_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":123212,"componentType":5120,"count":124,"type":"VEC4","name":"x3_Aileron_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":181146,"componentType":5123,"count":276,"type":"SCALAR","name":"x3_Aileron_right_indices#0"},{"bufferView":6,"byteOffset":129120,"componentType":5126,"count":40,"min":[3.043844699859619,-0.6078511476516724,-7.404510974884033],"max":[10.421204566955566,0.8745605945587158,-6.450397491455078],"type":"VEC3","name":"x3_Spoiler_1_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":129132,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":129136,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":129140,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Spoiler_1_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":129144,"componentType":5122,"count":40,"type":"VEC2","name":"x3_Spoiler_1_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":129148,"componentType":5123,"count":40,"type":"VEC4","name":"x3_Spoiler_1_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":129156,"componentType":5123,"count":40,"normalized":true,"type":"VEC4","name":"x3_Spoiler_1_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":129164,"componentType":5120,"count":40,"type":"VEC4","name":"x3_Spoiler_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":181698,"componentType":5123,"count":66,"type":"SCALAR","name":"x3_Spoiler_1_left_indices#0"},{"bufferView":6,"byteOffset":131040,"componentType":5126,"count":225,"min":[11.763893127441406,0.587261438369751,-13.092342376708984],"max":[21.10556411743164,2.0732462406158447,-7.669434547424316],"type":"VEC3","name":"x3_Flaps_2_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":131052,"componentType":5120,"count":225,"type":"VEC4","name":"x3_Flaps_2_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":131056,"componentType":5120,"count":225,"type":"VEC4","name":"x3_Flaps_2_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":131060,"componentType":5122,"count":225,"type":"VEC2","name":"x3_Flaps_2_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":131064,"componentType":5122,"count":225,"type":"VEC2","name":"x3_Flaps_2_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":131068,"componentType":5123,"count":225,"type":"VEC4","name":"x3_Flaps_2_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":131076,"componentType":5123,"count":225,"normalized":true,"type":"VEC4","name":"x3_Flaps_2_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":131084,"componentType":5120,"count":225,"type":"VEC4","name":"x3_Flaps_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":181830,"componentType":5123,"count":480,"type":"SCALAR","name":"x3_Flaps_2_left_indices#0"},{"bufferView":6,"byteOffset":141840,"componentType":5126,"count":119,"min":[21.345001220703125,1.8993865251541138,-14.584488868713379],"max":[24.889142990112305,2.498643636703491,-11.97108268737793],"type":"VEC3","name":"x3_Aileron_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":141852,"componentType":5120,"count":119,"type":"VEC4","name":"x3_Aileron_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":141856,"componentType":5120,"count":119,"type":"VEC4","name":"x3_Aileron_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":141860,"componentType":5122,"count":119,"type":"VEC2","name":"x3_Aileron_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":141864,"componentType":5122,"count":119,"type":"VEC2","name":"x3_Aileron_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":141868,"componentType":5123,"count":119,"type":"VEC4","name":"x3_Aileron_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":141876,"componentType":5123,"count":119,"normalized":true,"type":"VEC4","name":"x3_Aileron_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":141884,"componentType":5120,"count":119,"type":"VEC4","name":"x3_Aileron_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":182790,"componentType":5123,"count":276,"type":"SCALAR","name":"x3_Aileron_left_indices#0"},{"bufferView":6,"byteOffset":147552,"componentType":5126,"count":194,"min":[10.155594825744629,0.5402969121932983,-13.395139694213867],"max":[26.88292694091797,2.791901111602783,-1.48046875],"type":"VEC3","name":"x3_FlapsKrueger_2_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":147564,"componentType":5120,"count":194,"type":"VEC4","name":"x3_FlapsKrueger_2_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":147568,"componentType":5120,"count":194,"type":"VEC4","name":"x3_FlapsKrueger_2_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":147572,"componentType":5122,"count":194,"type":"VEC2","name":"x3_FlapsKrueger_2_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":147576,"componentType":5122,"count":194,"type":"VEC2","name":"x3_FlapsKrueger_2_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":147580,"componentType":5123,"count":194,"type":"VEC4","name":"x3_FlapsKrueger_2_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":147588,"componentType":5123,"count":194,"normalized":true,"type":"VEC4","name":"x3_FlapsKrueger_2_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":147596,"componentType":5120,"count":194,"type":"VEC4","name":"x3_FlapsKrueger_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":183342,"componentType":5123,"count":408,"type":"SCALAR","name":"x3_FlapsKrueger_2_left_indices#0"},{"bufferView":6,"byteOffset":156864,"componentType":5126,"count":212,"min":[-26.857166290283203,-2.7919070720672607,1.500487208366394],"max":[-10.12983226776123,-0.5402965545654297,13.415162086486816],"type":"VEC3","name":"x3_FlapsKrueger_2_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":156876,"componentType":5120,"count":212,"type":"VEC4","name":"x3_FlapsKrueger_2_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":156880,"componentType":5120,"count":212,"type":"VEC4","name":"x3_FlapsKrueger_2_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":156884,"componentType":5122,"count":212,"type":"VEC2","name":"x3_FlapsKrueger_2_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":156888,"componentType":5122,"count":212,"type":"VEC2","name":"x3_FlapsKrueger_2_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":156892,"componentType":5123,"count":212,"type":"VEC4","name":"x3_FlapsKrueger_2_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":156900,"componentType":5123,"count":212,"normalized":true,"type":"VEC4","name":"x3_FlapsKrueger_2_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":156908,"componentType":5120,"count":212,"type":"VEC4","name":"x3_FlapsKrueger_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":184158,"componentType":5123,"count":492,"type":"SCALAR","name":"x3_FlapsKrueger_2_right_indices#0"},{"bufferView":6,"byteOffset":167040,"componentType":5126,"count":1384,"min":[-11.764906883239746,-0.5631698369979858,-4.623858451843262],"max":[-7.848039627075195,3.521134614944458,6.9020867347717285],"type":"VEC3","name":"x3_ENGINE_RIGHT_vertices#0_POSITION"},{"bufferView":6,"byteOffset":167052,"componentType":5120,"count":1384,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":167056,"componentType":5120,"count":1384,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":167060,"componentType":5122,"count":1384,"type":"VEC2","name":"x3_ENGINE_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":167064,"componentType":5122,"count":1384,"type":"VEC2","name":"x3_ENGINE_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":167068,"componentType":5123,"count":1384,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":167076,"componentType":5123,"count":1384,"normalized":true,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":167084,"componentType":5120,"count":1384,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":185142,"componentType":5123,"count":2844,"type":"SCALAR","name":"x3_ENGINE_RIGHT_indices#0"},{"bufferView":7,"componentType":5126,"count":36,"min":[-11.722868919372559,2.1206047534942627,-3.2477028369903564],"max":[-7.889135360717773,3.51479434967041,-2.491752862930298],"type":"VEC3","name":"x3_ENGINE_RIGHT_vertices#0_POSITION"},{"bufferView":7,"byteOffset":12,"componentType":5120,"count":36,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_TANGENT"},{"bufferView":7,"byteOffset":16,"componentType":5120,"count":36,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_NORMAL"},{"bufferView":7,"byteOffset":20,"componentType":5122,"count":36,"type":"VEC2","name":"x3_ENGINE_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":7,"byteOffset":24,"componentType":5122,"count":36,"type":"VEC2","name":"x3_ENGINE_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":28,"componentType":5123,"count":36,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_JOINTS_0"},{"bufferView":7,"byteOffset":36,"componentType":5126,"count":36,"type":"SCALAR","name":"x3_ENGINE_RIGHT_vertices#0_WEIGHTS_0"},{"bufferView":7,"byteOffset":40,"componentType":5120,"count":36,"type":"VEC4","name":"x3_ENGINE_RIGHT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":190830,"componentType":5123,"count":90,"type":"SCALAR","name":"x3_ENGINE_RIGHT_indices#1"},{"bufferView":6,"byteOffset":233472,"componentType":5126,"count":1327,"min":[7.848041534423828,-3.5211358070373535,-6.903071403503418],"max":[11.764909744262695,0.5631691813468933,4.6200361251831055],"type":"VEC3","name":"x3_ENGINE_LEFT_vertices#0_POSITION"},{"bufferView":6,"byteOffset":233484,"componentType":5120,"count":1327,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":233488,"componentType":5120,"count":1327,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":233492,"componentType":5122,"count":1327,"type":"VEC2","name":"x3_ENGINE_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":233496,"componentType":5122,"count":1327,"type":"VEC2","name":"x3_ENGINE_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":233500,"componentType":5123,"count":1327,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":233508,"componentType":5123,"count":1327,"normalized":true,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":233516,"componentType":5120,"count":1327,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":191010,"componentType":5123,"count":2733,"type":"SCALAR","name":"x3_ENGINE_LEFT_indices#0"},{"bufferView":7,"byteOffset":1584,"componentType":5126,"count":40,"min":[7.889135360717773,-3.51479434967041,2.4917545318603516],"max":[11.722869873046875,-2.12060546875,3.247704267501831],"type":"VEC3","name":"x3_ENGINE_LEFT_vertices#0_POSITION"},{"bufferView":7,"byteOffset":1596,"componentType":5120,"count":40,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_TANGENT"},{"bufferView":7,"byteOffset":1600,"componentType":5120,"count":40,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_NORMAL"},{"bufferView":7,"byteOffset":1604,"componentType":5122,"count":40,"type":"VEC2","name":"x3_ENGINE_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":7,"byteOffset":1608,"componentType":5122,"count":40,"type":"VEC2","name":"x3_ENGINE_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":1612,"componentType":5123,"count":40,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_JOINTS_0"},{"bufferView":7,"byteOffset":1620,"componentType":5126,"count":40,"type":"SCALAR","name":"x3_ENGINE_LEFT_vertices#0_WEIGHTS_0"},{"bufferView":7,"byteOffset":1624,"componentType":5120,"count":40,"type":"VEC4","name":"x3_ENGINE_LEFT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":196476,"componentType":5123,"count":96,"type":"SCALAR","name":"x3_ENGINE_LEFT_indices#1"},{"bufferView":6,"byteOffset":297168,"componentType":5126,"count":65,"min":[-30.0091609954834,-0.2974691390991211,-18.07244300842285],"max":[-3.296039581298828,3.4091126918792725,3.3993167877197266],"type":"VEC3","name":"x3_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":297180,"componentType":5120,"count":65,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":297184,"componentType":5120,"count":65,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":297188,"componentType":5122,"count":65,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":297192,"componentType":5122,"count":65,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":297196,"componentType":5123,"count":65,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":297204,"componentType":5123,"count":65,"normalized":true,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":297212,"componentType":5120,"count":65,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":196668,"componentType":5123,"count":213,"type":"SCALAR","name":"x3_Wing_body_right_indices#0"},{"bufferView":6,"byteOffset":300288,"componentType":5126,"count":1397,"min":[-30.017244338989258,-1.3049399852752686,-18.019269943237305],"max":[-2.8388633728027344,3.4091110229492188,3.564340591430664],"type":"VEC3","name":"x3_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":300300,"componentType":5120,"count":1397,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":300304,"componentType":5120,"count":1397,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":300308,"componentType":5122,"count":1397,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":300312,"componentType":5122,"count":1397,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":300316,"componentType":5123,"count":1397,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":300324,"componentType":5123,"count":1397,"normalized":true,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":300332,"componentType":5120,"count":1397,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":197094,"componentType":5123,"count":3408,"type":"SCALAR","name":"x3_Wing_body_right_indices#1"},{"bufferView":6,"byteOffset":367344,"componentType":5126,"count":156,"min":[-29.994781494140625,-0.30581045150756836,-18.02753448486328],"max":[-3.290060043334961,3.394883394241333,3.3993186950683594],"type":"VEC3","name":"x3_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":367356,"componentType":5120,"count":156,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":367360,"componentType":5120,"count":156,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":367364,"componentType":5122,"count":156,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":367368,"componentType":5122,"count":156,"type":"VEC2","name":"x3_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":367372,"componentType":5123,"count":156,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":367380,"componentType":5123,"count":156,"normalized":true,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":367388,"componentType":5120,"count":156,"type":"VEC4","name":"x3_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":203910,"componentType":5123,"count":324,"type":"SCALAR","name":"x3_Wing_body_right_indices#2"},{"bufferView":6,"byteOffset":374832,"componentType":5126,"count":73,"min":[3.296043634414673,-0.29746854305267334,-18.072439193725586],"max":[30.009159088134766,3.4091126918792725,3.399315595626831],"type":"VEC3","name":"x3_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":374844,"componentType":5120,"count":73,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":374848,"componentType":5120,"count":73,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":374852,"componentType":5122,"count":73,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":374856,"componentType":5122,"count":73,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":374860,"componentType":5123,"count":73,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":374868,"componentType":5123,"count":73,"normalized":true,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":374876,"componentType":5120,"count":73,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":204558,"componentType":5123,"count":213,"type":"SCALAR","name":"x3_Wing_body_left_indices#0"},{"bufferView":6,"byteOffset":378336,"componentType":5126,"count":1414,"min":[2.838864803314209,-1.3049402236938477,-18.01926612854004],"max":[30.017242431640625,3.4091110229492188,3.5643386840820312],"type":"VEC3","name":"x3_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":378348,"componentType":5120,"count":1414,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":378352,"componentType":5120,"count":1414,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":378356,"componentType":5122,"count":1414,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":378360,"componentType":5122,"count":1414,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":378364,"componentType":5123,"count":1414,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":378372,"componentType":5123,"count":1414,"normalized":true,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":378380,"componentType":5120,"count":1414,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":204984,"componentType":5123,"count":3537,"type":"SCALAR","name":"x3_Wing_body_left_indices#1"},{"bufferView":6,"byteOffset":446208,"componentType":5126,"count":182,"min":[3.290062665939331,-0.3058108687400818,-18.027530670166016],"max":[29.994781494140625,3.394883394241333,3.3993165493011475],"type":"VEC3","name":"x3_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":446220,"componentType":5120,"count":182,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":446224,"componentType":5120,"count":182,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":446228,"componentType":5122,"count":182,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":446232,"componentType":5122,"count":182,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":446236,"componentType":5123,"count":182,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":446244,"componentType":5123,"count":182,"normalized":true,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":446252,"componentType":5120,"count":182,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":212058,"componentType":5123,"count":366,"type":"SCALAR","name":"x3_Wing_body_left_indices#2"},{"bufferView":6,"byteOffset":454944,"componentType":5126,"count":12,"min":[19.140178680419922,1.3902814388275146,-12.02985668182373],"max":[23.022136688232422,1.9423401355743408,-8.977128982543945],"type":"VEC3","name":"x3_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":454956,"componentType":5120,"count":12,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":454960,"componentType":5120,"count":12,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":454964,"componentType":5122,"count":12,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":454968,"componentType":5122,"count":12,"type":"VEC2","name":"x3_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":454972,"componentType":5123,"count":12,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":454980,"componentType":5123,"count":12,"normalized":true,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":454988,"componentType":5120,"count":12,"type":"VEC4","name":"x3_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":212790,"componentType":5123,"count":36,"type":"SCALAR","name":"x3_Wing_body_left_indices#3"},{"bufferView":9,"byteOffset":28,"componentType":5123,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":16,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_NORMAL"},{"bufferView":9,"componentType":5126,"count":1084,"min":[-6.898191452026367,-2.385265350341797,-0.27293723821640015],"max":[4.0452880859375,0.5350360870361328,0.27293795347213745],"type":"VEC3","name":"x1_Rudder_center.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":12,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":20,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":24,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"componentType":5123,"count":5460,"type":"SCALAR","name":"x1_Rudder_center.001_indices#0"},{"bufferView":9,"byteOffset":39052,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":39040,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":39024,"componentType":5126,"count":43,"min":[-0.48449012637138367,0.054303597658872604,-0.7407507300376892],"max":[0.5785654187202454,0.16718320548534393,-0.044933248311281204],"type":"VEC3","name":"x1_Livery_C_Door_02_Left.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":39036,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":39044,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":39048,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":10920,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_Left.002_indices#0"},{"bufferView":9,"byteOffset":40600,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":40588,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":40572,"componentType":5126,"count":43,"min":[-0.5787447690963745,-0.16539137065410614,0.044925887137651443],"max":[0.4843108654022217,-0.05251185968518257,0.7407436966896057],"type":"VEC3","name":"x1_Livery_C_Door_02_right.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":40584,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":40592,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":40596,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":11100,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_right.002_indices#0"},{"bufferView":9,"byteOffset":42148,"componentType":5123,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":42136,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":42120,"componentType":5126,"count":345,"min":[-0.2698783874511719,-0.9995222091674805,-0.5886659622192383],"max":[0.0020599365234375,0.5340242385864258,0.5886745452880859],"type":"VEC3","name":"x0_Livery_KLM_DoorB.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":42132,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":42140,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":42144,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":11280,"componentType":5123,"count":906,"type":"SCALAR","name":"x0_Livery_KLM_DoorB.001_indices#0"},{"bufferView":9,"byteOffset":54568,"componentType":5123,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":54556,"componentType":5120,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":54540,"componentType":5126,"count":24,"min":[2.5483758449554443,1.5735995769500732,5.896169662475586],"max":[2.77527117729187,1.843569040298462,21.52033805847168],"type":"VEC3","name":"x0_Livery_KLM_FuselageA.005_vertices#0_POSITION"},{"bufferView":9,"byteOffset":54560,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":54564,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13092,"componentType":5123,"count":63,"type":"SCALAR","name":"x0_Livery_KLM_FuselageA.005_indices#0"},{"bufferView":9,"byteOffset":55432,"componentType":5123,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":55420,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":55404,"componentType":5126,"count":31,"min":[-0.27521419525146484,-0.27002182602882385,-1.6258187294006348],"max":[-0.24078130722045898,0.6198497414588928,1.8943886756896973],"type":"VEC3","name":"x0_R_Door01_left.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":55416,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":55424,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":55428,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13220,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_R_Door01_left.001_indices#0"},{"bufferView":9,"byteOffset":56548,"componentType":5123,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":56536,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":56520,"componentType":5126,"count":31,"min":[0.24078059196472168,-0.6198493242263794,-1.8943934440612793],"max":[0.27521395683288574,0.2700219750404358,1.625821590423584],"type":"VEC3","name":"x0_Door01_right.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":56532,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":56540,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":56544,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13396,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_Door01_right.001_indices#0"},{"bufferView":9,"byteOffset":57664,"componentType":5123,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":57652,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":57636,"componentType":5126,"count":2356,"min":[-0.5303040146827698,2.561161756515503,-39.11258316040039],"max":[0.5303040146827698,12.468074798583984,-25.891597747802734],"type":"VEC3","name":"livery_vstab_vertices#0_POSITION"},{"bufferView":9,"byteOffset":57648,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":57656,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":57660,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13572,"componentType":5123,"count":12342,"type":"SCALAR","name":"livery_vstab_indices#0"},{"bufferView":9,"byteOffset":142480,"componentType":5123,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":142468,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":142452,"componentType":5126,"count":35,"min":[0.38646888732910156,-1.475200891494751,-1.4131393432617188],"max":[0.8847513198852539,-0.9122163653373718,1.4013233184814453],"type":"VEC3","name":"Cargo_Door_LIVERYDECAL_vertices#0_POSITION"},{"bufferView":9,"byteOffset":142464,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":142472,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":142476,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":38256,"componentType":5123,"count":120,"type":"SCALAR","name":"Cargo_Door_LIVERYDECAL_indices#0"},{"bufferView":9,"byteOffset":143740,"componentType":5123,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":143728,"componentType":5120,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":143712,"componentType":5126,"count":270,"min":[-2.8634743690490723,-0.27878737449645996,-25.152372360229492],"max":[2.863468647003174,2.3880088329315186,-20.129650115966797],"type":"VEC3","name":"Plane.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":143732,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":143736,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":38496,"componentType":5123,"count":918,"type":"SCALAR","name":"Plane.002_indices#0"},{"bufferView":9,"byteOffset":153460,"componentType":5123,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":153448,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":153432,"componentType":5126,"count":2765,"min":[-1.2694666385650635,-2.546407699584961,-15.50222110748291],"max":[1.269464135169983,-1.9093613624572754,8.595946311950684],"type":"VEC3","name":"Plane.004_vertices#0_POSITION"},{"bufferView":9,"byteOffset":153444,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":153452,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":153456,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":40332,"componentType":5123,"count":8436,"type":"SCALAR","name":"Plane.004_indices#0"},{"bufferView":9,"byteOffset":253000,"componentType":5123,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":252988,"componentType":5120,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":252972,"componentType":5126,"count":12650,"min":[-2.848564624786377,1.0104148387908936,-2.4503250122070312],"max":[2.848580837249756,2.654226064682007,19.7845458984375],"type":"VEC3","name":"Plane.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":252992,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":252996,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":57204,"componentType":5123,"count":39384,"type":"SCALAR","name":"Plane.001_indices#0"},{"bufferView":9,"byteOffset":708400,"componentType":5123,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":708388,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":708372,"componentType":5126,"count":92,"min":[-2.3540401458740234,0.9106197357177734,23.448795318603516],"max":[2.3526997566223145,1.9353947639465332,24.303451538085938],"type":"VEC3","name":"Plane.003_vertices#0_POSITION"},{"bufferView":9,"byteOffset":708384,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":708392,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":708396,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":135972,"componentType":5123,"count":336,"type":"SCALAR","name":"Plane.003_indices#0"},{"bufferView":9,"byteOffset":711712,"componentType":5123,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":711700,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":711684,"componentType":5126,"count":3715,"min":[-3.255725383758545,-1.545548439025879,-30.79000473022461],"max":[3.2557260990142822,-0.9825637340545654,28.268733978271484],"type":"VEC3","name":"Plane.008_vertices#0_POSITION"},{"bufferView":9,"byteOffset":711696,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":711704,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":711708,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":136644,"componentType":5123,"count":11496,"type":"SCALAR","name":"Plane.008_indices#0"},{"bufferView":10,"componentType":5126,"count":81,"min":[0.041666666666666664],"max":[3.375],"type":"SCALAR"},{"bufferView":11,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":12,"componentType":5126,"count":81,"type":"VEC4"},{"bufferView":13,"componentType":5126,"count":161,"min":[0.041666666666666664],"max":[6.708333333333333],"type":"SCALAR"},{"bufferView":14,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":15,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":16,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":17,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":18,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":19,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":20,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":21,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":22,"componentType":5126,"count":81,"type":"VEC4"}],"animations":[{"name":"c_gear","channels":[{"sampler":0,"target":{"node":157,"path":"translation"}},{"sampler":1,"target":{"node":157,"path":"rotation"}},{"sampler":2,"target":{"node":180,"path":"translation"}},{"sampler":3,"target":{"node":180,"path":"rotation"}},{"sampler":4,"target":{"node":180,"path":"scale"}},{"sampler":5,"target":{"node":181,"path":"translation"}},{"sampler":6,"target":{"node":181,"path":"rotation"}},{"sampler":7,"target":{"node":181,"path":"scale"}},{"sampler":8,"target":{"node":8,"path":"rotation"}},{"sampler":9,"target":{"node":176,"path":"translation"}},{"sampler":10,"target":{"node":176,"path":"rotation"}},{"sampler":11,"target":{"node":176,"path":"scale"}},{"sampler":12,"target":{"node":4,"path":"rotation"}},{"sampler":13,"target":{"node":191,"path":"translation"}},{"sampler":14,"target":{"node":191,"path":"rotation"}},{"sampler":15,"target":{"node":191,"path":"scale"}},{"sampler":16,"target":{"node":192,"path":"translation"}},{"sampler":17,"target":{"node":192,"path":"rotation"}},{"sampler":18,"target":{"node":192,"path":"scale"}},{"sampler":19,"target":{"node":194,"path":"translation"}},{"sampler":20,"target":{"node":194,"path":"rotation"}},{"sampler":21,"target":{"node":194,"path":"scale"}},{"sampler":22,"target":{"node":193,"path":"translation"}},{"sampler":23,"target":{"node":193,"path":"rotation"}},{"sampler":24,"target":{"node":193,"path":"scale"}},{"sampler":25,"target":{"node":11,"path":"rotation"}},{"sampler":26,"target":{"node":15,"path":"rotation"}},{"sampler":27,"target":{"node":16,"path":"translation"}},{"sampler":28,"target":{"node":16,"path":"rotation"}},{"sampler":29,"target":{"node":16,"path":"scale"}},{"sampler":30,"target":{"node":165,"path":"translation"}},{"sampler":31,"target":{"node":165,"path":"rotation"}},{"sampler":32,"target":{"node":165,"path":"scale"}},{"sampler":33,"target":{"node":166,"path":"translation"}},{"sampler":34,"target":{"node":166,"path":"rotation"}},{"sampler":35,"target":{"node":166,"path":"scale"}},{"sampler":36,"target":{"node":168,"path":"translation"}},{"sampler":37,"target":{"node":168,"path":"rotation"}},{"sampler":38,"target":{"node":168,"path":"scale"}},{"sampler":39,"target":{"node":177,"path":"translation"}},{"sampler":40,"target":{"node":177,"path":"rotation"}},{"sampler":41,"target":{"node":177,"path":"scale"}},{"sampler":42,"target":{"node":12,"path":"translation"}},{"sampler":43,"target":{"node":12,"path":"rotation"}},{"sampler":44,"target":{"node":12,"path":"scale"}},{"sampler":45,"target":{"node":5,"path":"rotation"}},{"sampler":46,"target":{"node":5,"path":"scale"}},{"sampler":47,"target":{"node":9,"path":"translation"}},{"sampler":48,"target":{"node":9,"path":"rotation"}},{"sampler":49,"target":{"node":9,"path":"scale"}},{"sampler":50,"target":{"node":178,"path":"translation"}},{"sampler":51,"target":{"node":178,"path":"rotation"}},{"sampler":52,"target":{"node":178,"path":"scale"}},{"sampler":53,"target":{"node":182,"path":"translation"}},{"sampler":54,"target":{"node":182,"path":"rotation"}},{"sampler":55,"target":{"node":182,"path":"scale"}},{"sampler":56,"target":{"node":183,"path":"translation"}},{"sampler":57,"target":{"node":183,"path":"rotation"}},{"sampler":58,"target":{"node":183,"path":"scale"}},{"sampler":59,"target":{"node":167,"path":"translation"}},{"sampler":60,"target":{"node":167,"path":"rotation"}},{"sampler":61,"target":{"node":167,"path":"scale"}},{"sampler":62,"target":{"node":173,"path":"translation"}},{"sampler":63,"target":{"node":173,"path":"rotation"}},{"sampler":64,"target":{"node":173,"path":"scale"}},{"sampler":65,"target":{"node":174,"path":"translation"}},{"sampler":66,"target":{"node":174,"path":"rotation"}},{"sampler":67,"target":{"node":174,"path":"scale"}},{"sampler":68,"target":{"node":175,"path":"translation"}},{"sampler":69,"target":{"node":175,"path":"rotation"}},{"sampler":70,"target":{"node":175,"path":"scale"}}],"samplers":[{"input":21,"output":22,"interpolation":"LINEAR"},{"input":23,"output":24,"interpolation":"LINEAR"},{"input":25,"output":26,"interpolation":"LINEAR"},{"input":27,"output":28,"interpolation":"LINEAR"},{"input":29,"output":30,"interpolation":"LINEAR"},{"input":31,"output":32,"interpolation":"LINEAR"},{"input":33,"output":34,"interpolation":"LINEAR"},{"input":35,"output":36,"interpolation":"LINEAR"},{"input":37,"output":38,"interpolation":"LINEAR"},{"input":39,"output":40,"interpolation":"LINEAR"},{"input":41,"output":42,"interpolation":"LINEAR"},{"input":43,"output":44,"interpolation":"LINEAR"},{"input":45,"output":46,"interpolation":"LINEAR"},{"input":47,"output":48,"interpolation":"LINEAR"},{"input":49,"output":50,"interpolation":"LINEAR"},{"input":51,"output":52,"interpolation":"LINEAR"},{"input":53,"output":54,"interpolation":"LINEAR"},{"input":55,"output":56,"interpolation":"LINEAR"},{"input":57,"output":58,"interpolation":"LINEAR"},{"input":59,"output":60,"interpolation":"LINEAR"},{"input":61,"output":62,"interpolation":"LINEAR"},{"input":63,"output":64,"interpolation":"LINEAR"},{"input":65,"output":66,"interpolation":"LINEAR"},{"input":67,"output":68,"interpolation":"LINEAR"},{"input":69,"output":70,"interpolation":"LINEAR"},{"input":71,"output":72,"interpolation":"LINEAR"},{"input":73,"output":74,"interpolation":"LINEAR"},{"input":75,"output":76,"interpolation":"LINEAR"},{"input":77,"output":78,"interpolation":"LINEAR"},{"input":79,"output":80,"interpolation":"LINEAR"},{"input":81,"output":82,"interpolation":"LINEAR"},{"input":83,"output":84,"interpolation":"LINEAR"},{"input":85,"output":86,"interpolation":"LINEAR"},{"input":87,"output":88,"interpolation":"LINEAR"},{"input":89,"output":90,"interpolation":"LINEAR"},{"input":91,"output":92,"interpolation":"LINEAR"},{"input":93,"output":94,"interpolation":"LINEAR"},{"input":95,"output":96,"interpolation":"LINEAR"},{"input":97,"output":98,"interpolation":"LINEAR"},{"input":99,"output":100,"interpolation":"LINEAR"},{"input":101,"output":102,"interpolation":"LINEAR"},{"input":103,"output":104,"interpolation":"LINEAR"},{"input":105,"output":106,"interpolation":"LINEAR"},{"input":107,"output":108,"interpolation":"LINEAR"},{"input":109,"output":110,"interpolation":"LINEAR"},{"input":111,"output":112,"interpolation":"LINEAR"},{"input":113,"output":114,"interpolation":"LINEAR"},{"input":115,"output":116,"interpolation":"LINEAR"},{"input":117,"output":118,"interpolation":"LINEAR"},{"input":119,"output":120,"interpolation":"LINEAR"},{"input":121,"output":122,"interpolation":"LINEAR"},{"input":123,"output":124,"interpolation":"LINEAR"},{"input":125,"output":126,"interpolation":"LINEAR"},{"input":127,"output":128,"interpolation":"LINEAR"},{"input":129,"output":130,"interpolation":"LINEAR"},{"input":131,"output":132,"interpolation":"LINEAR"},{"input":133,"output":134,"interpolation":"LINEAR"},{"input":135,"output":136,"interpolation":"LINEAR"},{"input":137,"output":138,"interpolation":"LINEAR"},{"input":139,"output":140,"interpolation":"LINEAR"},{"input":141,"output":142,"interpolation":"LINEAR"},{"input":143,"output":144,"interpolation":"LINEAR"},{"input":145,"output":146,"interpolation":"LINEAR"},{"input":147,"output":148,"interpolation":"LINEAR"},{"input":149,"output":150,"interpolation":"LINEAR"},{"input":151,"output":152,"interpolation":"LINEAR"},{"input":153,"output":154,"interpolation":"LINEAR"},{"input":155,"output":156,"interpolation":"LINEAR"},{"input":157,"output":158,"interpolation":"LINEAR"},{"input":159,"output":160,"interpolation":"LINEAR"},{"input":161,"output":162,"interpolation":"LINEAR"}]},{"name":"c_tire_key","channels":[{"sampler":0,"target":{"node":169,"path":"rotation"}}],"samplers":[{"input":163,"output":164,"interpolation":"LINEAR"}]},{"name":"c_wheel","channels":[{"sampler":0,"target":{"node":164,"path":"translation"}},{"sampler":1,"target":{"node":164,"path":"rotation"}},{"sampler":2,"target":{"node":164,"path":"scale"}},{"sampler":3,"target":{"node":158,"path":"translation"}},{"sampler":4,"target":{"node":158,"path":"rotation"}},{"sampler":5,"target":{"node":158,"path":"scale"}},{"sampler":6,"target":{"node":160,"path":"translation"}},{"sampler":7,"target":{"node":160,"path":"rotation"}},{"sampler":8,"target":{"node":160,"path":"scale"}},{"sampler":9,"target":{"node":161,"path":"translation"}},{"sampler":10,"target":{"node":161,"path":"rotation"}},{"sampler":11,"target":{"node":161,"path":"scale"}},{"sampler":12,"target":{"node":163,"path":"translation"}},{"sampler":13,"target":{"node":163,"path":"rotation"}},{"sampler":14,"target":{"node":163,"path":"scale"}}],"samplers":[{"input":165,"output":166,"interpolation":"LINEAR"},{"input":167,"output":168,"interpolation":"LINEAR"},{"input":169,"output":170,"interpolation":"LINEAR"},{"input":171,"output":172,"interpolation":"LINEAR"},{"input":173,"output":174,"interpolation":"LINEAR"},{"input":175,"output":176,"interpolation":"LINEAR"},{"input":177,"output":178,"interpolation":"LINEAR"},{"input":179,"output":180,"interpolation":"LINEAR"},{"input":181,"output":182,"interpolation":"LINEAR"},{"input":183,"output":184,"interpolation":"LINEAR"},{"input":185,"output":186,"interpolation":"LINEAR"},{"input":187,"output":188,"interpolation":"LINEAR"},{"input":189,"output":190,"interpolation":"LINEAR"},{"input":191,"output":192,"interpolation":"LINEAR"},{"input":193,"output":194,"interpolation":"LINEAR"}]},{"name":"elevator_percent_key","channels":[{"sampler":0,"target":{"node":20,"path":"translation"}},{"sampler":1,"target":{"node":20,"path":"rotation"}},{"sampler":2,"target":{"node":20,"path":"scale"}},{"sampler":3,"target":{"node":198,"path":"translation"}},{"sampler":4,"target":{"node":198,"path":"rotation"}},{"sampler":5,"target":{"node":198,"path":"scale"}}],"samplers":[{"input":195,"output":196,"interpolation":"LINEAR"},{"input":197,"output":198,"interpolation":"LINEAR"},{"input":199,"output":200,"interpolation":"LINEAR"},{"input":201,"output":202,"interpolation":"LINEAR"},{"input":203,"output":204,"interpolation":"LINEAR"},{"input":205,"output":206,"interpolation":"LINEAR"}]},{"name":"l_aileron_percent_key","channels":[{"sampler":0,"target":{"node":37,"path":"translation"}},{"sampler":1,"target":{"node":37,"path":"rotation"}},{"sampler":2,"target":{"node":37,"path":"scale"}},{"sampler":3,"target":{"node":36,"path":"translation"}},{"sampler":4,"target":{"node":36,"path":"rotation"}},{"sampler":5,"target":{"node":36,"path":"scale"}}],"samplers":[{"input":207,"output":208,"interpolation":"LINEAR"},{"input":209,"output":210,"interpolation":"LINEAR"},{"input":211,"output":212,"interpolation":"LINEAR"},{"input":213,"output":214,"interpolation":"LINEAR"},{"input":215,"output":216,"interpolation":"LINEAR"},{"input":217,"output":218,"interpolation":"LINEAR"}]},{"name":"l_flap_percent_key","channels":[{"sampler":0,"target":{"node":53,"path":"translation"}},{"sampler":1,"target":{"node":53,"path":"rotation"}},{"sampler":2,"target":{"node":41,"path":"translation"}},{"sampler":3,"target":{"node":41,"path":"rotation"}},{"sampler":4,"target":{"node":42,"path":"rotation"}},{"sampler":5,"target":{"node":54,"path":"translation"}},{"sampler":6,"target":{"node":54,"path":"rotation"}},{"sampler":7,"target":{"node":54,"path":"scale"}},{"sampler":8,"target":{"node":67,"path":"translation"}},{"sampler":9,"target":{"node":67,"path":"rotation"}},{"sampler":10,"target":{"node":67,"path":"scale"}},{"sampler":11,"target":{"node":68,"path":"rotation"}}],"samplers":[{"input":219,"output":220,"interpolation":"LINEAR"},{"input":221,"output":222,"interpolation":"LINEAR"},{"input":223,"output":224,"interpolation":"LINEAR"},{"input":225,"output":226,"interpolation":"LINEAR"},{"input":227,"output":228,"interpolation":"LINEAR"},{"input":229,"output":230,"interpolation":"LINEAR"},{"input":231,"output":232,"interpolation":"LINEAR"},{"input":233,"output":234,"interpolation":"LINEAR"},{"input":235,"output":236,"interpolation":"LINEAR"},{"input":237,"output":238,"interpolation":"LINEAR"},{"input":239,"output":240,"interpolation":"LINEAR"},{"input":241,"output":242,"interpolation":"LINEAR"}]},{"name":"l_spoiler_key","channels":[{"sampler":0,"target":{"node":47,"path":"translation"}},{"sampler":1,"target":{"node":47,"path":"rotation"}},{"sampler":2,"target":{"node":47,"path":"scale"}},{"sampler":3,"target":{"node":48,"path":"translation"}},{"sampler":4,"target":{"node":48,"path":"rotation"}},{"sampler":5,"target":{"node":48,"path":"scale"}},{"sampler":6,"target":{"node":49,"path":"translation"}},{"sampler":7,"target":{"node":49,"path":"rotation"}},{"sampler":8,"target":{"node":49,"path":"scale"}},{"sampler":9,"target":{"node":45,"path":"translation"}},{"sampler":10,"target":{"node":45,"path":"rotation"}},{"sampler":11,"target":{"node":45,"path":"scale"}},{"sampler":12,"target":{"node":39,"path":"translation"}},{"sampler":13,"target":{"node":39,"path":"rotation"}},{"sampler":14,"target":{"node":39,"path":"scale"}},{"sampler":15,"target":{"node":43,"path":"translation"}},{"sampler":16,"target":{"node":43,"path":"rotation"}},{"sampler":17,"target":{"node":43,"path":"scale"}},{"sampler":18,"target":{"node":44,"path":"translation"}},{"sampler":19,"target":{"node":44,"path":"rotation"}},{"sampler":20,"target":{"node":44,"path":"scale"}},{"sampler":21,"target":{"node":40,"path":"translation"}},{"sampler":22,"target":{"node":40,"path":"rotation"}},{"sampler":23,"target":{"node":40,"path":"scale"}},{"sampler":24,"target":{"node":61,"path":"translation"}},{"sampler":25,"target":{"node":61,"path":"rotation"}},{"sampler":26,"target":{"node":61,"path":"scale"}},{"sampler":27,"target":{"node":62,"path":"translation"}},{"sampler":28,"target":{"node":62,"path":"rotation"}},{"sampler":29,"target":{"node":62,"path":"scale"}},{"sampler":30,"target":{"node":51,"path":"translation"}},{"sampler":31,"target":{"node":51,"path":"rotation"}},{"sampler":32,"target":{"node":51,"path":"scale"}},{"sampler":33,"target":{"node":148,"path":"translation"}},{"sampler":34,"target":{"node":148,"path":"rotation"}},{"sampler":35,"target":{"node":148,"path":"scale"}},{"sampler":36,"target":{"node":149,"path":"translation"}},{"sampler":37,"target":{"node":149,"path":"rotation"}},{"sampler":38,"target":{"node":149,"path":"scale"}},{"sampler":39,"target":{"node":147,"path":"translation"}},{"sampler":40,"target":{"node":147,"path":"rotation"}},{"sampler":41,"target":{"node":147,"path":"scale"}},{"sampler":42,"target":{"node":145,"path":"translation"}},{"sampler":43,"target":{"node":145,"path":"rotation"}},{"sampler":44,"target":{"node":145,"path":"scale"}},{"sampler":45,"target":{"node":150,"path":"translation"}},{"sampler":46,"target":{"node":150,"path":"rotation"}},{"sampler":47,"target":{"node":150,"path":"scale"}},{"sampler":48,"target":{"node":151,"path":"translation"}},{"sampler":49,"target":{"node":151,"path":"rotation"}},{"sampler":50,"target":{"node":151,"path":"scale"}},{"sampler":51,"target":{"node":146,"path":"translation"}},{"sampler":52,"target":{"node":146,"path":"rotation"}},{"sampler":53,"target":{"node":146,"path":"scale"}},{"sampler":54,"target":{"node":124,"path":"translation"}},{"sampler":55,"target":{"node":124,"path":"rotation"}},{"sampler":56,"target":{"node":124,"path":"scale"}},{"sampler":57,"target":{"node":125,"path":"translation"}},{"sampler":58,"target":{"node":125,"path":"rotation"}},{"sampler":59,"target":{"node":125,"path":"scale"}}],"samplers":[{"input":243,"output":244,"interpolation":"LINEAR"},{"input":245,"output":246,"interpolation":"LINEAR"},{"input":247,"output":248,"interpolation":"LINEAR"},{"input":249,"output":250,"interpolation":"LINEAR"},{"input":251,"output":252,"interpolation":"LINEAR"},{"input":253,"output":254,"interpolation":"LINEAR"},{"input":255,"output":256,"interpolation":"LINEAR"},{"input":257,"output":258,"interpolation":"LINEAR"},{"input":259,"output":260,"interpolation":"LINEAR"},{"input":261,"output":262,"interpolation":"LINEAR"},{"input":263,"output":264,"interpolation":"LINEAR"},{"input":265,"output":266,"interpolation":"LINEAR"},{"input":267,"output":268,"interpolation":"LINEAR"},{"input":269,"output":270,"interpolation":"LINEAR"},{"input":271,"output":272,"interpolation":"LINEAR"},{"input":273,"output":274,"interpolation":"LINEAR"},{"input":275,"output":276,"interpolation":"LINEAR"},{"input":277,"output":278,"interpolation":"LINEAR"},{"input":279,"output":280,"interpolation":"LINEAR"},{"input":281,"output":282,"interpolation":"LINEAR"},{"input":283,"output":284,"interpolation":"LINEAR"},{"input":285,"output":286,"interpolation":"LINEAR"},{"input":287,"output":288,"interpolation":"LINEAR"},{"input":289,"output":290,"interpolation":"LINEAR"},{"input":291,"output":292,"interpolation":"LINEAR"},{"input":293,"output":294,"interpolation":"LINEAR"},{"input":295,"output":296,"interpolation":"LINEAR"},{"input":297,"output":298,"interpolation":"LINEAR"},{"input":299,"output":300,"interpolation":"LINEAR"},{"input":301,"output":302,"interpolation":"LINEAR"},{"input":303,"output":304,"interpolation":"LINEAR"},{"input":305,"output":306,"interpolation":"LINEAR"},{"input":307,"output":308,"interpolation":"LINEAR"},{"input":309,"output":310,"interpolation":"LINEAR"},{"input":311,"output":312,"interpolation":"LINEAR"},{"input":313,"output":314,"interpolation":"LINEAR"},{"input":315,"output":316,"interpolation":"LINEAR"},{"input":317,"output":318,"interpolation":"LINEAR"},{"input":319,"output":320,"interpolation":"LINEAR"},{"input":321,"output":322,"interpolation":"LINEAR"},{"input":323,"output":324,"interpolation":"LINEAR"},{"input":325,"output":326,"interpolation":"LINEAR"},{"input":327,"output":328,"interpolation":"LINEAR"},{"input":329,"output":330,"interpolation":"LINEAR"},{"input":331,"output":332,"interpolation":"LINEAR"},{"input":333,"output":334,"interpolation":"LINEAR"},{"input":335,"output":336,"interpolation":"LINEAR"},{"input":337,"output":338,"interpolation":"LINEAR"},{"input":339,"output":340,"interpolation":"LINEAR"},{"input":341,"output":342,"interpolation":"LINEAR"},{"input":343,"output":344,"interpolation":"LINEAR"},{"input":345,"output":346,"interpolation":"LINEAR"},{"input":347,"output":348,"interpolation":"LINEAR"},{"input":349,"output":350,"interpolation":"LINEAR"},{"input":351,"output":352,"interpolation":"LINEAR"},{"input":353,"output":354,"interpolation":"LINEAR"},{"input":355,"output":356,"interpolation":"LINEAR"},{"input":357,"output":358,"interpolation":"LINEAR"},{"input":359,"output":360,"interpolation":"LINEAR"},{"input":361,"output":362,"interpolation":"LINEAR"}]},{"name":"l_tire_key","channels":[{"sampler":0,"target":{"node":112,"path":"translation"}},{"sampler":1,"target":{"node":112,"path":"rotation"}},{"sampler":2,"target":{"node":112,"path":"scale"}},{"sampler":3,"target":{"node":115,"path":"translation"}},{"sampler":4,"target":{"node":115,"path":"rotation"}},{"sampler":5,"target":{"node":115,"path":"scale"}}],"samplers":[{"input":363,"output":364,"interpolation":"LINEAR"},{"input":365,"output":366,"interpolation":"LINEAR"},{"input":367,"output":368,"interpolation":"LINEAR"},{"input":369,"output":370,"interpolation":"LINEAR"},{"input":371,"output":372,"interpolation":"LINEAR"},{"input":373,"output":374,"interpolation":"LINEAR"}]},{"name":"rudder_percent_key","channels":[{"sampler":0,"target":{"node":1,"path":"translation"}},{"sampler":1,"target":{"node":1,"path":"rotation"}},{"sampler":2,"target":{"node":1,"path":"scale"}}],"samplers":[{"input":375,"output":376,"interpolation":"LINEAR"},{"input":377,"output":378,"interpolation":"LINEAR"},{"input":379,"output":380,"interpolation":"LINEAR"}]},{"name":"thrust_rev_1","channels":[{"sampler":0,"target":{"node":140,"path":"translation"}},{"sampler":1,"target":{"node":140,"path":"rotation"}},{"sampler":2,"target":{"node":140,"path":"scale"}}],"samplers":[{"input":381,"output":382,"interpolation":"LINEAR"},{"input":383,"output":384,"interpolation":"LINEAR"},{"input":385,"output":386,"interpolation":"LINEAR"}]},{"name":"trimtab_elevator_key","channels":[{"sampler":0,"target":{"node":19,"path":"translation"}},{"sampler":1,"target":{"node":19,"path":"rotation"}},{"sampler":2,"target":{"node":19,"path":"scale"}},{"sampler":3,"target":{"node":197,"path":"translation"}},{"sampler":4,"target":{"node":197,"path":"rotation"}},{"sampler":5,"target":{"node":197,"path":"scale"}}],"samplers":[{"input":387,"output":388,"interpolation":"LINEAR"},{"input":389,"output":390,"interpolation":"LINEAR"},{"input":391,"output":392,"interpolation":"LINEAR"},{"input":393,"output":394,"interpolation":"LINEAR"},{"input":395,"output":396,"interpolation":"LINEAR"},{"input":397,"output":398,"interpolation":"LINEAR"}]},{"name":"l_gear","channels":[{"sampler":0,"target":{"node":70,"path":"translation"}},{"sampler":1,"target":{"node":70,"path":"rotation"}},{"sampler":2,"target":{"node":70,"path":"scale"}},{"sampler":3,"target":{"node":71,"path":"translation"}},{"sampler":4,"target":{"node":71,"path":"rotation"}},{"sampler":5,"target":{"node":71,"path":"scale"}},{"sampler":6,"target":{"node":72,"path":"translation"}},{"sampler":7,"target":{"node":72,"path":"rotation"}},{"sampler":8,"target":{"node":72,"path":"scale"}},{"sampler":9,"target":{"node":73,"path":"translation"}},{"sampler":10,"target":{"node":73,"path":"rotation"}},{"sampler":11,"target":{"node":73,"path":"scale"}},{"sampler":12,"target":{"node":74,"path":"translation"}},{"sampler":13,"target":{"node":74,"path":"rotation"}},{"sampler":14,"target":{"node":74,"path":"scale"}},{"sampler":15,"target":{"node":76,"path":"translation"}},{"sampler":16,"target":{"node":76,"path":"rotation"}},{"sampler":17,"target":{"node":76,"path":"scale"}},{"sampler":18,"target":{"node":79,"path":"translation"}},{"sampler":19,"target":{"node":79,"path":"rotation"}},{"sampler":20,"target":{"node":79,"path":"scale"}},{"sampler":21,"target":{"node":80,"path":"translation"}},{"sampler":22,"target":{"node":80,"path":"rotation"}},{"sampler":23,"target":{"node":80,"path":"scale"}},{"sampler":24,"target":{"node":81,"path":"translation"}},{"sampler":25,"target":{"node":81,"path":"rotation"}},{"sampler":26,"target":{"node":81,"path":"scale"}},{"sampler":27,"target":{"node":82,"path":"translation"}},{"sampler":28,"target":{"node":82,"path":"rotation"}},{"sampler":29,"target":{"node":82,"path":"scale"}},{"sampler":30,"target":{"node":83,"path":"translation"}},{"sampler":31,"target":{"node":83,"path":"rotation"}},{"sampler":32,"target":{"node":83,"path":"scale"}},{"sampler":33,"target":{"node":84,"path":"translation"}},{"sampler":34,"target":{"node":84,"path":"rotation"}},{"sampler":35,"target":{"node":84,"path":"scale"}},{"sampler":36,"target":{"node":85,"path":"translation"}},{"sampler":37,"target":{"node":85,"path":"rotation"}},{"sampler":38,"target":{"node":85,"path":"scale"}},{"sampler":39,"target":{"node":89,"path":"translation"}},{"sampler":40,"target":{"node":89,"path":"rotation"}},{"sampler":41,"target":{"node":89,"path":"scale"}},{"sampler":42,"target":{"node":90,"path":"translation"}},{"sampler":43,"target":{"node":90,"path":"rotation"}},{"sampler":44,"target":{"node":90,"path":"scale"}},{"sampler":45,"target":{"node":91,"path":"translation"}},{"sampler":46,"target":{"node":91,"path":"rotation"}},{"sampler":47,"target":{"node":91,"path":"scale"}},{"sampler":48,"target":{"node":92,"path":"translation"}},{"sampler":49,"target":{"node":92,"path":"rotation"}},{"sampler":50,"target":{"node":92,"path":"scale"}},{"sampler":51,"target":{"node":95,"path":"translation"}},{"sampler":52,"target":{"node":95,"path":"rotation"}},{"sampler":53,"target":{"node":95,"path":"scale"}},{"sampler":54,"target":{"node":96,"path":"translation"}},{"sampler":55,"target":{"node":96,"path":"rotation"}},{"sampler":56,"target":{"node":96,"path":"scale"}},{"sampler":57,"target":{"node":100,"path":"translation"}},{"sampler":58,"target":{"node":100,"path":"rotation"}},{"sampler":59,"target":{"node":100,"path":"scale"}},{"sampler":60,"target":{"node":101,"path":"translation"}},{"sampler":61,"target":{"node":101,"path":"rotation"}},{"sampler":62,"target":{"node":101,"path":"scale"}},{"sampler":63,"target":{"node":104,"path":"translation"}},{"sampler":64,"target":{"node":104,"path":"rotation"}},{"sampler":65,"target":{"node":104,"path":"scale"}},{"sampler":66,"target":{"node":105,"path":"translation"}},{"sampler":67,"target":{"node":105,"path":"rotation"}},{"sampler":68,"target":{"node":105,"path":"scale"}},{"sampler":69,"target":{"node":106,"path":"translation"}},{"sampler":70,"target":{"node":106,"path":"rotation"}},{"sampler":71,"target":{"node":106,"path":"scale"}},{"sampler":72,"target":{"node":111,"path":"translation"}},{"sampler":73,"target":{"node":111,"path":"rotation"}},{"sampler":74,"target":{"node":111,"path":"scale"}},{"sampler":75,"target":{"node":120,"path":"translation"}},{"sampler":76,"target":{"node":120,"path":"rotation"}},{"sampler":77,"target":{"node":120,"path":"scale"}},{"sampler":78,"target":{"node":122,"path":"translation"}},{"sampler":79,"target":{"node":122,"path":"rotation"}},{"sampler":80,"target":{"node":122,"path":"scale"}},{"sampler":81,"target":{"node":133,"path":"translation"}},{"sampler":82,"target":{"node":133,"path":"rotation"}},{"sampler":83,"target":{"node":133,"path":"scale"}},{"sampler":84,"target":{"node":131,"path":"translation"}},{"sampler":85,"target":{"node":131,"path":"rotation"}},{"sampler":86,"target":{"node":131,"path":"scale"}},{"sampler":87,"target":{"node":129,"path":"translation"}},{"sampler":88,"target":{"node":129,"path":"rotation"}},{"sampler":89,"target":{"node":129,"path":"scale"}},{"sampler":90,"target":{"node":126,"path":"translation"}},{"sampler":91,"target":{"node":126,"path":"rotation"}},{"sampler":92,"target":{"node":126,"path":"scale"}},{"sampler":93,"target":{"node":127,"path":"translation"}},{"sampler":94,"target":{"node":127,"path":"rotation"}},{"sampler":95,"target":{"node":127,"path":"scale"}},{"sampler":96,"target":{"node":154,"path":"translation"}},{"sampler":97,"target":{"node":154,"path":"rotation"}},{"sampler":98,"target":{"node":154,"path":"scale"}},{"sampler":99,"target":{"node":155,"path":"translation"}},{"sampler":100,"target":{"node":155,"path":"rotation"}},{"sampler":101,"target":{"node":155,"path":"scale"}},{"sampler":102,"target":{"node":153,"path":"translation"}},{"sampler":103,"target":{"node":153,"path":"rotation"}},{"sampler":104,"target":{"node":153,"path":"scale"}}],"samplers":[{"input":399,"output":400,"interpolation":"LINEAR"},{"input":401,"output":402,"interpolation":"LINEAR"},{"input":403,"output":404,"interpolation":"LINEAR"},{"input":405,"output":406,"interpolation":"LINEAR"},{"input":407,"output":408,"interpolation":"LINEAR"},{"input":409,"output":410,"interpolation":"LINEAR"},{"input":411,"output":412,"interpolation":"LINEAR"},{"input":413,"output":414,"interpolation":"LINEAR"},{"input":415,"output":416,"interpolation":"LINEAR"},{"input":417,"output":418,"interpolation":"LINEAR"},{"input":419,"output":420,"interpolation":"LINEAR"},{"input":421,"output":422,"interpolation":"LINEAR"},{"input":423,"output":424,"interpolation":"LINEAR"},{"input":425,"output":426,"interpolation":"LINEAR"},{"input":427,"output":428,"interpolation":"LINEAR"},{"input":429,"output":430,"interpolation":"LINEAR"},{"input":431,"output":432,"interpolation":"LINEAR"},{"input":433,"output":434,"interpolation":"LINEAR"},{"input":435,"output":436,"interpolation":"LINEAR"},{"input":437,"output":438,"interpolation":"LINEAR"},{"input":439,"output":440,"interpolation":"LINEAR"},{"input":441,"output":442,"interpolation":"LINEAR"},{"input":443,"output":444,"interpolation":"LINEAR"},{"input":445,"output":446,"interpolation":"LINEAR"},{"input":447,"output":448,"interpolation":"LINEAR"},{"input":449,"output":450,"interpolation":"LINEAR"},{"input":451,"output":452,"interpolation":"LINEAR"},{"input":453,"output":454,"interpolation":"LINEAR"},{"input":455,"output":456,"interpolation":"LINEAR"},{"input":457,"output":458,"interpolation":"LINEAR"},{"input":459,"output":460,"interpolation":"LINEAR"},{"input":461,"output":462,"interpolation":"LINEAR"},{"input":463,"output":464,"interpolation":"LINEAR"},{"input":465,"output":466,"interpolation":"LINEAR"},{"input":467,"output":468,"interpolation":"LINEAR"},{"input":469,"output":470,"interpolation":"LINEAR"},{"input":471,"output":472,"interpolation":"LINEAR"},{"input":473,"output":474,"interpolation":"LINEAR"},{"input":475,"output":476,"interpolation":"LINEAR"},{"input":477,"output":478,"interpolation":"LINEAR"},{"input":479,"output":480,"interpolation":"LINEAR"},{"input":481,"output":482,"interpolation":"LINEAR"},{"input":483,"output":484,"interpolation":"LINEAR"},{"input":485,"output":486,"interpolation":"LINEAR"},{"input":487,"output":488,"interpolation":"LINEAR"},{"input":489,"output":490,"interpolation":"LINEAR"},{"input":491,"output":492,"interpolation":"LINEAR"},{"input":493,"output":494,"interpolation":"LINEAR"},{"input":495,"output":496,"interpolation":"LINEAR"},{"input":497,"output":498,"interpolation":"LINEAR"},{"input":499,"output":500,"interpolation":"LINEAR"},{"input":501,"output":502,"interpolation":"LINEAR"},{"input":503,"output":504,"interpolation":"LINEAR"},{"input":505,"output":506,"interpolation":"LINEAR"},{"input":507,"output":508,"interpolation":"LINEAR"},{"input":509,"output":510,"interpolation":"LINEAR"},{"input":511,"output":512,"interpolation":"LINEAR"},{"input":513,"output":514,"interpolation":"LINEAR"},{"input":515,"output":516,"interpolation":"LINEAR"},{"input":517,"output":518,"interpolation":"LINEAR"},{"input":519,"output":520,"interpolation":"LINEAR"},{"input":521,"output":522,"interpolation":"LINEAR"},{"input":523,"output":524,"interpolation":"LINEAR"},{"input":525,"output":526,"interpolation":"LINEAR"},{"input":527,"output":528,"interpolation":"LINEAR"},{"input":529,"output":530,"interpolation":"LINEAR"},{"input":531,"output":532,"interpolation":"LINEAR"},{"input":533,"output":534,"interpolation":"LINEAR"},{"input":535,"output":536,"interpolation":"LINEAR"},{"input":537,"output":538,"interpolation":"LINEAR"},{"input":539,"output":540,"interpolation":"LINEAR"},{"input":541,"output":542,"interpolation":"LINEAR"},{"input":543,"output":544,"interpolation":"LINEAR"},{"input":545,"output":546,"interpolation":"LINEAR"},{"input":547,"output":548,"interpolation":"LINEAR"},{"input":549,"output":550,"interpolation":"LINEAR"},{"input":551,"output":552,"interpolation":"LINEAR"},{"input":553,"output":554,"interpolation":"LINEAR"},{"input":555,"output":556,"interpolation":"LINEAR"},{"input":557,"output":558,"interpolation":"LINEAR"},{"input":559,"output":560,"interpolation":"LINEAR"},{"input":561,"output":562,"interpolation":"LINEAR"},{"input":563,"output":564,"interpolation":"LINEAR"},{"input":565,"output":566,"interpolation":"LINEAR"},{"input":567,"output":568,"interpolation":"LINEAR"},{"input":569,"output":570,"interpolation":"LINEAR"},{"input":571,"output":572,"interpolation":"LINEAR"},{"input":573,"output":574,"interpolation":"LINEAR"},{"input":575,"output":576,"interpolation":"LINEAR"},{"input":577,"output":578,"interpolation":"LINEAR"},{"input":579,"output":580,"interpolation":"LINEAR"},{"input":581,"output":582,"interpolation":"LINEAR"},{"input":583,"output":584,"interpolation":"LINEAR"},{"input":585,"output":586,"interpolation":"LINEAR"},{"input":587,"output":588,"interpolation":"LINEAR"},{"input":589,"output":590,"interpolation":"LINEAR"},{"input":591,"output":592,"interpolation":"LINEAR"},{"input":593,"output":594,"interpolation":"LINEAR"},{"input":595,"output":596,"interpolation":"LINEAR"},{"input":597,"output":598,"interpolation":"LINEAR"},{"input":599,"output":600,"interpolation":"LINEAR"},{"input":601,"output":602,"interpolation":"LINEAR"},{"input":603,"output":604,"interpolation":"LINEAR"},{"input":605,"output":606,"interpolation":"LINEAR"},{"input":607,"output":608,"interpolation":"LINEAR"}]},{"name":"N1_1_Anim","channels":[{"sampler":0,"target":{"node":136,"path":"translation"}},{"sampler":1,"target":{"node":136,"path":"rotation"}},{"sampler":2,"target":{"node":136,"path":"scale"}}],"samplers":[{"input":609,"output":610,"interpolation":"LINEAR"},{"input":611,"output":612,"interpolation":"LINEAR"},{"input":613,"output":614,"interpolation":"LINEAR"}]},{"name":"r_aileron_percent_key","channels":[{"sampler":0,"target":{"node":257,"path":"translation"}},{"sampler":1,"target":{"node":257,"path":"rotation"}},{"sampler":2,"target":{"node":257,"path":"scale"}},{"sampler":3,"target":{"node":256,"path":"translation"}},{"sampler":4,"target":{"node":256,"path":"rotation"}},{"sampler":5,"target":{"node":256,"path":"scale"}}],"samplers":[{"input":615,"output":616,"interpolation":"LINEAR"},{"input":617,"output":618,"interpolation":"LINEAR"},{"input":619,"output":620,"interpolation":"LINEAR"},{"input":621,"output":622,"interpolation":"LINEAR"},{"input":623,"output":624,"interpolation":"LINEAR"},{"input":625,"output":626,"interpolation":"LINEAR"}]},{"name":"r_flap_percent_key","channels":[{"sampler":0,"target":{"node":222,"path":"translation"}},{"sampler":1,"target":{"node":222,"path":"rotation"}},{"sampler":2,"target":{"node":222,"path":"scale"}},{"sampler":3,"target":{"node":238,"path":"translation"}},{"sampler":4,"target":{"node":238,"path":"rotation"}},{"sampler":5,"target":{"node":247,"path":"translation"}},{"sampler":6,"target":{"node":247,"path":"rotation"}},{"sampler":7,"target":{"node":223,"path":"rotation"}},{"sampler":8,"target":{"node":239,"path":"translation"}},{"sampler":9,"target":{"node":239,"path":"rotation"}},{"sampler":10,"target":{"node":239,"path":"scale"}},{"sampler":11,"target":{"node":248,"path":"rotation"}}],"samplers":[{"input":627,"output":628,"interpolation":"LINEAR"},{"input":629,"output":630,"interpolation":"LINEAR"},{"input":631,"output":632,"interpolation":"LINEAR"},{"input":633,"output":634,"interpolation":"LINEAR"},{"input":635,"output":636,"interpolation":"LINEAR"},{"input":637,"output":638,"interpolation":"LINEAR"},{"input":639,"output":640,"interpolation":"LINEAR"},{"input":641,"output":642,"interpolation":"LINEAR"},{"input":643,"output":644,"interpolation":"LINEAR"},{"input":645,"output":646,"interpolation":"LINEAR"},{"input":647,"output":648,"interpolation":"LINEAR"},{"input":649,"output":650,"interpolation":"LINEAR"}]},{"name":"r_gear","channels":[{"sampler":0,"target":{"node":276,"path":"translation"}},{"sampler":1,"target":{"node":276,"path":"rotation"}},{"sampler":2,"target":{"node":276,"path":"scale"}},{"sampler":3,"target":{"node":277,"path":"translation"}},{"sampler":4,"target":{"node":277,"path":"rotation"}},{"sampler":5,"target":{"node":277,"path":"scale"}},{"sampler":6,"target":{"node":281,"path":"translation"}},{"sampler":7,"target":{"node":281,"path":"rotation"}},{"sampler":8,"target":{"node":281,"path":"scale"}},{"sampler":9,"target":{"node":284,"path":"translation"}},{"sampler":10,"target":{"node":284,"path":"rotation"}},{"sampler":11,"target":{"node":284,"path":"scale"}},{"sampler":12,"target":{"node":286,"path":"translation"}},{"sampler":13,"target":{"node":286,"path":"rotation"}},{"sampler":14,"target":{"node":286,"path":"scale"}},{"sampler":15,"target":{"node":288,"path":"translation"}},{"sampler":16,"target":{"node":288,"path":"rotation"}},{"sampler":17,"target":{"node":288,"path":"scale"}},{"sampler":18,"target":{"node":289,"path":"translation"}},{"sampler":19,"target":{"node":289,"path":"rotation"}},{"sampler":20,"target":{"node":289,"path":"scale"}},{"sampler":21,"target":{"node":303,"path":"translation"}},{"sampler":22,"target":{"node":303,"path":"rotation"}},{"sampler":23,"target":{"node":303,"path":"scale"}},{"sampler":24,"target":{"node":304,"path":"translation"}},{"sampler":25,"target":{"node":304,"path":"rotation"}},{"sampler":26,"target":{"node":304,"path":"scale"}},{"sampler":27,"target":{"node":305,"path":"translation"}},{"sampler":28,"target":{"node":305,"path":"rotation"}},{"sampler":29,"target":{"node":305,"path":"scale"}},{"sampler":30,"target":{"node":306,"path":"translation"}},{"sampler":31,"target":{"node":306,"path":"rotation"}},{"sampler":32,"target":{"node":306,"path":"scale"}},{"sampler":33,"target":{"node":307,"path":"translation"}},{"sampler":34,"target":{"node":307,"path":"rotation"}},{"sampler":35,"target":{"node":307,"path":"scale"}},{"sampler":36,"target":{"node":308,"path":"translation"}},{"sampler":37,"target":{"node":308,"path":"rotation"}},{"sampler":38,"target":{"node":308,"path":"scale"}},{"sampler":39,"target":{"node":311,"path":"translation"}},{"sampler":40,"target":{"node":311,"path":"rotation"}},{"sampler":41,"target":{"node":311,"path":"scale"}},{"sampler":42,"target":{"node":312,"path":"translation"}},{"sampler":43,"target":{"node":312,"path":"rotation"}},{"sampler":44,"target":{"node":312,"path":"scale"}},{"sampler":45,"target":{"node":313,"path":"translation"}},{"sampler":46,"target":{"node":313,"path":"rotation"}},{"sampler":47,"target":{"node":313,"path":"scale"}},{"sampler":48,"target":{"node":315,"path":"translation"}},{"sampler":49,"target":{"node":315,"path":"rotation"}},{"sampler":50,"target":{"node":315,"path":"scale"}},{"sampler":51,"target":{"node":318,"path":"translation"}},{"sampler":52,"target":{"node":318,"path":"rotation"}},{"sampler":53,"target":{"node":318,"path":"scale"}},{"sampler":54,"target":{"node":319,"path":"translation"}},{"sampler":55,"target":{"node":319,"path":"rotation"}},{"sampler":56,"target":{"node":319,"path":"scale"}},{"sampler":57,"target":{"node":320,"path":"translation"}},{"sampler":58,"target":{"node":320,"path":"rotation"}},{"sampler":59,"target":{"node":320,"path":"scale"}},{"sampler":60,"target":{"node":321,"path":"translation"}},{"sampler":61,"target":{"node":321,"path":"rotation"}},{"sampler":62,"target":{"node":321,"path":"scale"}},{"sampler":63,"target":{"node":322,"path":"translation"}},{"sampler":64,"target":{"node":322,"path":"rotation"}},{"sampler":65,"target":{"node":322,"path":"scale"}},{"sampler":66,"target":{"node":323,"path":"translation"}},{"sampler":67,"target":{"node":323,"path":"rotation"}},{"sampler":68,"target":{"node":323,"path":"scale"}},{"sampler":69,"target":{"node":324,"path":"translation"}},{"sampler":70,"target":{"node":324,"path":"rotation"}},{"sampler":71,"target":{"node":324,"path":"scale"}},{"sampler":72,"target":{"node":205,"path":"translation"}},{"sampler":73,"target":{"node":205,"path":"rotation"}},{"sampler":74,"target":{"node":205,"path":"scale"}},{"sampler":75,"target":{"node":225,"path":"translation"}},{"sampler":76,"target":{"node":225,"path":"rotation"}},{"sampler":77,"target":{"node":225,"path":"scale"}},{"sampler":78,"target":{"node":207,"path":"translation"}},{"sampler":79,"target":{"node":207,"path":"rotation"}},{"sampler":80,"target":{"node":207,"path":"scale"}},{"sampler":81,"target":{"node":226,"path":"translation"}},{"sampler":82,"target":{"node":226,"path":"rotation"}},{"sampler":83,"target":{"node":226,"path":"scale"}},{"sampler":84,"target":{"node":274,"path":"translation"}},{"sampler":85,"target":{"node":274,"path":"rotation"}},{"sampler":86,"target":{"node":274,"path":"scale"}},{"sampler":87,"target":{"node":279,"path":"translation"}},{"sampler":88,"target":{"node":279,"path":"rotation"}},{"sampler":89,"target":{"node":279,"path":"scale"}},{"sampler":90,"target":{"node":282,"path":"translation"}},{"sampler":91,"target":{"node":282,"path":"rotation"}},{"sampler":92,"target":{"node":282,"path":"scale"}},{"sampler":93,"target":{"node":331,"path":"translation"}},{"sampler":94,"target":{"node":331,"path":"rotation"}},{"sampler":95,"target":{"node":331,"path":"scale"}},{"sampler":96,"target":{"node":332,"path":"translation"}},{"sampler":97,"target":{"node":332,"path":"rotation"}},{"sampler":98,"target":{"node":332,"path":"scale"}},{"sampler":99,"target":{"node":196,"path":"translation"}},{"sampler":100,"target":{"node":196,"path":"rotation"}},{"sampler":101,"target":{"node":196,"path":"scale"}}],"samplers":[{"input":651,"output":652,"interpolation":"LINEAR"},{"input":653,"output":654,"interpolation":"LINEAR"},{"input":655,"output":656,"interpolation":"LINEAR"},{"input":657,"output":658,"interpolation":"LINEAR"},{"input":659,"output":660,"interpolation":"LINEAR"},{"input":661,"output":662,"interpolation":"LINEAR"},{"input":663,"output":664,"interpolation":"LINEAR"},{"input":665,"output":666,"interpolation":"LINEAR"},{"input":667,"output":668,"interpolation":"LINEAR"},{"input":669,"output":670,"interpolation":"LINEAR"},{"input":671,"output":672,"interpolation":"LINEAR"},{"input":673,"output":674,"interpolation":"LINEAR"},{"input":675,"output":676,"interpolation":"LINEAR"},{"input":677,"output":678,"interpolation":"LINEAR"},{"input":679,"output":680,"interpolation":"LINEAR"},{"input":681,"output":682,"interpolation":"LINEAR"},{"input":683,"output":684,"interpolation":"LINEAR"},{"input":685,"output":686,"interpolation":"LINEAR"},{"input":687,"output":688,"interpolation":"LINEAR"},{"input":689,"output":690,"interpolation":"LINEAR"},{"input":691,"output":692,"interpolation":"LINEAR"},{"input":693,"output":694,"interpolation":"LINEAR"},{"input":695,"output":696,"interpolation":"LINEAR"},{"input":697,"output":698,"interpolation":"LINEAR"},{"input":699,"output":700,"interpolation":"LINEAR"},{"input":701,"output":702,"interpolation":"LINEAR"},{"input":703,"output":704,"interpolation":"LINEAR"},{"input":705,"output":706,"interpolation":"LINEAR"},{"input":707,"output":708,"interpolation":"LINEAR"},{"input":709,"output":710,"interpolation":"LINEAR"},{"input":711,"output":712,"interpolation":"LINEAR"},{"input":713,"output":714,"interpolation":"LINEAR"},{"input":715,"output":716,"interpolation":"LINEAR"},{"input":717,"output":718,"interpolation":"LINEAR"},{"input":719,"output":720,"interpolation":"LINEAR"},{"input":721,"output":722,"interpolation":"LINEAR"},{"input":723,"output":724,"interpolation":"LINEAR"},{"input":725,"output":726,"interpolation":"LINEAR"},{"input":727,"output":728,"interpolation":"LINEAR"},{"input":729,"output":730,"interpolation":"LINEAR"},{"input":731,"output":732,"interpolation":"LINEAR"},{"input":733,"output":734,"interpolation":"LINEAR"},{"input":735,"output":736,"interpolation":"LINEAR"},{"input":737,"output":738,"interpolation":"LINEAR"},{"input":739,"output":740,"interpolation":"LINEAR"},{"input":741,"output":742,"interpolation":"LINEAR"},{"input":743,"output":744,"interpolation":"LINEAR"},{"input":745,"output":746,"interpolation":"LINEAR"},{"input":747,"output":748,"interpolation":"LINEAR"},{"input":749,"output":750,"interpolation":"LINEAR"},{"input":751,"output":752,"interpolation":"LINEAR"},{"input":753,"output":754,"interpolation":"LINEAR"},{"input":755,"output":756,"interpolation":"LINEAR"},{"input":757,"output":758,"interpolation":"LINEAR"},{"input":759,"output":760,"interpolation":"LINEAR"},{"input":761,"output":762,"interpolation":"LINEAR"},{"input":763,"output":764,"interpolation":"LINEAR"},{"input":765,"output":766,"interpolation":"LINEAR"},{"input":767,"output":768,"interpolation":"LINEAR"},{"input":769,"output":770,"interpolation":"LINEAR"},{"input":771,"output":772,"interpolation":"LINEAR"},{"input":773,"output":774,"interpolation":"LINEAR"},{"input":775,"output":776,"interpolation":"LINEAR"},{"input":777,"output":778,"interpolation":"LINEAR"},{"input":779,"output":780,"interpolation":"LINEAR"},{"input":781,"output":782,"interpolation":"LINEAR"},{"input":783,"output":784,"interpolation":"LINEAR"},{"input":785,"output":786,"interpolation":"LINEAR"},{"input":787,"output":788,"interpolation":"LINEAR"},{"input":789,"output":790,"interpolation":"LINEAR"},{"input":791,"output":792,"interpolation":"LINEAR"},{"input":793,"output":794,"interpolation":"LINEAR"},{"input":795,"output":796,"interpolation":"LINEAR"},{"input":797,"output":798,"interpolation":"LINEAR"},{"input":799,"output":800,"interpolation":"LINEAR"},{"input":801,"output":802,"interpolation":"LINEAR"},{"input":803,"output":804,"interpolation":"LINEAR"},{"input":805,"output":806,"interpolation":"LINEAR"},{"input":807,"output":808,"interpolation":"LINEAR"},{"input":809,"output":810,"interpolation":"LINEAR"},{"input":811,"output":812,"interpolation":"LINEAR"},{"input":813,"output":814,"interpolation":"LINEAR"},{"input":815,"output":816,"interpolation":"LINEAR"},{"input":817,"output":818,"interpolation":"LINEAR"},{"input":819,"output":820,"interpolation":"LINEAR"},{"input":821,"output":822,"interpolation":"LINEAR"},{"input":823,"output":824,"interpolation":"LINEAR"},{"input":825,"output":826,"interpolation":"LINEAR"},{"input":827,"output":828,"interpolation":"LINEAR"},{"input":829,"output":830,"interpolation":"LINEAR"},{"input":831,"output":832,"interpolation":"LINEAR"},{"input":833,"output":834,"interpolation":"LINEAR"},{"input":835,"output":836,"interpolation":"LINEAR"},{"input":837,"output":838,"interpolation":"LINEAR"},{"input":839,"output":840,"interpolation":"LINEAR"},{"input":841,"output":842,"interpolation":"LINEAR"},{"input":843,"output":844,"interpolation":"LINEAR"},{"input":845,"output":846,"interpolation":"LINEAR"},{"input":847,"output":848,"interpolation":"LINEAR"},{"input":849,"output":850,"interpolation":"LINEAR"},{"input":851,"output":852,"interpolation":"LINEAR"},{"input":853,"output":854,"interpolation":"LINEAR"}]},{"name":"r_spoiler_key","channels":[{"sampler":0,"target":{"node":228,"path":"translation"}},{"sampler":1,"target":{"node":228,"path":"rotation"}},{"sampler":2,"target":{"node":228,"path":"scale"}},{"sampler":3,"target":{"node":229,"path":"translation"}},{"sampler":4,"target":{"node":229,"path":"rotation"}},{"sampler":5,"target":{"node":229,"path":"scale"}},{"sampler":6,"target":{"node":230,"path":"translation"}},{"sampler":7,"target":{"node":230,"path":"rotation"}},{"sampler":8,"target":{"node":230,"path":"scale"}},{"sampler":9,"target":{"node":231,"path":"translation"}},{"sampler":10,"target":{"node":231,"path":"rotation"}},{"sampler":11,"target":{"node":231,"path":"scale"}},{"sampler":12,"target":{"node":232,"path":"translation"}},{"sampler":13,"target":{"node":232,"path":"rotation"}},{"sampler":14,"target":{"node":232,"path":"scale"}},{"sampler":15,"target":{"node":233,"path":"translation"}},{"sampler":16,"target":{"node":233,"path":"rotation"}},{"sampler":17,"target":{"node":233,"path":"scale"}},{"sampler":18,"target":{"node":234,"path":"translation"}},{"sampler":19,"target":{"node":234,"path":"rotation"}},{"sampler":20,"target":{"node":234,"path":"scale"}},{"sampler":21,"target":{"node":235,"path":"translation"}},{"sampler":22,"target":{"node":235,"path":"rotation"}},{"sampler":23,"target":{"node":235,"path":"scale"}},{"sampler":24,"target":{"node":236,"path":"translation"}},{"sampler":25,"target":{"node":236,"path":"rotation"}},{"sampler":26,"target":{"node":236,"path":"scale"}},{"sampler":27,"target":{"node":263,"path":"translation"}},{"sampler":28,"target":{"node":263,"path":"rotation"}},{"sampler":29,"target":{"node":263,"path":"scale"}},{"sampler":30,"target":{"node":265,"path":"translation"}},{"sampler":31,"target":{"node":265,"path":"rotation"}},{"sampler":32,"target":{"node":265,"path":"scale"}},{"sampler":33,"target":{"node":266,"path":"translation"}},{"sampler":34,"target":{"node":266,"path":"rotation"}},{"sampler":35,"target":{"node":266,"path":"scale"}},{"sampler":36,"target":{"node":267,"path":"translation"}},{"sampler":37,"target":{"node":267,"path":"rotation"}},{"sampler":38,"target":{"node":267,"path":"scale"}},{"sampler":39,"target":{"node":271,"path":"translation"}},{"sampler":40,"target":{"node":271,"path":"rotation"}},{"sampler":41,"target":{"node":271,"path":"scale"}},{"sampler":42,"target":{"node":245,"path":"rotation"}},{"sampler":43,"target":{"node":240,"path":"translation"}},{"sampler":44,"target":{"node":240,"path":"rotation"}},{"sampler":45,"target":{"node":252,"path":"rotation"}},{"sampler":46,"target":{"node":249,"path":"translation"}},{"sampler":47,"target":{"node":249,"path":"rotation"}},{"sampler":48,"target":{"node":253,"path":"rotation"}},{"sampler":49,"target":{"node":250,"path":"translation"}},{"sampler":50,"target":{"node":250,"path":"rotation"}},{"sampler":51,"target":{"node":254,"path":"rotation"}},{"sampler":52,"target":{"node":251,"path":"translation"}},{"sampler":53,"target":{"node":251,"path":"rotation"}}],"samplers":[{"input":855,"output":856,"interpolation":"LINEAR"},{"input":857,"output":858,"interpolation":"LINEAR"},{"input":859,"output":860,"interpolation":"LINEAR"},{"input":861,"output":862,"interpolation":"LINEAR"},{"input":863,"output":864,"interpolation":"LINEAR"},{"input":865,"output":866,"interpolation":"LINEAR"},{"input":867,"output":868,"interpolation":"LINEAR"},{"input":869,"output":870,"interpolation":"LINEAR"},{"input":871,"output":872,"interpolation":"LINEAR"},{"input":873,"output":874,"interpolation":"LINEAR"},{"input":875,"output":876,"interpolation":"LINEAR"},{"input":877,"output":878,"interpolation":"LINEAR"},{"input":879,"output":880,"interpolation":"LINEAR"},{"input":881,"output":882,"interpolation":"LINEAR"},{"input":883,"output":884,"interpolation":"LINEAR"},{"input":885,"output":886,"interpolation":"LINEAR"},{"input":887,"output":888,"interpolation":"LINEAR"},{"input":889,"output":890,"interpolation":"LINEAR"},{"input":891,"output":892,"interpolation":"LINEAR"},{"input":893,"output":894,"interpolation":"LINEAR"},{"input":895,"output":896,"interpolation":"LINEAR"},{"input":897,"output":898,"interpolation":"LINEAR"},{"input":899,"output":900,"interpolation":"LINEAR"},{"input":901,"output":902,"interpolation":"LINEAR"},{"input":903,"output":904,"interpolation":"LINEAR"},{"input":905,"output":906,"interpolation":"LINEAR"},{"input":907,"output":908,"interpolation":"LINEAR"},{"input":909,"output":910,"interpolation":"LINEAR"},{"input":911,"output":912,"interpolation":"LINEAR"},{"input":913,"output":914,"interpolation":"LINEAR"},{"input":915,"output":916,"interpolation":"LINEAR"},{"input":917,"output":918,"interpolation":"LINEAR"},{"input":919,"output":920,"interpolation":"LINEAR"},{"input":921,"output":922,"interpolation":"LINEAR"},{"input":923,"output":924,"interpolation":"LINEAR"},{"input":925,"output":926,"interpolation":"LINEAR"},{"input":927,"output":928,"interpolation":"LINEAR"},{"input":929,"output":930,"interpolation":"LINEAR"},{"input":931,"output":932,"interpolation":"LINEAR"},{"input":933,"output":934,"interpolation":"LINEAR"},{"input":935,"output":936,"interpolation":"LINEAR"},{"input":937,"output":938,"interpolation":"LINEAR"},{"input":939,"output":940,"interpolation":"LINEAR"},{"input":941,"output":942,"interpolation":"LINEAR"},{"input":943,"output":944,"interpolation":"LINEAR"},{"input":945,"output":946,"interpolation":"LINEAR"},{"input":947,"output":948,"interpolation":"LINEAR"},{"input":949,"output":950,"interpolation":"LINEAR"},{"input":951,"output":952,"interpolation":"LINEAR"},{"input":953,"output":954,"interpolation":"LINEAR"},{"input":955,"output":956,"interpolation":"LINEAR"},{"input":957,"output":958,"interpolation":"LINEAR"},{"input":959,"output":960,"interpolation":"LINEAR"},{"input":961,"output":962,"interpolation":"LINEAR"}]},{"name":"r_tire_key","channels":[{"sampler":0,"target":{"node":292,"path":"translation"}},{"sampler":1,"target":{"node":292,"path":"rotation"}},{"sampler":2,"target":{"node":292,"path":"scale"}},{"sampler":3,"target":{"node":295,"path":"translation"}},{"sampler":4,"target":{"node":295,"path":"rotation"}},{"sampler":5,"target":{"node":295,"path":"scale"}}],"samplers":[{"input":963,"output":964,"interpolation":"LINEAR"},{"input":965,"output":966,"interpolation":"LINEAR"},{"input":967,"output":968,"interpolation":"LINEAR"},{"input":969,"output":970,"interpolation":"LINEAR"},{"input":971,"output":972,"interpolation":"LINEAR"},{"input":973,"output":974,"interpolation":"LINEAR"}]},{"name":"thrust_rev_2","channels":[{"sampler":0,"target":{"node":210,"path":"translation"}},{"sampler":1,"target":{"node":210,"path":"rotation"}},{"sampler":2,"target":{"node":210,"path":"scale"}}],"samplers":[{"input":975,"output":976,"interpolation":"LINEAR"},{"input":977,"output":978,"interpolation":"LINEAR"},{"input":979,"output":980,"interpolation":"LINEAR"}]},{"name":"N1_2_Anim","channels":[{"sampler":0,"target":{"node":212,"path":"translation"}},{"sampler":1,"target":{"node":212,"path":"rotation"}},{"sampler":2,"target":{"node":212,"path":"scale"}}],"samplers":[{"input":981,"output":982,"interpolation":"LINEAR"},{"input":983,"output":984,"interpolation":"LINEAR"},{"input":985,"output":986,"interpolation":"LINEAR"}]},{"name":"r_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":241,"path":"translation"}},{"sampler":1,"target":{"node":241,"path":"rotation"}},{"sampler":2,"target":{"node":241,"path":"scale"}},{"sampler":3,"target":{"node":242,"path":"translation"}},{"sampler":4,"target":{"node":242,"path":"rotation"}},{"sampler":5,"target":{"node":242,"path":"scale"}},{"sampler":6,"target":{"node":269,"path":"translation"}},{"sampler":7,"target":{"node":269,"path":"rotation"}},{"sampler":8,"target":{"node":269,"path":"scale"}},{"sampler":9,"target":{"node":244,"path":"translation"}},{"sampler":10,"target":{"node":244,"path":"rotation"}},{"sampler":11,"target":{"node":244,"path":"scale"}}],"samplers":[{"input":987,"output":988,"interpolation":"LINEAR"},{"input":989,"output":990,"interpolation":"LINEAR"},{"input":991,"output":992,"interpolation":"LINEAR"},{"input":993,"output":994,"interpolation":"LINEAR"},{"input":995,"output":996,"interpolation":"LINEAR"},{"input":997,"output":998,"interpolation":"LINEAR"},{"input":999,"output":1000,"interpolation":"LINEAR"},{"input":1001,"output":1002,"interpolation":"LINEAR"},{"input":1003,"output":1004,"interpolation":"LINEAR"},{"input":1005,"output":1006,"interpolation":"LINEAR"},{"input":1007,"output":1008,"interpolation":"LINEAR"},{"input":1009,"output":1010,"interpolation":"LINEAR"}]},{"name":"l_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":57,"path":"translation"}},{"sampler":1,"target":{"node":57,"path":"rotation"}},{"sampler":2,"target":{"node":57,"path":"scale"}},{"sampler":3,"target":{"node":58,"path":"translation"}},{"sampler":4,"target":{"node":58,"path":"rotation"}},{"sampler":5,"target":{"node":58,"path":"scale"}},{"sampler":6,"target":{"node":60,"path":"translation"}},{"sampler":7,"target":{"node":60,"path":"rotation"}},{"sampler":8,"target":{"node":60,"path":"scale"}},{"sampler":9,"target":{"node":55,"path":"translation"}},{"sampler":10,"target":{"node":55,"path":"rotation"}},{"sampler":11,"target":{"node":55,"path":"scale"}}],"samplers":[{"input":1011,"output":1012,"interpolation":"LINEAR"},{"input":1013,"output":1014,"interpolation":"LINEAR"},{"input":1015,"output":1016,"interpolation":"LINEAR"},{"input":1017,"output":1018,"interpolation":"LINEAR"},{"input":1019,"output":1020,"interpolation":"LINEAR"},{"input":1021,"output":1022,"interpolation":"LINEAR"},{"input":1023,"output":1024,"interpolation":"LINEAR"},{"input":1025,"output":1026,"interpolation":"LINEAR"},{"input":1027,"output":1028,"interpolation":"LINEAR"},{"input":1029,"output":1030,"interpolation":"LINEAR"},{"input":1031,"output":1032,"interpolation":"LINEAR"},{"input":1033,"output":1034,"interpolation":"LINEAR"}]},{"name":"door_cargo","channels":[{"sampler":0,"target":{"node":340,"path":"rotation"}},{"sampler":1,"target":{"node":342,"path":"translation"}},{"sampler":2,"target":{"node":342,"path":"rotation"}},{"sampler":3,"target":{"node":342,"path":"scale"}},{"sampler":4,"target":{"node":341,"path":"translation"}},{"sampler":5,"target":{"node":341,"path":"rotation"}},{"sampler":6,"target":{"node":341,"path":"scale"}}],"samplers":[{"input":1035,"output":1036,"interpolation":"LINEAR"},{"input":1037,"output":1038,"interpolation":"LINEAR"},{"input":1039,"output":1040,"interpolation":"LINEAR"},{"input":1041,"output":1042,"interpolation":"LINEAR"},{"input":1043,"output":1044,"interpolation":"LINEAR"},{"input":1045,"output":1046,"interpolation":"LINEAR"},{"input":1047,"output":1048,"interpolation":"LINEAR"}]},{"name":"door_passenger","channels":[{"sampler":0,"target":{"node":345,"path":"translation"}},{"sampler":1,"target":{"node":346,"path":"rotation"}}],"samplers":[{"input":1049,"output":1050,"interpolation":"LINEAR"},{"input":1051,"output":1052,"interpolation":"LINEAR"}]},{"name":"door_rear","channels":[{"sampler":0,"target":{"node":339,"path":"rotation"}},{"sampler":1,"target":{"node":338,"path":"translation"}}],"samplers":[{"input":1053,"output":1054,"interpolation":"LINEAR"},{"input":1055,"output":1056,"interpolation":"LINEAR"}]},{"name":"HANDLING_Wipers","channels":[{"sampler":0,"target":{"node":347,"path":"rotation"}},{"sampler":1,"target":{"node":348,"path":"rotation"}},{"sampler":2,"target":{"node":349,"path":"rotation"}},{"sampler":3,"target":{"node":350,"path":"rotation"}}],"samplers":[{"input":1057,"output":1058,"interpolation":"LINEAR"},{"input":1059,"output":1060,"interpolation":"LINEAR"},{"input":1061,"output":1062,"interpolation":"LINEAR"},{"input":1063,"output":1064,"interpolation":"LINEAR"}]},{"name":"l_slats_percent_key","channels":[{"sampler":0,"target":{"node":64,"path":"translation"}},{"sampler":1,"target":{"node":64,"path":"rotation"}},{"sampler":2,"target":{"node":64,"path":"scale"}},{"sampler":3,"target":{"node":63,"path":"translation"}},{"sampler":4,"target":{"node":63,"path":"rotation"}},{"sampler":5,"target":{"node":63,"path":"scale"}},{"sampler":6,"target":{"node":50,"path":"translation"}},{"sampler":7,"target":{"node":50,"path":"rotation"}},{"sampler":8,"target":{"node":50,"path":"scale"}},{"sampler":9,"target":{"node":38,"path":"translation"}},{"sampler":10,"target":{"node":38,"path":"rotation"}},{"sampler":11,"target":{"node":38,"path":"scale"}},{"sampler":12,"target":{"node":34,"path":"translation"}},{"sampler":13,"target":{"node":34,"path":"rotation"}},{"sampler":14,"target":{"node":34,"path":"scale"}}],"samplers":[{"input":1065,"output":1066,"interpolation":"LINEAR"},{"input":1067,"output":1068,"interpolation":"LINEAR"},{"input":1069,"output":1070,"interpolation":"LINEAR"},{"input":1071,"output":1072,"interpolation":"LINEAR"},{"input":1073,"output":1074,"interpolation":"LINEAR"},{"input":1075,"output":1076,"interpolation":"LINEAR"},{"input":1077,"output":1078,"interpolation":"LINEAR"},{"input":1079,"output":1080,"interpolation":"LINEAR"},{"input":1081,"output":1082,"interpolation":"LINEAR"},{"input":1083,"output":1084,"interpolation":"LINEAR"},{"input":1085,"output":1086,"interpolation":"LINEAR"},{"input":1087,"output":1088,"interpolation":"LINEAR"},{"input":1089,"output":1090,"interpolation":"LINEAR"},{"input":1091,"output":1092,"interpolation":"LINEAR"},{"input":1093,"output":1094,"interpolation":"LINEAR"}]},{"name":"r_slats_percent_key","channels":[{"sampler":0,"target":{"node":219,"path":"translation"}},{"sampler":1,"target":{"node":219,"path":"rotation"}},{"sampler":2,"target":{"node":219,"path":"scale"}},{"sampler":3,"target":{"node":273,"path":"translation"}},{"sampler":4,"target":{"node":273,"path":"rotation"}},{"sampler":5,"target":{"node":273,"path":"scale"}},{"sampler":6,"target":{"node":268,"path":"translation"}},{"sampler":7,"target":{"node":268,"path":"rotation"}},{"sampler":8,"target":{"node":268,"path":"scale"}},{"sampler":9,"target":{"node":264,"path":"translation"}},{"sampler":10,"target":{"node":264,"path":"rotation"}},{"sampler":11,"target":{"node":264,"path":"scale"}},{"sampler":12,"target":{"node":262,"path":"translation"}},{"sampler":13,"target":{"node":262,"path":"rotation"}},{"sampler":14,"target":{"node":262,"path":"scale"}}],"samplers":[{"input":1095,"output":1096,"interpolation":"LINEAR"},{"input":1097,"output":1098,"interpolation":"LINEAR"},{"input":1099,"output":1100,"interpolation":"LINEAR"},{"input":1101,"output":1102,"interpolation":"LINEAR"},{"input":1103,"output":1104,"interpolation":"LINEAR"},{"input":1105,"output":1106,"interpolation":"LINEAR"},{"input":1107,"output":1108,"interpolation":"LINEAR"},{"input":1109,"output":1110,"interpolation":"LINEAR"},{"input":1111,"output":1112,"interpolation":"LINEAR"},{"input":1113,"output":1114,"interpolation":"LINEAR"},{"input":1115,"output":1116,"interpolation":"LINEAR"},{"input":1117,"output":1118,"interpolation":"LINEAR"},{"input":1119,"output":1120,"interpolation":"LINEAR"},{"input":1121,"output":1122,"interpolation":"LINEAR"},{"input":1123,"output":1124,"interpolation":"LINEAR"}]},{"name":"Rudder_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":386,"path":"translation"}},{"sampler":1,"target":{"node":386,"path":"rotation"}}],"samplers":[{"input":2368,"output":2369,"interpolation":"LINEAR"},{"input":2368,"output":2370,"interpolation":"LINEAR"}]},{"name":"C_Door_02_Left_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":387,"path":"translation"}},{"sampler":1,"target":{"node":387,"path":"rotation"}}],"samplers":[{"input":2371,"output":2372,"interpolation":"LINEAR"},{"input":2371,"output":2373,"interpolation":"LINEAR"}]},{"name":"C_Door_02_right_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":388,"path":"translation"}},{"sampler":1,"target":{"node":388,"path":"rotation"}}],"samplers":[{"input":2371,"output":2374,"interpolation":"LINEAR"},{"input":2371,"output":2375,"interpolation":"LINEAR"}]},{"name":"DoorB_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":389,"path":"translation"}}],"samplers":[{"input":2368,"output":2376,"interpolation":"LINEAR"}]},{"name":"Door01_left_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":391,"path":"rotation"}}],"samplers":[{"input":2371,"output":2377,"interpolation":"LINEAR"}]},{"name":"Door01_right_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":392,"path":"rotation"}}],"samplers":[{"input":2371,"output":2378,"interpolation":"LINEAR"}]},{"name":"Cargo_Door_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":394,"path":"translation"}},{"sampler":1,"target":{"node":394,"path":"rotation"}}],"samplers":[{"input":2368,"output":2379,"interpolation":"LINEAR"},{"input":2368,"output":2380,"interpolation":"LINEAR"}]}],"asset":{"generator":"babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344","version":"2.0","extensions":{"ASOBO_asset_optimized":{"BoundingBoxMax":[30.037267684936523,12.464640617370605,32.94788360595703],"BoundingBoxMin":[-30.037269592285156,-4.272808074951172,-48.82345199584961],"MajorVersion":4,"MinorVersion":4,"UseCheckerboardMaterialForMissingTextures":true},"ASOBO_normal_map_convention":{"tangent_space_convention":"DirectX"}}},"bufferViews":[{"buffer":0,"byteLength":8640,"name":"bufferViewFloatMat4"},{"buffer":0,"byteLength":332640,"byteOffset":8640,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteLength":645024,"byteOffset":341280,"name":"bufferViewAnimationFloatVec3"},{"buffer":0,"byteLength":470528,"byteOffset":986304,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteLength":1295136,"byteStride":36,"byteOffset":1456832,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":212862,"byteOffset":2751968,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":455520,"byteStride":48,"byteOffset":2964832,"target":34962,"name":"BufferViewVertex4Blend"},{"buffer":0,"byteLength":3344,"byteStride":44,"byteOffset":3420352,"target":34962,"name":"BufferViewVertex1Blend"},{"buffer":0,"byteLength":159636,"byteOffset":3423696,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":845424,"byteStride":36,"byteOffset":3583332,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":324,"byteOffset":4428756},{"buffer":0,"byteLength":972,"byteOffset":4429080},{"buffer":0,"byteLength":1296,"byteOffset":4430052},{"buffer":0,"byteLength":644,"byteOffset":4431348},{"buffer":0,"byteLength":1932,"byteOffset":4431992},{"buffer":0,"byteLength":2576,"byteOffset":4433924},{"buffer":0,"byteLength":1932,"byteOffset":4436500},{"buffer":0,"byteLength":2576,"byteOffset":4438432},{"buffer":0,"byteLength":972,"byteOffset":4441008},{"buffer":0,"byteLength":2576,"byteOffset":4441980},{"buffer":0,"byteLength":2576,"byteOffset":4444556},{"buffer":0,"byteLength":972,"byteOffset":4447132},{"buffer":0,"byteLength":1296,"byteOffset":4448104}],"extensionsRequired":["MSFT_texture_dds"],"materials":[{"name":"TAIL","normalTexture":{"index":2},"occlusionTexture":{"index":1},"pbrMetallicRoughness":{"baseColorTexture":{"index":0},"metallicRoughnessTexture":{"index":1}}},{"name":"Livery_KLM","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":3}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"FUSELAGE1","normalTexture":{"index":6},"occlusionTexture":{"index":5},"pbrMetallicRoughness":{"baseColorTexture":{"index":4},"metallicRoughnessTexture":{"index":5}}},{"name":"LIVERY1","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":7}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}},{"name":"Livery_KLM2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":8}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}},{"name":"FROST","alphaMode":"BLEND","normalTexture":{"index":11,"scale":0.84},"occlusionTexture":{"index":10},"pbrMetallicRoughness":{"metallicFactor":0.94,"roughnessFactor":0.05,"baseColorTexture":{"index":9},"metallicRoughnessTexture":{"index":10}},"extensions":{"ASOBO_material_blend_gbuffer":{"baseColorBlendFactor":0.99,"emissiveBlendFactor":0,"metallicBlendFactor":0.99,"normalBlendFactor":0.81,"occlusionBlendFactor":0,"roughnessBlendFactor":0.99},"ASOBO_material_draw_order":{"drawOrderOffset":50}},"extras":{"ASOBO_material_code":"GeoDecalFrosted"}},{"name":"LIGHTS","occlusionTexture":{"index":12},"pbrMetallicRoughness":{"baseColorFactor":[0.9,0.9,0.9,1],"metallicRoughnessTexture":{"index":12}}},{"name":"WINGS","normalTexture":{"index":15},"occlusionTexture":{"index":14},"pbrMetallicRoughness":{"baseColorTexture":{"index":13},"metallicRoughnessTexture":{"index":14}}},{"name":"REARGEAR","normalTexture":{"index":18},"occlusionTexture":{"index":17},"pbrMetallicRoughness":{"baseColorTexture":{"index":16},"metallicRoughnessTexture":{"index":17}}},{"name":"TIRE","normalTexture":{"index":21},"occlusionTexture":{"index":20},"pbrMetallicRoughness":{"baseColorTexture":{"index":19},"metallicRoughnessTexture":{"index":20}}},{"name":"TIREBLUR","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.5,"baseColorTexture":{"index":22}}},{"name":"ENGSTILL","occlusionTexture":{"index":24},"pbrMetallicRoughness":{"baseColorTexture":{"index":23},"metallicRoughnessTexture":{"index":24}}},{"name":"ENGSLOW","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[1,1,1,0.95],"metallicFactor":0,"roughnessFactor":0.25,"baseColorTexture":{"index":25}}},{"name":"ENGBLUR","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[1,1,1,0.95],"metallicFactor":0,"roughnessFactor":0.25,"baseColorTexture":{"index":26}}},{"name":"ENGINE","normalTexture":{"index":29},"occlusionTexture":{"index":28},"pbrMetallicRoughness":{"baseColorTexture":{"index":27},"metallicRoughnessTexture":{"index":28}}},{"name":"Generic_LOD5","occlusionTexture":{"index":31},"pbrMetallicRoughness":{"baseColorTexture":{"index":30},"metallicRoughnessTexture":{"index":31}}},{"name":"FUSELAGE2","normalTexture":{"index":34},"occlusionTexture":{"index":33},"pbrMetallicRoughness":{"baseColorTexture":{"index":32},"metallicRoughnessTexture":{"index":33}}},{"name":"FRONTGEAR","normalTexture":{"index":37},"occlusionTexture":{"index":36},"pbrMetallicRoughness":{"baseColorTexture":{"index":35},"metallicRoughnessTexture":{"index":36}}},{"name":"WINDSHIELD","alphaMode":"BLEND","occlusionTexture":{"index":38},"emissiveTexture":{"index":39},"pbrMetallicRoughness":{"baseColorFactor":[0.623529434,0.623529434,0.623529434,0.01],"metallicFactor":0,"roughnessFactor":0,"metallicRoughnessTexture":{"index":38}},"extensions":{"ASOBO_material_detail_map":{"UVScale":2,"detailColorTexture":{"index":40},"detailNormalTexture":{"index":41}}},"extras":{"ASOBO_material_code":"Windshield"}},{"name":"UNDERCARRIAGE","normalTexture":{"index":44},"occlusionTexture":{"index":43},"pbrMetallicRoughness":{"baseColorTexture":{"index":42},"metallicRoughnessTexture":{"index":43}}},{"name":"GLASS","alphaCutoff":0.01,"alphaMode":"MASK","pbrMetallicRoughness":{"baseColorFactor":[0.66906476,0.66906476,0.66906476,0.01],"metallicFactor":0,"roughnessFactor":0}},{"name":"DECALS2","alphaMode":"BLEND","normalTexture":{"index":46},"pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.3,"baseColorTexture":{"index":45}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":15}}},{"name":"LIVERY1_3","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":47}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":5}}},{"name":"HANDLE","normalTexture":{"index":50},"occlusionTexture":{"index":49},"pbrMetallicRoughness":{"baseColorTexture":{"index":48},"metallicRoughnessTexture":{"index":49}}},{"name":"HUBLOT","normalTexture":{"index":53},"occlusionTexture":{"index":52},"emissiveTexture":{"index":54},"emissiveFactor":[0.48201438784599304,0.48171502351760864,0.4404016137123108],"pbrMetallicRoughness":{"baseColorTexture":{"index":51},"metallicRoughnessTexture":{"index":52}},"extensions":{"ASOBO_material_draw_order":{"drawOrderOffset":11}},"extras":{"ASOBO_material_code":"Porthole"}},{"name":"RegistrationNumber","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1],"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":8}}},{"name":"RegistrationNumber2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"LIVERYDECALS","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":55}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}}],"meshes":[{"primitives":[{"attributes":{"COLOR_0":1130,"NORMAL":1127,"POSITION":1125,"TANGENT":1126,"TEXCOORD_0":1128,"TEXCOORD_1":1129},"indices":1131,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":46,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Rudder_center"},{"primitives":[{"attributes":{"COLOR_0":1137,"NORMAL":1134,"POSITION":1132,"TANGENT":1133,"TEXCOORD_0":1135,"TEXCOORD_1":1136},"indices":1138,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":34,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_Rudder"},{"primitives":[{"attributes":{"COLOR_0":1144,"NORMAL":1141,"POSITION":1139,"TANGENT":1140,"TEXCOORD_0":1142,"TEXCOORD_1":1143},"indices":1145,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1144,"NORMAL":1141,"POSITION":1139,"TANGENT":1140,"TEXCOORD_0":1142,"TEXCOORD_1":1143},"indices":1145,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"StartIndex":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_C_Door_right"},{"primitives":[{"attributes":{"COLOR_0":1151,"NORMAL":1148,"POSITION":1146,"TANGENT":1147,"TEXCOORD_0":1149,"TEXCOORD_1":1150},"indices":1152,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":10,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_RGDoor"},{"primitives":[{"attributes":{"COLOR_0":1158,"NORMAL":1155,"POSITION":1153,"TANGENT":1154,"TEXCOORD_0":1156,"TEXCOORD_1":1157},"indices":1159,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_C_Door_01_right"},{"primitives":[{"attributes":{"COLOR_0":1165,"NORMAL":1162,"POSITION":1160,"TANGENT":1161,"TEXCOORD_0":1163,"TEXCOORD_1":1164},"indices":1166,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1165,"NORMAL":1162,"POSITION":1160,"TANGENT":1161,"TEXCOORD_0":1163,"TEXCOORD_1":1164},"indices":1166,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"StartIndex":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_C_Door_left"},{"primitives":[{"attributes":{"COLOR_0":1172,"NORMAL":1169,"POSITION":1167,"TANGENT":1168,"TEXCOORD_0":1170,"TEXCOORD_1":1171},"indices":1173,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":10,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_LGDoor"},{"primitives":[{"attributes":{"COLOR_0":1179,"NORMAL":1176,"POSITION":1174,"TANGENT":1175,"TEXCOORD_0":1177,"TEXCOORD_1":1178},"indices":1180,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_C_Door_01_left"},{"primitives":[{"attributes":{"COLOR_0":1186,"NORMAL":1183,"POSITION":1181,"TANGENT":1182,"TEXCOORD_0":1184,"TEXCOORD_1":1185},"indices":1187,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Elevator_left"},{"primitives":[{"attributes":{"COLOR_0":1193,"NORMAL":1190,"POSITION":1188,"TANGENT":1189,"TEXCOORD_0":1191,"TEXCOORD_1":1192},"indices":1194,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":100,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_ELEVATORL001"},{"primitives":[{"attributes":{"COLOR_0":1200,"NORMAL":1197,"POSITION":1195,"TANGENT":1196,"TEXCOORD_0":1198,"TEXCOORD_1":1199},"indices":1201,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":138,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Trim_Elevator_left"},{"primitives":[{"attributes":{"COLOR_0":1207,"NORMAL":1204,"POSITION":1202,"TANGENT":1203,"TEXCOORD_0":1205,"TEXCOORD_1":1206},"indices":1208,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Logo_Left"},{"primitives":[{"attributes":{"COLOR_0":1214,"NORMAL":1211,"POSITION":1209,"TANGENT":1210,"TEXCOORD_0":1212,"TEXCOORD_1":1213},"indices":1215,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_ElevatorTrimL"},{"primitives":[{"attributes":{"COLOR_0":1221,"NORMAL":1218,"POSITION":1216,"TANGENT":1217,"TEXCOORD_0":1219,"TEXCOORD_1":1220},"indices":1222,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_NavigationRed"},{"primitives":[{"attributes":{"COLOR_0":1228,"NORMAL":1225,"POSITION":1223,"TANGENT":1224,"TEXCOORD_0":1226,"TEXCOORD_1":1227},"indices":1229,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_NavigationWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1235,"NORMAL":1232,"POSITION":1230,"TANGENT":1231,"TEXCOORD_0":1233,"TEXCOORD_1":1234},"indices":1236,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_StrobeWing_Left"},{"primitives":[{"attributes":{"COLOR_0":2028,"JOINTS_0":2026,"NORMAL":2023,"POSITION":2021,"TANGENT":2022,"TEXCOORD_0":2024,"TEXCOORD_1":2025,"WEIGHTS_0":2027},"indices":2029,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Spoiler_2_1_left"},{"primitives":[{"attributes":{"COLOR_0":1242,"NORMAL":1239,"POSITION":1237,"TANGENT":1238,"TEXCOORD_0":1240,"TEXCOORD_1":1241},"indices":1243,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Spoiler_2_left"},{"primitives":[{"attributes":{"COLOR_0":1249,"NORMAL":1246,"POSITION":1244,"TANGENT":1245,"TEXCOORD_0":1247,"TEXCOORD_1":1248},"indices":1250,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Flaps_1_1_left"},{"primitives":[{"attributes":{"COLOR_0":1256,"NORMAL":1253,"POSITION":1251,"TANGENT":1252,"TEXCOORD_0":1254,"TEXCOORD_1":1255},"indices":1257,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":18,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_KRUEGERL003"},{"primitives":[{"attributes":{"COLOR_0":1263,"NORMAL":1260,"POSITION":1258,"TANGENT":1259,"TEXCOORD_0":1261,"TEXCOORD_1":1262},"indices":1264,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":76,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_FlapsKrueger_1_left"},{"primitives":[{"attributes":{"COLOR_0":1270,"NORMAL":1267,"POSITION":1265,"TANGENT":1266,"TEXCOORD_0":1268,"TEXCOORD_1":1269},"indices":1271,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":113,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Flaps_1_left"},{"primitives":[{"attributes":{"COLOR_0":1277,"NORMAL":1274,"POSITION":1272,"TANGENT":1273,"TEXCOORD_0":1275,"TEXCOORD_1":1276},"indices":1278,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_17_left"},{"primitives":[{"attributes":{"COLOR_0":1284,"NORMAL":1281,"POSITION":1279,"TANGENT":1280,"TEXCOORD_0":1282,"TEXCOORD_1":1283},"indices":1285,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_31_left"},{"primitives":[{"attributes":{"COLOR_0":1291,"NORMAL":1288,"POSITION":1286,"TANGENT":1287,"TEXCOORD_0":1289,"TEXCOORD_1":1290},"indices":1292,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_33_left"},{"primitives":[{"attributes":{"COLOR_0":1298,"NORMAL":1295,"POSITION":1293,"TANGENT":1294,"TEXCOORD_0":1296,"TEXCOORD_1":1297},"indices":1299,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":14,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_30_left"},{"primitives":[{"attributes":{"COLOR_0":1305,"NORMAL":1302,"POSITION":1300,"TANGENT":1301,"TEXCOORD_0":1303,"TEXCOORD_1":1304},"indices":1306,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":28,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_32_left"},{"primitives":[{"attributes":{"COLOR_0":1312,"NORMAL":1309,"POSITION":1307,"TANGENT":1308,"TEXCOORD_0":1310,"TEXCOORD_1":1311},"indices":1313,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_34_left"},{"primitives":[{"attributes":{"COLOR_0":1319,"NORMAL":1316,"POSITION":1314,"TANGENT":1315,"TEXCOORD_0":1317,"TEXCOORD_1":1318},"indices":1320,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":24,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_21_left"},{"primitives":[{"attributes":{"COLOR_0":1326,"NORMAL":1323,"POSITION":1321,"TANGENT":1322,"TEXCOORD_0":1324,"TEXCOORD_1":1325},"indices":1327,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_Part17_left"},{"primitives":[{"attributes":{"COLOR_0":1333,"NORMAL":1330,"POSITION":1328,"TANGENT":1329,"TEXCOORD_0":1331,"TEXCOORD_1":1332},"indices":1334,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":72,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_07_left"},{"primitives":[{"attributes":{"COLOR_0":1340,"NORMAL":1337,"POSITION":1335,"TANGENT":1336,"TEXCOORD_0":1338,"TEXCOORD_1":1339},"indices":1341,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":100,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_08_left"},{"primitives":[{"attributes":{"COLOR_0":1347,"NORMAL":1344,"POSITION":1342,"TANGENT":1343,"TEXCOORD_0":1345,"TEXCOORD_1":1346},"indices":1348,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_36_left"},{"primitives":[{"attributes":{"COLOR_0":1354,"NORMAL":1351,"POSITION":1349,"TANGENT":1350,"TEXCOORD_0":1352,"TEXCOORD_1":1353},"indices":1355,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_35_left"},{"primitives":[{"attributes":{"COLOR_0":1361,"NORMAL":1358,"POSITION":1356,"TANGENT":1357,"TEXCOORD_0":1359,"TEXCOORD_1":1360},"indices":1362,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":236,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LWheel_01_still"},{"primitives":[{"attributes":{"COLOR_0":1368,"NORMAL":1365,"POSITION":1363,"TANGENT":1364,"TEXCOORD_0":1366,"TEXCOORD_1":1367},"indices":1369,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LWheel_01_blurred"},{"primitives":[{"attributes":{"COLOR_0":1375,"NORMAL":1372,"POSITION":1370,"TANGENT":1371,"TEXCOORD_0":1373,"TEXCOORD_1":1374},"indices":1376,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":236,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LWheel_02_still"},{"primitives":[{"attributes":{"COLOR_0":1382,"NORMAL":1379,"POSITION":1377,"TANGENT":1378,"TEXCOORD_0":1380,"TEXCOORD_1":1381},"indices":1383,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LWheel_02_blurred"},{"primitives":[{"attributes":{"COLOR_0":1389,"NORMAL":1386,"POSITION":1384,"TANGENT":1385,"TEXCOORD_0":1387,"TEXCOORD_1":1388},"indices":1390,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":552,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_09_left"},{"primitives":[{"attributes":{"COLOR_0":1396,"NORMAL":1393,"POSITION":1391,"TANGENT":1392,"TEXCOORD_0":1394,"TEXCOORD_1":1395},"indices":1397,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":110,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_10_left"},{"primitives":[{"attributes":{"COLOR_0":1403,"NORMAL":1400,"POSITION":1398,"TANGENT":1399,"TEXCOORD_0":1401,"TEXCOORD_1":1402},"indices":1404,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":258,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_gear_Root_left"},{"primitives":[{"attributes":{"COLOR_0":1410,"NORMAL":1407,"POSITION":1405,"TANGENT":1406,"TEXCOORD_0":1408,"TEXCOORD_1":1409},"indices":1411,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_16_left"},{"primitives":[{"attributes":{"COLOR_0":1417,"NORMAL":1414,"POSITION":1412,"TANGENT":1413,"TEXCOORD_0":1415,"TEXCOORD_1":1416},"indices":1418,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door02_left"},{"primitives":[{"attributes":{"COLOR_0":1424,"NORMAL":1421,"POSITION":1419,"TANGENT":1420,"TEXCOORD_0":1422,"TEXCOORD_1":1423},"indices":1425,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door03_left"},{"primitives":[{"attributes":{"COLOR_0":1431,"NORMAL":1428,"POSITION":1426,"TANGENT":1427,"TEXCOORD_0":1429,"TEXCOORD_1":1430},"indices":1432,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":46,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door04_left"},{"primitives":[{"attributes":{"COLOR_0":1438,"NORMAL":1435,"POSITION":1433,"TANGENT":1434,"TEXCOORD_0":1436,"TEXCOORD_1":1437},"indices":1439,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":620,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_1_still_left"},{"primitives":[{"attributes":{"COLOR_0":1445,"NORMAL":1442,"POSITION":1440,"TANGENT":1441,"TEXCOORD_0":1443,"TEXCOORD_1":1444},"indices":1446,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1445,"NORMAL":1442,"POSITION":1440,"TANGENT":1441,"TEXCOORD_0":1443,"TEXCOORD_1":1444},"indices":1446,"material":12,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"StartIndex":270,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_1_slow_left"},{"primitives":[{"attributes":{"COLOR_0":1452,"NORMAL":1449,"POSITION":1447,"TANGENT":1448,"TEXCOORD_0":1450,"TEXCOORD_1":1451},"indices":1453,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1452,"NORMAL":1449,"POSITION":1447,"TANGENT":1448,"TEXCOORD_0":1450,"TEXCOORD_1":1451},"indices":1453,"material":13,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"StartIndex":270,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_1_blurred_left"},{"primitives":[{"attributes":{"COLOR_0":1459,"NORMAL":1456,"POSITION":1454,"TANGENT":1455,"TEXCOORD_0":1457,"TEXCOORD_1":1458},"indices":1460,"material":14,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":356,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Engine_Duct_left"},{"primitives":[{"attributes":{"COLOR_0":1466,"NORMAL":1463,"POSITION":1461,"TANGENT":1462,"TEXCOORD_0":1464,"TEXCOORD_1":1465},"indices":1467,"material":15,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_LEFT"},{"primitives":[{"attributes":{"COLOR_0":1473,"NORMAL":1470,"POSITION":1468,"TANGENT":1469,"TEXCOORD_0":1471,"TEXCOORD_1":1472},"indices":1474,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":160,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_ENGINEL001"},{"primitives":[{"attributes":{"COLOR_0":1480,"NORMAL":1477,"POSITION":1475,"TANGENT":1476,"TEXCOORD_0":1478,"TEXCOORD_1":1479},"indices":1481,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_EngA"},{"primitives":[{"attributes":{"COLOR_0":1487,"NORMAL":1484,"POSITION":1482,"TANGENT":1483,"TEXCOORD_0":1485,"TEXCOORD_1":1486},"indices":1488,"material":16,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door01_left"},{"primitives":[{"attributes":{"COLOR_0":1494,"NORMAL":1491,"POSITION":1489,"TANGENT":1490,"TEXCOORD_0":1492,"TEXCOORD_1":1493},"indices":1495,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":44,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart10_center"},{"primitives":[{"attributes":{"COLOR_0":1501,"NORMAL":1498,"POSITION":1496,"TANGENT":1497,"TEXCOORD_0":1499,"TEXCOORD_1":1500},"indices":1502,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":44,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart09_center"},{"primitives":[{"attributes":{"COLOR_0":1508,"NORMAL":1505,"POSITION":1503,"TANGENT":1504,"TEXCOORD_0":1506,"TEXCOORD_1":1507},"indices":1509,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":320,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Wheel_Nose_center"},{"primitives":[{"attributes":{"COLOR_0":1515,"NORMAL":1512,"POSITION":1510,"TANGENT":1511,"TEXCOORD_0":1513,"TEXCOORD_1":1514},"indices":1516,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Wheel_Nose_blurred"},{"primitives":[{"attributes":{"COLOR_0":1522,"NORMAL":1519,"POSITION":1517,"TANGENT":1518,"TEXCOORD_0":1520,"TEXCOORD_1":1521},"indices":1523,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":142,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart13_center"},{"primitives":[{"attributes":{"COLOR_0":1529,"NORMAL":1526,"POSITION":1524,"TANGENT":1525,"TEXCOORD_0":1527,"TEXCOORD_1":1528},"indices":1530,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":76,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart07_center"},{"primitives":[{"attributes":{"COLOR_0":1536,"NORMAL":1533,"POSITION":1531,"TANGENT":1532,"TEXCOORD_0":1534,"TEXCOORD_1":1535},"indices":1537,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart_lightpod_center"},{"primitives":[{"attributes":{"COLOR_0":1543,"NORMAL":1540,"POSITION":1538,"TANGENT":1539,"TEXCOORD_0":1541,"TEXCOORD_1":1542},"indices":1544,"material":18,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart_glass_center"},{"primitives":[{"attributes":{"COLOR_0":1550,"NORMAL":1547,"POSITION":1545,"TANGENT":1546,"TEXCOORD_0":1548,"TEXCOORD_1":1549},"indices":1551,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":627,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_NosePart16_center"},{"primitives":[{"attributes":{"COLOR_0":1557,"NORMAL":1554,"POSITION":1552,"TANGENT":1553,"TEXCOORD_0":1555,"TEXCOORD_1":1556},"indices":1558,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_LandingNose_Left"},{"primitives":[{"attributes":{"COLOR_0":1564,"NORMAL":1561,"POSITION":1559,"TANGENT":1560,"TEXCOORD_0":1562,"TEXCOORD_1":1563},"indices":1565,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_LandingNose_Right"},{"primitives":[{"attributes":{"COLOR_0":1571,"NORMAL":1568,"POSITION":1566,"TANGENT":1567,"TEXCOORD_0":1569,"TEXCOORD_1":1570},"indices":1572,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Taxi_Left"},{"primitives":[{"attributes":{"COLOR_0":1578,"NORMAL":1575,"POSITION":1573,"TANGENT":1574,"TEXCOORD_0":1576,"TEXCOORD_1":1577},"indices":1579,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Taxi_Right"},{"primitives":[{"attributes":{"COLOR_0":1585,"NORMAL":1582,"POSITION":1580,"TANGENT":1581,"TEXCOORD_0":1583,"TEXCOORD_1":1584},"indices":1586,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Elevator_right"},{"primitives":[{"attributes":{"COLOR_0":1592,"NORMAL":1589,"POSITION":1587,"TANGENT":1588,"TEXCOORD_0":1590,"TEXCOORD_1":1591},"indices":1593,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":100,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_ELEVATORR001"},{"primitives":[{"attributes":{"COLOR_0":1599,"NORMAL":1596,"POSITION":1594,"TANGENT":1595,"TEXCOORD_0":1597,"TEXCOORD_1":1598},"indices":1600,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":126,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Trim_Elevator_right"},{"primitives":[{"attributes":{"COLOR_0":1606,"NORMAL":1603,"POSITION":1601,"TANGENT":1602,"TEXCOORD_0":1604,"TEXCOORD_1":1605},"indices":1607,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Logo_Right"},{"primitives":[{"attributes":{"COLOR_0":1613,"NORMAL":1610,"POSITION":1608,"TANGENT":1609,"TEXCOORD_0":1611,"TEXCOORD_1":1612},"indices":1614,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":76,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_ElevatorTrimR"},{"primitives":[{"attributes":{"COLOR_0":1620,"NORMAL":1617,"POSITION":1615,"TANGENT":1616,"TEXCOORD_0":1618,"TEXCOORD_1":1619},"indices":1621,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door02_right"},{"primitives":[{"attributes":{"COLOR_0":1627,"NORMAL":1624,"POSITION":1622,"TANGENT":1623,"TEXCOORD_0":1625,"TEXCOORD_1":1626},"indices":1628,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door03_right"},{"primitives":[{"attributes":{"COLOR_0":1634,"NORMAL":1631,"POSITION":1629,"TANGENT":1630,"TEXCOORD_0":1632,"TEXCOORD_1":1633},"indices":1635,"material":14,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":356,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Engine_Duct_right"},{"primitives":[{"attributes":{"COLOR_0":1641,"NORMAL":1638,"POSITION":1636,"TANGENT":1637,"TEXCOORD_0":1639,"TEXCOORD_1":1640},"indices":1642,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1641,"NORMAL":1638,"POSITION":1636,"TANGENT":1637,"TEXCOORD_0":1639,"TEXCOORD_1":1640},"indices":1642,"material":13,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"StartIndex":270,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_2_blurred_right"},{"primitives":[{"attributes":{"COLOR_0":1648,"NORMAL":1645,"POSITION":1643,"TANGENT":1644,"TEXCOORD_0":1646,"TEXCOORD_1":1647},"indices":1649,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1648,"NORMAL":1645,"POSITION":1643,"TANGENT":1644,"TEXCOORD_0":1646,"TEXCOORD_1":1647},"indices":1649,"material":12,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"StartIndex":270,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_2_slow_right"},{"primitives":[{"attributes":{"COLOR_0":1655,"NORMAL":1652,"POSITION":1650,"TANGENT":1651,"TEXCOORD_0":1653,"TEXCOORD_1":1654},"indices":1656,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":620,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_2_still_right"},{"primitives":[{"attributes":{"COLOR_0":1662,"NORMAL":1659,"POSITION":1657,"TANGENT":1658,"TEXCOORD_0":1660,"TEXCOORD_1":1661},"indices":1663,"material":15,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_RIGHT"},{"primitives":[{"attributes":{"COLOR_0":1669,"NORMAL":1666,"POSITION":1664,"TANGENT":1665,"TEXCOORD_0":1667,"TEXCOORD_1":1668},"indices":1670,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":160,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_ENGINER001"},{"primitives":[{"attributes":{"COLOR_0":1676,"NORMAL":1673,"POSITION":1671,"TANGENT":1672,"TEXCOORD_0":1674,"TEXCOORD_1":1675},"indices":1677,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_EngB"},{"primitives":[{"attributes":{"COLOR_0":1683,"NORMAL":1680,"POSITION":1678,"TANGENT":1679,"TEXCOORD_0":1681,"TEXCOORD_1":1682},"indices":1684,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_KRUEGERR003"},{"primitives":[{"attributes":{"COLOR_0":1690,"NORMAL":1687,"POSITION":1685,"TANGENT":1686,"TEXCOORD_0":1688,"TEXCOORD_1":1689},"indices":1691,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":68,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_FlapsKrueger_1_right"},{"primitives":[{"attributes":{"COLOR_0":1697,"NORMAL":1694,"POSITION":1692,"TANGENT":1693,"TEXCOORD_0":1695,"TEXCOORD_1":1696},"indices":1698,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":82,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Flaps_1_right"},{"primitives":[{"attributes":{"COLOR_0":1704,"NORMAL":1701,"POSITION":1699,"TANGENT":1700,"TEXCOORD_0":1702,"TEXCOORD_1":1703},"indices":1705,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_16_right"},{"primitives":[{"attributes":{"COLOR_0":1711,"NORMAL":1708,"POSITION":1706,"TANGENT":1707,"TEXCOORD_0":1709,"TEXCOORD_1":1710},"indices":1712,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Flaps_1_1_right"},{"primitives":[{"attributes":{"COLOR_0":1718,"NORMAL":1715,"POSITION":1713,"TANGENT":1714,"TEXCOORD_0":1716,"TEXCOORD_1":1717},"indices":1719,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_NavigationGreen"},{"primitives":[{"attributes":{"COLOR_0":1725,"NORMAL":1722,"POSITION":1720,"TANGENT":1721,"TEXCOORD_0":1723,"TEXCOORD_1":1724},"indices":1726,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_NavigationWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1732,"NORMAL":1729,"POSITION":1727,"TANGENT":1728,"TEXCOORD_0":1730,"TEXCOORD_1":1731},"indices":1733,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_StrobeWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1739,"NORMAL":1736,"POSITION":1734,"TANGENT":1735,"TEXCOORD_0":1737,"TEXCOORD_1":1738},"indices":1740,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":154,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Spoiler_2_right"},{"primitives":[{"attributes":{"COLOR_0":2037,"JOINTS_0":2035,"NORMAL":2032,"POSITION":2030,"TANGENT":2031,"TEXCOORD_0":2033,"TEXCOORD_1":2034,"WEIGHTS_0":2036},"indices":2038,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":42,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Spoiler_2_1_right"},{"primitives":[{"attributes":{"COLOR_0":1746,"NORMAL":1743,"POSITION":1741,"TANGENT":1742,"TEXCOORD_0":1744,"TEXCOORD_1":1745},"indices":1747,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door04_right"},{"primitives":[{"attributes":{"COLOR_0":1753,"NORMAL":1750,"POSITION":1748,"TANGENT":1749,"TEXCOORD_0":1751,"TEXCOORD_1":1752},"indices":1754,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":72,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_07_right"},{"primitives":[{"attributes":{"COLOR_0":1760,"NORMAL":1757,"POSITION":1755,"TANGENT":1756,"TEXCOORD_0":1758,"TEXCOORD_1":1759},"indices":1761,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":100,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_08_right"},{"primitives":[{"attributes":{"COLOR_0":1767,"NORMAL":1764,"POSITION":1762,"TANGENT":1763,"TEXCOORD_0":1765,"TEXCOORD_1":1766},"indices":1768,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_35_right"},{"primitives":[{"attributes":{"COLOR_0":1774,"NORMAL":1771,"POSITION":1769,"TANGENT":1770,"TEXCOORD_0":1772,"TEXCOORD_1":1773},"indices":1775,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_36_right"},{"primitives":[{"attributes":{"COLOR_0":1781,"NORMAL":1778,"POSITION":1776,"TANGENT":1777,"TEXCOORD_0":1779,"TEXCOORD_1":1780},"indices":1782,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":236,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_RWheel_01_still"},{"primitives":[{"attributes":{"COLOR_0":1788,"NORMAL":1785,"POSITION":1783,"TANGENT":1784,"TEXCOORD_0":1786,"TEXCOORD_1":1787},"indices":1789,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_RWheel_01_blurred"},{"primitives":[{"attributes":{"COLOR_0":1795,"NORMAL":1792,"POSITION":1790,"TANGENT":1791,"TEXCOORD_0":1793,"TEXCOORD_1":1794},"indices":1796,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":236,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_RWheel_02_still"},{"primitives":[{"attributes":{"COLOR_0":1802,"NORMAL":1799,"POSITION":1797,"TANGENT":1798,"TEXCOORD_0":1800,"TEXCOORD_1":1801},"indices":1803,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_RWheel_02_blurred"},{"primitives":[{"attributes":{"COLOR_0":1809,"NORMAL":1806,"POSITION":1804,"TANGENT":1805,"TEXCOORD_0":1807,"TEXCOORD_1":1808},"indices":1810,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":552,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_09_right"},{"primitives":[{"attributes":{"COLOR_0":1816,"NORMAL":1813,"POSITION":1811,"TANGENT":1812,"TEXCOORD_0":1814,"TEXCOORD_1":1815},"indices":1817,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":110,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_10_right"},{"primitives":[{"attributes":{"COLOR_0":1823,"NORMAL":1820,"POSITION":1818,"TANGENT":1819,"TEXCOORD_0":1821,"TEXCOORD_1":1822},"indices":1824,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":24,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_21_right"},{"primitives":[{"attributes":{"COLOR_0":1830,"NORMAL":1827,"POSITION":1825,"TANGENT":1826,"TEXCOORD_0":1828,"TEXCOORD_1":1829},"indices":1831,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_Part17_right"},{"primitives":[{"attributes":{"COLOR_0":1837,"NORMAL":1834,"POSITION":1832,"TANGENT":1833,"TEXCOORD_0":1835,"TEXCOORD_1":1836},"indices":1838,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_17_right"},{"primitives":[{"attributes":{"COLOR_0":1844,"NORMAL":1841,"POSITION":1839,"TANGENT":1840,"TEXCOORD_0":1842,"TEXCOORD_1":1843},"indices":1845,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_31_right"},{"primitives":[{"attributes":{"COLOR_0":1851,"NORMAL":1848,"POSITION":1846,"TANGENT":1847,"TEXCOORD_0":1849,"TEXCOORD_1":1850},"indices":1852,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_33_right"},{"primitives":[{"attributes":{"COLOR_0":1858,"NORMAL":1855,"POSITION":1853,"TANGENT":1854,"TEXCOORD_0":1856,"TEXCOORD_1":1857},"indices":1859,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":14,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_30_right"},{"primitives":[{"attributes":{"COLOR_0":1865,"NORMAL":1862,"POSITION":1860,"TANGENT":1861,"TEXCOORD_0":1863,"TEXCOORD_1":1864},"indices":1866,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":28,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_32_right"},{"primitives":[{"attributes":{"COLOR_0":1872,"NORMAL":1869,"POSITION":1867,"TANGENT":1868,"TEXCOORD_0":1870,"TEXCOORD_1":1871},"indices":1873,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1872,"NORMAL":1869,"POSITION":1867,"TANGENT":1868,"TEXCOORD_0":1870,"TEXCOORD_1":1871},"indices":1873,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":60,"StartIndex":24,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_Gear_34_right"},{"primitives":[{"attributes":{"COLOR_0":1879,"NORMAL":1876,"POSITION":1874,"TANGENT":1875,"TEXCOORD_0":1877,"TEXCOORD_1":1878},"indices":1880,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":258,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Landing_gear_Root_right"},{"primitives":[{"attributes":{"COLOR_0":1886,"NORMAL":1883,"POSITION":1881,"TANGENT":1882,"TEXCOORD_0":1884,"TEXCOORD_1":1885},"indices":1887,"material":16,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Door01_right"},{"primitives":[{"attributes":{"COLOR_0":1893,"NORMAL":1890,"POSITION":1888,"TANGENT":1889,"TEXCOORD_0":1891,"TEXCOORD_1":1892},"indices":1894,"material":19,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":131,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Undercarriage_Front_center"},{"primitives":[{"attributes":{"COLOR_0":1900,"NORMAL":1897,"POSITION":1895,"TANGENT":1896,"TEXCOORD_0":1898,"TEXCOORD_1":1899},"indices":1901,"material":20,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":542,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_windowGlass_center"},{"primitives":[{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1600,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":16,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1232,"StartIndex":4800,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":774,"StartIndex":8496,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":20,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3,"StartIndex":10818,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":37,"StartIndex":10827,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":22,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":320,"StartIndex":10938,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1907,"NORMAL":1904,"POSITION":1902,"TANGENT":1903,"TEXCOORD_0":1905,"TEXCOORD_1":1906},"indices":1908,"material":23,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":164,"StartIndex":11898,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Body_center"},{"primitives":[{"attributes":{"COLOR_0":2046,"JOINTS_0":2044,"NORMAL":2041,"POSITION":2039,"TANGENT":2040,"TEXCOORD_0":2042,"TEXCOORD_1":2043,"WEIGHTS_0":2045},"indices":2047,"material":19,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":67,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Undercarriage_right"},{"primitives":[{"attributes":{"COLOR_0":2055,"JOINTS_0":2053,"NORMAL":2050,"POSITION":2048,"TANGENT":2049,"TEXCOORD_0":2051,"TEXCOORD_1":2052,"WEIGHTS_0":2054},"indices":2056,"material":19,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":67,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Undercarriage_left"},{"primitives":[{"attributes":{"COLOR_0":1914,"NORMAL":1911,"POSITION":1909,"TANGENT":1910,"TEXCOORD_0":1912,"TEXCOORD_1":1913},"indices":1915,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1184,"VertexType":"VTX","VertexVersion":2}}}],"name":"FROST_FUSELAGE001"},{"primitives":[{"attributes":{"COLOR_0":2064,"JOINTS_0":2062,"NORMAL":2059,"POSITION":2057,"TANGENT":2058,"TEXCOORD_0":2060,"TEXCOORD_1":2061,"WEIGHTS_0":2063},"indices":2065,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":62,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"FROST_KRUEGERR004"},{"primitives":[{"attributes":{"COLOR_0":2073,"JOINTS_0":2071,"NORMAL":2068,"POSITION":2066,"TANGENT":2067,"TEXCOORD_0":2069,"TEXCOORD_1":2070,"WEIGHTS_0":2072},"indices":2074,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":62,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"FROST_KRUEGERL004"},{"primitives":[{"attributes":{"COLOR_0":2082,"JOINTS_0":2080,"NORMAL":2077,"POSITION":2075,"TANGENT":2076,"TEXCOORD_0":2078,"TEXCOORD_1":2079,"WEIGHTS_0":2081},"indices":2083,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":483,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"FROST_WINGR001"},{"primitives":[{"attributes":{"COLOR_0":2091,"JOINTS_0":2089,"NORMAL":2086,"POSITION":2084,"TANGENT":2085,"TEXCOORD_0":2087,"TEXCOORD_1":2088,"WEIGHTS_0":2090},"indices":2092,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":483,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"FROST_WINGL001"},{"primitives":[{"attributes":{"COLOR_0":2100,"JOINTS_0":2098,"NORMAL":2095,"POSITION":2093,"TANGENT":2094,"TEXCOORD_0":2096,"TEXCOORD_1":2097,"WEIGHTS_0":2099},"indices":2101,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":270,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_wiper"},{"primitives":[{"attributes":{"COLOR_0":1921,"NORMAL":1918,"POSITION":1916,"TANGENT":1917,"TEXCOORD_0":1919,"TEXCOORD_1":1920},"indices":1922,"material":18,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":78,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_WINDSHIELD"},{"primitives":[{"attributes":{"COLOR_0":2109,"JOINTS_0":2107,"NORMAL":2104,"POSITION":2102,"TANGENT":2103,"TEXCOORD_0":2105,"TEXCOORD_1":2106,"WEIGHTS_0":2108},"indices":2110,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Spoiler_1_right"},{"primitives":[{"attributes":{"COLOR_0":2118,"JOINTS_0":2116,"NORMAL":2113,"POSITION":2111,"TANGENT":2112,"TEXCOORD_0":2114,"TEXCOORD_1":2115,"WEIGHTS_0":2117},"indices":2119,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":202,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Flaps_2_right"},{"primitives":[{"attributes":{"COLOR_0":2127,"JOINTS_0":2125,"NORMAL":2122,"POSITION":2120,"TANGENT":2121,"TEXCOORD_0":2123,"TEXCOORD_1":2124,"WEIGHTS_0":2126},"indices":2128,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Aileron_right"},{"primitives":[{"attributes":{"COLOR_0":2136,"JOINTS_0":2134,"NORMAL":2131,"POSITION":2129,"TANGENT":2130,"TEXCOORD_0":2132,"TEXCOORD_1":2133,"WEIGHTS_0":2135},"indices":2137,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":22,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Spoiler_1_left"},{"primitives":[{"attributes":{"COLOR_0":2145,"JOINTS_0":2143,"NORMAL":2140,"POSITION":2138,"TANGENT":2139,"TEXCOORD_0":2141,"TEXCOORD_1":2142,"WEIGHTS_0":2144},"indices":2146,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":160,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Flaps_2_left"},{"primitives":[{"attributes":{"COLOR_0":2154,"JOINTS_0":2152,"NORMAL":2149,"POSITION":2147,"TANGENT":2148,"TEXCOORD_0":2150,"TEXCOORD_1":2151,"WEIGHTS_0":2153},"indices":2155,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Aileron_left"},{"primitives":[{"attributes":{"COLOR_0":2163,"JOINTS_0":2161,"NORMAL":2158,"POSITION":2156,"TANGENT":2157,"TEXCOORD_0":2159,"TEXCOORD_1":2160,"WEIGHTS_0":2162},"indices":2164,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":136,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_FlapsKrueger_2_left"},{"primitives":[{"attributes":{"COLOR_0":2172,"JOINTS_0":2170,"NORMAL":2167,"POSITION":2165,"TANGENT":2166,"TEXCOORD_0":2168,"TEXCOORD_1":2169,"WEIGHTS_0":2171},"indices":2173,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":164,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_FlapsKrueger_2_right"},{"primitives":[{"attributes":{"COLOR_0":1928,"NORMAL":1925,"POSITION":1923,"TANGENT":1924,"TEXCOORD_0":1926,"TEXCOORD_1":1927},"indices":1929,"material":24,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":272,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Porthole_Blocker_center"},{"primitives":[{"attributes":{"COLOR_0":1935,"NORMAL":1932,"POSITION":1930,"TANGENT":1931,"TEXCOORD_0":1933,"TEXCOORD_1":1934},"indices":1936,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Beacon_Belly"},{"primitives":[{"attributes":{"COLOR_0":1942,"NORMAL":1939,"POSITION":1937,"TANGENT":1938,"TEXCOORD_0":1940,"TEXCOORD_1":1941},"indices":1943,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Beacon_Top"},{"primitives":[{"attributes":{"COLOR_0":1949,"NORMAL":1946,"POSITION":1944,"TANGENT":1945,"TEXCOORD_0":1947,"TEXCOORD_1":1948},"indices":1950,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_LandingWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1956,"NORMAL":1953,"POSITION":1951,"TANGENT":1952,"TEXCOORD_0":1954,"TEXCOORD_1":1955},"indices":1957,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_LandingWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1963,"NORMAL":1960,"POSITION":1958,"TANGENT":1959,"TEXCOORD_0":1961,"TEXCOORD_1":1962},"indices":1964,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_RunwayTurnOff_Left"},{"primitives":[{"attributes":{"COLOR_0":1970,"NORMAL":1967,"POSITION":1965,"TANGENT":1966,"TEXCOORD_0":1968,"TEXCOORD_1":1969},"indices":1971,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_RunwayTurnOff_Right"},{"primitives":[{"attributes":{"COLOR_0":1977,"NORMAL":1974,"POSITION":1972,"TANGENT":1973,"TEXCOORD_0":1975,"TEXCOORD_1":1976},"indices":1978,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_StrobeTail_Left"},{"primitives":[{"attributes":{"COLOR_0":1984,"NORMAL":1981,"POSITION":1979,"TANGENT":1980,"TEXCOORD_0":1982,"TEXCOORD_1":1983},"indices":1985,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_StrobeTail_Right"},{"primitives":[{"attributes":{"COLOR_0":1991,"NORMAL":1988,"POSITION":1986,"TANGENT":1987,"TEXCOORD_0":1989,"TEXCOORD_1":1990},"indices":1992,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Wing_Left"},{"primitives":[{"attributes":{"COLOR_0":1998,"NORMAL":1995,"POSITION":1993,"TANGENT":1994,"TEXCOORD_0":1996,"TEXCOORD_1":1997},"indices":1999,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_LIGHT_ASOBO_Wing_Right"},{"primitives":[{"attributes":{"COLOR_0":2181,"JOINTS_0":2179,"NORMAL":2176,"POSITION":2174,"TANGENT":2175,"TEXCOORD_0":2177,"TEXCOORD_1":2178,"WEIGHTS_0":2180},"indices":2182,"material":14,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":948,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2190,"JOINTS_0":2188,"NORMAL":2185,"POSITION":2183,"TANGENT":2184,"TEXCOORD_0":2186,"TEXCOORD_1":2187,"WEIGHTS_0":2189},"indices":2191,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"BLEND1","VertexVersion":2}}}],"name":"x3_ENGINE_RIGHT"},{"primitives":[{"attributes":{"COLOR_0":2199,"JOINTS_0":2197,"NORMAL":2194,"POSITION":2192,"TANGENT":2193,"TEXCOORD_0":2195,"TEXCOORD_1":2196,"WEIGHTS_0":2198},"indices":2200,"material":14,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":911,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2208,"JOINTS_0":2206,"NORMAL":2203,"POSITION":2201,"TANGENT":2202,"TEXCOORD_0":2204,"TEXCOORD_1":2205,"WEIGHTS_0":2207},"indices":2209,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"BLEND1","VertexVersion":2}}}],"name":"x3_ENGINE_LEFT"},{"primitives":[{"attributes":{"COLOR_0":2005,"NORMAL":2002,"POSITION":2000,"TANGENT":2001,"TEXCOORD_0":2003,"TEXCOORD_1":2004},"indices":2006,"material":25,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_RegNumber"},{"primitives":[{"attributes":{"COLOR_0":2012,"NORMAL":2009,"POSITION":2007,"TANGENT":2008,"TEXCOORD_0":2010,"TEXCOORD_1":2011},"indices":2013,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4148,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageB"},{"primitives":[{"attributes":{"COLOR_0":2019,"NORMAL":2016,"POSITION":2014,"TANGENT":2015,"TEXCOORD_0":2017,"TEXCOORD_1":2018},"indices":2020,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6786,"VertexType":"VTX","VertexVersion":2}}}],"name":"x3_Livery_KLM_FuselageA"},{"primitives":[{"attributes":{"COLOR_0":2217,"JOINTS_0":2215,"NORMAL":2212,"POSITION":2210,"TANGENT":2211,"TEXCOORD_0":2213,"TEXCOORD_1":2214,"WEIGHTS_0":2216},"indices":2218,"material":18,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":71,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2226,"JOINTS_0":2224,"NORMAL":2221,"POSITION":2219,"TANGENT":2220,"TEXCOORD_0":2222,"TEXCOORD_1":2223,"WEIGHTS_0":2225},"indices":2227,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1136,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2235,"JOINTS_0":2233,"NORMAL":2230,"POSITION":2228,"TANGENT":2229,"TEXCOORD_0":2231,"TEXCOORD_1":2232,"WEIGHTS_0":2234},"indices":2236,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":108,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Wing_body_right"},{"primitives":[{"attributes":{"COLOR_0":2244,"JOINTS_0":2242,"NORMAL":2239,"POSITION":2237,"TANGENT":2238,"TEXCOORD_0":2240,"TEXCOORD_1":2241,"WEIGHTS_0":2243},"indices":2245,"material":18,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":71,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2253,"JOINTS_0":2251,"NORMAL":2248,"POSITION":2246,"TANGENT":2247,"TEXCOORD_0":2249,"TEXCOORD_1":2250,"WEIGHTS_0":2252},"indices":2254,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1179,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2262,"JOINTS_0":2260,"NORMAL":2257,"POSITION":2255,"TANGENT":2256,"TEXCOORD_0":2258,"TEXCOORD_1":2259,"WEIGHTS_0":2261},"indices":2263,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":122,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":2271,"JOINTS_0":2269,"NORMAL":2266,"POSITION":2264,"TANGENT":2265,"TEXCOORD_0":2267,"TEXCOORD_1":2268,"WEIGHTS_0":2270},"indices":2272,"material":26,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x3_Wing_body_left"},{"primitives":[{"attributes":{"COLOR_0":2273,"NORMAL":2274,"POSITION":2275,"TANGENT":2276,"TEXCOORD_0":2277,"TEXCOORD_1":2278},"indices":2279,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1820,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Rudder_center.001"},{"primitives":[{"attributes":{"COLOR_0":2280,"NORMAL":2281,"POSITION":2282,"TANGENT":2283,"TEXCOORD_0":2284,"TEXCOORD_1":2285},"indices":2286,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_Left.002"},{"primitives":[{"attributes":{"COLOR_0":2287,"NORMAL":2288,"POSITION":2289,"TANGENT":2290,"TEXCOORD_0":2291,"TEXCOORD_1":2292},"indices":2293,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_right.002"},{"primitives":[{"attributes":{"COLOR_0":2294,"NORMAL":2295,"POSITION":2296,"TANGENT":2297,"TEXCOORD_0":2298,"TEXCOORD_1":2299},"indices":2300,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":302,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_DoorB.001"},{"primitives":[{"attributes":{"COLOR_0":2301,"NORMAL":2302,"POSITION":2303,"TEXCOORD_0":2304,"TEXCOORD_1":2305},"indices":2306,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":21,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageA.005"},{"primitives":[{"attributes":{"COLOR_0":2307,"NORMAL":2308,"POSITION":2309,"TANGENT":2310,"TEXCOORD_0":2311,"TEXCOORD_1":2312},"indices":2313,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_R_Door01_left.001"},{"primitives":[{"attributes":{"COLOR_0":2314,"NORMAL":2315,"POSITION":2316,"TANGENT":2317,"TEXCOORD_0":2318,"TEXCOORD_1":2319},"indices":2320,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Door01_right.001"},{"primitives":[{"attributes":{"COLOR_0":2321,"NORMAL":2322,"POSITION":2323,"TANGENT":2324,"TEXCOORD_0":2325,"TEXCOORD_1":2326},"indices":2327,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4114,"VertexType":"VTX","VertexVersion":2}}}],"name":"livery_vstab"},{"primitives":[{"attributes":{"COLOR_0":2328,"NORMAL":2329,"POSITION":2330,"TANGENT":2331,"TEXCOORD_0":2332,"TEXCOORD_1":2333},"indices":2334,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":40,"VertexType":"VTX","VertexVersion":2}}}],"name":"Cargo_Door_LIVERYDECAL"},{"primitives":[{"attributes":{"COLOR_0":2335,"NORMAL":2336,"POSITION":2337,"TEXCOORD_0":2338,"TEXCOORD_1":2339},"indices":2340,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":306,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.002"},{"primitives":[{"attributes":{"COLOR_0":2341,"NORMAL":2342,"POSITION":2343,"TANGENT":2344,"TEXCOORD_0":2345,"TEXCOORD_1":2346},"indices":2347,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2812,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.004"},{"primitives":[{"attributes":{"COLOR_0":2348,"NORMAL":2349,"POSITION":2350,"TEXCOORD_0":2351,"TEXCOORD_1":2352},"indices":2353,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":13128,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.001"},{"primitives":[{"attributes":{"COLOR_0":2354,"NORMAL":2355,"POSITION":2356,"TANGENT":2357,"TEXCOORD_0":2358,"TEXCOORD_1":2359},"indices":2360,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":112,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.003"},{"primitives":[{"attributes":{"COLOR_0":2361,"NORMAL":2362,"POSITION":2363,"TANGENT":2364,"TEXCOORD_0":2365,"TEXCOORD_1":2366},"indices":2367,"material":27,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3832,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.008"}],"nodes":[{"name":"HIPS","children":[1,4,8,11,15,18,157,191,195,334,335,336,337,340,342,343,344,347,349]},{"translation":[0.00000191479921,9.241079,-36.3505249],"rotation":[0.351553828,0.6135225,0.351553649,0.6135227],"scale":[1,1,0.9999999],"name":"Tail_Rudder_center","children":[2,3]},{"translation":[-26.3529663,26.68856,0.000005103716],"rotation":[-0.3515538,-0.6135225,-0.351553679,0.6135227],"scale":[1.00000012,1,1],"mesh":0,"name":"Rudder_center"},{"translation":[-3.43369675,-0.541872,-0.002254486],"rotation":[-0.3515538,-0.6135225,-0.351553679,0.6135227],"scale":[1.00000012,1,1],"mesh":1,"name":"Livery_KLM_Rudder"},{"translation":[-0.726416945,-1.95301223,23.6319084],"rotation":[0.427315861,0.516586959,-0.473471433,0.5712827],"scale":[1,0.99999994,1],"name":"Door_Right02_center","children":[5,6,7]},{"translation":[0.458667755,-0.0267460346,0.552114964],"rotation":[0.512122333,-0.626890063,-0.3186886,-0.49313],"scale":[1.00000012,1,0.99999994],"name":"Door_Right03_center"},{"translation":[-0.00000381469727,0.000004172325,-0.00000381469727],"rotation":[-0.427316219,-0.516587,0.4734716,0.5712822],"scale":[0.999998748,0.999999762,0.9999996],"mesh":2,"name":"C_Door_right"},{"translation":[0.114679337,-0.11825192,0.424622059],"rotation":[-0.427315861,-0.5165871,0.473471284,0.571282744],"scale":[0.9999999,0.99999994,1],"mesh":3,"name":"Livery_KLM_RGDoor"},{"translation":[-0.731975853,-1.761568,25.1424141],"rotation":[-0.0471240319,0.7069722,-0.06672683,0.7025078],"scale":[1.00000012,1,0.9999999],"name":"Door_Right01_center","children":[9,10]},{"translation":[-0.7503414,-0.0338468552,0.414570749],"rotation":[-0.396525681,-0.50923115,0.5034293,0.574465036],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Right03_hydraulic01_center"},{"translation":[0.0000247955322,0,0.0000267624855],"rotation":[0.0471240319,-0.7069723,0.06672687,0.7025077],"scale":[0.99999994,0.999999464,1],"mesh":4,"name":"C_Door_01_right"},{"translation":[0.723948359,-1.95345688,23.5944271],"rotation":[0.00493113929,0.705479443,-0.0346209928,0.707867146],"scale":[0.9999999,0.99999994,0.99999994],"name":"Door_Left02_center","children":[12,13,14]},{"translation":[0.3847618,-0.58023,-0.0432002544],"rotation":[0.7827109,0.116333261,0.33318314,0.5126591],"scale":[1.00000012,1.00000072,1.00000048],"name":"Door_Left03_center"},{"translation":[-0.000009536743,0.00000524520874,0.00000381469727],"rotation":[-0.00493113929,-0.705479443,0.034621,0.707867146],"scale":[1,1.00000012,1.00000012],"mesh":5,"name":"C_Door_left"},{"translation":[0.05247307,-0.443425417,0.06258595],"rotation":[-0.004931191,-0.7054795,0.03462106,0.7078671],"scale":[1,1.00000012,1.00000012],"mesh":6,"name":"Livery_KLM_LGDoor"},{"translation":[0.7319975,-1.76198089,25.1398849],"rotation":[-0.0667134,0.7025059,-0.0471375138,0.7069745],"scale":[0.9999999,1.00000012,0.9999999],"name":"Door_Left01_center","children":[16,17]},{"translation":[-0.7485962,-0.05103779,-0.416645736],"rotation":[-0.00976675749,-0.791484535,0.164192423,0.58864063],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Left03_hydraulic01_center"},{"translation":[0.00001335144,-0.00000381469727,0.0000113844872],"rotation":[0.0667133,-0.7025058,0.0471375063,0.706974566],"scale":[1.00000083,0.9999988,0.999998569],"mesh":7,"name":"C_Door_01_left"},{"name":"Wing_left","children":[19,26,153,154]},{"translation":[1.450443,1.40532589,-32.1805077],"rotation":[-0.699695766,0.021218136,0.08916643,0.7085372],"scale":[1,0.99999994,0.99999994],"name":"Trim_Elevator_left","children":[20,22,23,24,25]},{"translation":[4.46584272,4.07697868,0.00621420145],"rotation":[0.7352894,0.102221251,0.101580471,0.662255049],"scale":[0.9999998,0.9999999,0.9999999],"name":"Elevator_left","children":[21]},{"translation":[-20.7159176,2.83748746,30.901226],"rotation":[-0.0506435744,-0.223118022,-0.04389922,0.9724847],"scale":[1,0.99999994,1.00000012],"mesh":8,"name":"ELEVATOR_LEFT_1"},{"translation":[-6.54495239,-31.5664959,-0.619311869],"rotation":[0.699695766,-0.0212181583,-0.08916644,0.7085372],"scale":[1,1,0.9999999],"mesh":9,"name":"FROST_ELEVATORL001"},{"translation":[-6.54495144,-31.5664921,-0.6193118],"rotation":[0.699695766,-0.0212181453,-0.08916643,0.7085372],"scale":[1,0.99999994,0.9999999],"mesh":10,"name":"TRIM_ELEVATOR_LEFT_1"},{"translation":[2.06527,1.33728981,0.291667283],"rotation":[-0.08916645,-0.7085372,-0.699695766,-0.021218054],"scale":[1.00000012,1,0.99999994],"mesh":11,"name":"LIGHT_ASOBO_Logo_Left"},{"translation":[-0.0206251144,0.0453968048,-0.08812708],"rotation":[0.699695766,-0.0212181453,-0.08916643,0.7085372],"scale":[1,0.99999994,0.9999999],"mesh":12,"name":"Livery_KLM_ElevatorTrimL"},{"translation":[3.348375,-0.123601377,-1.04428136],"rotation":[0.00473341,0.2594188,0.0519678928,0.964354157],"scale":[1.00000048,1.0000006,1.00000024],"name":"WING_BONE_LEFT_00","children":[27,64,67,70,124,126,129,131,133,135,145,146,147,148,150,152]},{"translation":[8.314296,-0.00000137090683,-5.364418e-7],"rotation":[-8.754432e-8,1.20198811e-8,-3.7252903e-9,1],"scale":[1.00000012,0.99999994,1],"name":"WING_BONE_LEFT_01","children":[28,51,53,55,57,61,62,63]},{"translation":[6.33785439,-0.03361386,-0.00021648407],"rotation":[7.636845e-8,8.58562856e-8,-3.72529e-9,1],"scale":[1.00000024,0.99999994,1.00000012],"name":"WING_BONE_LEFT_02","children":[29,39,40,41,43,44,45,46,47,48,49,50]},{"translation":[6.566532,-0.00651597977,0.002133131],"rotation":[7.497147e-8,6.48724452e-8,-1.63912773e-7,1],"scale":[0.9999999,1,0.9999999],"name":"WING_BONE_LEFT_03","children":[30,35,36,37,38]},{"translation":[5.34786224,0.0235242844,-0.00155836344],"rotation":[-5.220064e-7,-2.883608e-7,3.72529065e-8,1],"scale":[0.99999994,0.99999994,0.999999762],"name":"WING_BONE_LEFT_04","children":[31,32,33,34]},{"translation":[0.660989761,0.0385291576,1.23135138],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":13,"name":"LIGHT_ASOBO_NavigationRed"},{"translation":[5.1418705,0.203219891,-1.33749044],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":14,"name":"LIGHT_ASOBO_NavigationWing_Left"},{"translation":[1.00637817,0.0480079651,1.13949251],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":15,"name":"LIGHT_ASOBO_StrobeWing_Left"},{"translation":[-0.04543686,0.288306952,1.03098464],"rotation":[0.682595,0.02664601,-0.03207462,0.7296063],"scale":[1.00000072,1.00000083,1.00000048],"name":"FlapsKrueger_5_left"},{"translation":[-0.2617283,0.11290288,0.0147028565],"rotation":[0.009747561,-0.0007136329,0.9998518,0.0141735217],"scale":[1.00000024,1.00000048,0.99999994],"name":"Wing_Spoiler_2_5_left"},{"translation":[-0.004673004,-0.00971519947,-0.461001784],"rotation":[0.008513641,-0.0145073226,0.00494640833,0.9998463],"scale":[1.00000083,0.9999997,1.00000012],"name":"Aileron_1_left"},{"translation":[3.998932,0.0289180279,-0.344465554],"rotation":[0.008513387,-0.0145070786,0.00494640134,0.999846339],"scale":[1.00000072,0.9999997,1.00000012],"name":"Aileron_2_left"},{"translation":[0.03655243,0.36692667,1.46626389],"rotation":[0.682594657,0.026645815,-0.0320744365,0.729606569],"scale":[1.000001,1.00000048,1.00000048],"name":"FlapsKrueger_4_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Wing_Spoiler_2_3_left"},{"translation":[0.214468,0.01886487,-0.6683294],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Wing_Spoiler_2_2_left"},{"translation":[6.303793,-0.008411646,-0.6237762],"rotation":[-0.00684345234,0.6832026,0.0139844446,0.730062962],"scale":[0.99999994,1.00000036,1.00000024],"name":"Flaps_3_left","children":[42]},{"translation":[-0.111465216,-0.127858162,-2.3174572],"rotation":[0.703286,-0.0672622249,-0.0638457462,0.704832137],"scale":[0.999999464,0.999998331,0.999998868],"name":"flap_hydrolics_19_left"},{"translation":[0.214487076,0.019739747,-0.6686902],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_2_left"},{"translation":[0.204582214,-0.17100656,-0.421413481],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_2_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Hydrolic1_SPOILER_2_3_left"},{"translation":[2.60530663,-0.109168291,-0.32803908],"rotation":[0.00760348374,0.6947899,0.00263366452,0.719167769],"scale":[0.9999992,0.999999344,1.00000107],"name":"Hydrolic2_SPOILER_2_3_left"},{"translation":[4.93304634,-0.0184860229,-0.506818056],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_4_left"},{"translation":[4.92433929,-0.07270765,-0.265460849],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_4_left"},{"translation":[4.93304634,-0.0184860229,-0.506819963],"rotation":[0.00760329235,0.6947918,0.00263375067,0.719166],"scale":[0.999999046,0.9999996,1.000001],"name":"Wing_Spoiler_2_4_left"},{"translation":[-0.2762127,0.432390571,2.03908443],"rotation":[0.682594657,0.0266456641,-0.0320743136,0.729606569],"scale":[1.00000131,0.9999998,1],"name":"FlapsKrueger_3_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Wing_Spoiler_2_1_left","children":[52]},{"translation":[-0.00446128845,0.128245,3.35860157],"rotation":[0.0248633735,-0.8570692,-0.04156179,0.5129199],"scale":[1.00000024,0.9999982,1.00000036],"mesh":16,"skin":0,"name":"Spoiler_2_1_left"},{"translation":[2.86842632,-0.255201161,-1.31981921],"rotation":[-0.00684322044,0.6832027,0.0139845619,0.730062842],"scale":[0.9999999,0.999999762,1.00000012],"name":"Flaps_2_left","children":[54]},{"translation":[-0.08635807,-0.170148611,2.576231],"rotation":[0.729701459,-0.14941819,-0.107722856,0.6584875],"scale":[0.999999762,0.999998748,0.999999464],"name":"flap_hydrolics_18_left"},{"translation":[1.75635815,0.1111089,-1.07744527],"rotation":[-0.00158689881,-0.0932033658,0.008658969,0.995608151],"scale":[0.999999166,0.999999166,0.9999998],"name":"Wing_Spoiler_1_4_left","children":[56]},{"translation":[0,6.556511e-7,-0.00000309944153],"rotation":[-0.0102724442,-0.168275,-0.0600607246,0.983855069],"scale":[1.00002253,1.00000155,0.9999774],"mesh":17,"name":"Spoiler_2_left"},{"translation":[1.266262,-0.357050836,-0.87978965],"rotation":[0.0357552953,-0.105803363,0.0137958294,0.9936483],"scale":[0.999999,0.9999991,0.9999996],"name":"Hydrolic2_Flaps_1_1_left","children":[58,60]},{"translation":[-0.002585411,0.30455035,-0.6518159],"rotation":[-0.0045641847,-0.004072023,-0.000149001367,0.9999813],"scale":[1.00000012,0.99999994,0.99999994],"name":"Flaps_1_1_left","children":[59]},{"translation":[0.5234699,-0.56279856,-0.07738066],"rotation":[-0.0439668447,-0.153274342,-0.0555402227,0.985641539],"scale":[1.0000006,1.0000006,1.00000072],"mesh":18,"name":"FLAPS_1_1_LEFT_1"},{"translation":[-0.0025844574,0.304550469,-0.651815653],"rotation":[0.00173283485,-0.0000230509668,-0.000235040134,0.9999985],"scale":[1.00000024,0.999999642,1],"name":"Hydrolic1_Flaps_1_1_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic1_SPOILER_2_1_left"},{"translation":[4.08401966,-0.29387182,-0.499293],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic2_SPOILER_2_1_left"},{"translation":[-1.92368126,0.48232764,2.70130849],"rotation":[0.6825947,0.0266455319,-0.0320741422,0.729606569],"scale":[1.00000143,1.00000024,1.00000024],"name":"FlapsKrueger_2_left"},{"translation":[1.22019815,0.462972224,3.0046103],"rotation":[0.682609856,0.0262488779,-0.031650465,0.7296253],"scale":[0.9999991,0.999999464,0.9999997],"name":"FlapsKrueger_1_left","children":[65,66]},{"translation":[-4.343968,-4.05272341,-0.25176844],"rotation":[-0.652155936,-0.2502154,0.1695626,0.695221841],"scale":[1.00000024,0.9999996,1.00000024],"mesh":19,"name":"FROST_KRUEGERL003"},{"translation":[-0.05399704,-0.430566549,0.5395656],"rotation":[-0.6521564,-0.250215322,0.169562936,0.695221364],"scale":[1.00000107,0.9999992,1.000001],"mesh":20,"name":"FLAPSKRUEGER_1_LEFT_1"},{"translation":[5.42593765,-0.5243263,-3.44257951],"rotation":[-0.047746323,0.516863644,0.00933413,0.854684234],"scale":[0.999999046,0.9999994,0.999999642],"name":"Flaps_1_left","children":[68,69]},{"translation":[0.00532531738,-0.341880441,2.4792347],"rotation":[0.723513842,0.00672937743,0.05795717,0.6878397],"scale":[1.0000006,0.999999642,1],"name":"flap_hydrolics_17_left"},{"translation":[0.05366087,-0.5436171,-0.0224170685],"rotation":[0.066437535,-0.717635334,-0.06825059,0.689875],"scale":[1.00000036,1.00000048,1.00000083],"mesh":21,"name":"FLAPS_1_LEFT_1"},{"translation":[3.86463928,-0.591216445,-3.30302334],"rotation":[0.4957455,-0.06434884,0.8660403,-0.008359094],"scale":[0.9999995,0.9999992,0.9999999],"name":"Wheel_Base_left","children":[71,72,79,89,95,99,100,122,123]},{"translation":[0.238498211,0.6228665,-0.060988903],"rotation":[-0.7381156,-0.653139,0.109995052,0.128436789],"scale":[0.999999762,0.9999995,1.0000006],"name":"Landing_Gear_18_left"},{"translation":[0.3341503,2.01456714,-0.263353348],"rotation":[-0.7060459,0.0425602868,-0.7058247,-0.0387211032],"scale":[0.99999994,1.00000072,0.9999997],"name":"Landing_Gear_33_left","children":[73,78]},{"translation":[-0.117916107,0.148765087,-0.04537821],"rotation":[-0.984737754,0.008130156,-0.173853,0.0007824776],"scale":[0.9999992,1.00000107,0.9999999],"name":"Landing_Gear_37_left","children":[74,76,77]},{"translation":[-0.667953968,-0.574824452,-0.007077217],"rotation":[-0.508839,-0.4962332,0.4942222,0.5005796],"scale":[0.9999965,1.00000238,1.00000072],"name":"Landing_Gear_17_left","children":[75]},{"translation":[-0.0260605812,-0.00951004,-0.411586165],"rotation":[0.5755906,-0.5788251,-0.406154752,-0.410725355],"scale":[1.00000036,1.00000107,0.999999046],"mesh":22,"name":"LANDING_GEAR_17_LEFT_1"},{"translation":[-0.220382929,2.38418579e-7,-0.112304211],"rotation":[-4.22581365e-8,-4.030838e-8,3.632154e-8,1],"scale":[0.9999999,1.00000083,0.9999992],"name":"Landing_Gear_31_left"},{"translation":[0.01300478,0.004827738,0.0120024681],"rotation":[-0.984737754,0.008130247,-0.173853159,-0.0007818118],"scale":[1.00000155,0.9999981,1.00000286],"mesh":23,"name":"LANDING_GEAR_31_LEFT_1"},{"translation":[0.006790161,-0.001244545,-0.0103011131],"rotation":[5.885957e-7,1.35972613e-7,4.619353e-7,1],"scale":[1,0.9999995,1.00000012],"mesh":24,"name":"LANDING_GEAR_33_LEFT_1"},{"translation":[0.66707325,2.00849175,-0.241577148],"rotation":[-0.7096821,-0.09555769,-0.696978,0.0379722454],"scale":[0.99999994,1.00000072,0.9999998],"name":"Landing_Gear_34_left","children":[80,88]},{"translation":[-0.09678888,0.1311264,0.0691962242],"rotation":[-0.8397728,-0.406130165,0.352002054,0.07703619],"scale":[0.999999046,1.00000119,0.9999998],"name":"Landing_Gear_38_left","children":[81,87]},{"translation":[-0.006328702,-0.943199158,0.00322252512],"rotation":[-0.7569836,-0.6488944,0.07686616,0.001832599],"scale":[0.9999984,1.00000346,0.9999983],"name":"Landing_Gear_32_left","children":[82,85,86]},{"translation":[0,-2.38418579e-7,4.76837158e-7],"rotation":[-1.71364093e-7,-3.35274137e-8,5.960465e-8,1],"scale":[0.99999994,0.9999995,1.00000036],"name":"Landing_Gear_27_left","children":[83,84]},{"translation":[-0.161371708,0.885039,-0.0548084974],"rotation":[0.0121803228,-0.607089639,0.0937830061,0.7889858],"scale":[0.999996841,0.9999983,1.00000453],"name":"Landing_Gear_28_left"},{"translation":[0.0539302826,0.152822375,-0.0107142925],"rotation":[-0.04510645,0.07957641,0.09312738,0.9914436],"scale":[0.9999985,0.9999958,1.00000453],"name":"Landing_Gear_23_left"},{"translation":[-1.28527832,0.0296032429,0.135627866],"rotation":[-0.0498267226,0.05795893,-0.0002607252,0.9970747],"scale":[0.99999404,1.00000179,1.00000525],"name":"Landing_Gear_29_left"},{"translation":[0.0296807289,0.0326365232,0.02705884],"rotation":[-0.0173291266,-0.28622362,0.244317,0.926328838],"scale":[1.00000226,0.999995053,0.9999995],"mesh":25,"name":"Landing_Gear_30_left"},{"translation":[0.0110375881,0.00550031662,0.00203478336],"rotation":[-0.837783,-0.418002129,0.277073622,-0.215926424],"scale":[0.9999981,0.9999996,1.00000262],"mesh":26,"name":"LANDING_GEAR_32_LEFT_1"},{"translation":[0.006869793,-0.00369310379,-0.009633541],"rotation":[-0.151399851,0.006728817,0.04388341,0.9874751],"scale":[1,0.9999997,1.00000143],"mesh":27,"name":"LANDING_GEAR_34_LEFT_1"},{"translation":[0.276956558,1.2843008,-0.173484325],"rotation":[-0.708400846,-0.000837276748,-0.70367527,-0.0548514463],"scale":[0.9999982,1.00000179,1],"name":"Landing_Gear_20_left","children":[90,94]},{"translation":[-0.008528233,0.0648286343,-0.0042090416],"rotation":[0.5267732,0.43828246,-0.377283126,0.6229574],"scale":[1,1,0.999999464],"name":"Landing_Gear_21_left","children":[91,92,93]},{"translation":[-0.00144147873,-0.162924767,-0.0667929649],"rotation":[0.5143717,-0.5180526,0.4851355,0.4813385],"scale":[0.99999845,1.00000036,1.00000072],"name":"Landing_Gear_19_left"},{"translation":[-9.536743e-7,-0.13403368,-0.00518023968],"rotation":[4.84279781e-8,-9.413213e-8,3.74281157e-8,1],"scale":[1.00000012,0.99999994,1.00000048],"name":"Landing_Gear_41_left"},{"translation":[0.0119662285,0.00288558,0.001452446],"rotation":[-0.557000756,-0.422331482,0.394311547,0.5965775],"scale":[1.00000191,1.00000072,1.00000072],"mesh":28,"name":"LANDING_GEAR_21_LEFT_1"},{"translation":[0.006864071,-0.00106501579,-0.0102601051],"rotation":[-0.01924274,0.000813027669,0.0422104374,0.9989231],"scale":[0.9999999,0.9999985,0.9999989],"mesh":29,"name":"Landing_Gear_Part17_left"},{"translation":[0.2054596,2.51543021,0.0104985237],"rotation":[0.05778034,0.701247156,0.707739532,0.06339251],"scale":[1.00000048,1.0000006,0.9999989],"name":"Landing_Gear_07_left","children":[96,97,98]},{"translation":[0.713954,-0.125073433,0.177424431],"rotation":[-0.444532126,-0.450933218,0.5486535,0.5459211],"scale":[1.000001,1.00000107,0.999999046],"name":"landing_gear08_left"},{"translation":[0.302407265,-0.1270957,-0.1663909],"rotation":[-0.4445324,-0.450934261,0.548653364,0.545920134],"scale":[0.999999642,1.00000262,0.999999166],"name":"landing_gear01_left"},{"translation":[0.014550209,0.009218693,-0.00438737869],"rotation":[-0.447609961,-0.4536723,0.54608196,0.543710768],"scale":[0.999999344,1.00000107,0.9999991],"mesh":30,"name":"LANDING_GEAR_07_LEFT_1"},{"translation":[0.2576151,2.26505852,-0.121347904],"rotation":[-0.7060459,0.0425600223,-0.705824733,-0.0387208536],"scale":[1.00000036,1.00000167,1.00000012],"name":"landing_gear07_left"},{"translation":[0.37328434,3.202888,-0.0094332695],"rotation":[-0.001716404,-0.707084954,-0.00556211546,0.7071046],"scale":[0.9999992,1.00000048,0.99999994],"name":"Landing_Gear_10_left","children":[101,103,104,119,120,121]},{"translation":[0.02512598,-0.339024067,0.11894083],"rotation":[-0.53749454,-0.5397919,-0.461148649,0.455045432],"scale":[0.9999951,0.999999046,1.00000632],"name":"Landing_Gear_08_left","children":[102]},{"translation":[0.5069418,-0.054962635,-0.228208542],"rotation":[-0.495762348,-0.502005458,0.5020067,0.5001996],"scale":[1.00000155,0.999994338,1.00000393],"mesh":31,"name":"LANDING_GEAR_08_LEFT_1"},{"translation":[-0.106812954,-0.1869855,0.245285511],"rotation":[-0.99862957,-4.82746259e-7,4.917588e-7,-0.05233586],"scale":[1.00000107,1.00000143,0.9999998],"name":"landing_gear05_left"},{"translation":[0,0.00338745117,-0.0809435844],"rotation":[-0.99862957,-1.53951171e-10,-6.803354e-11,-0.0523355044],"scale":[0.99999994,0.999999762,1],"name":"Landing_Gear_09_left","children":[105,106,109,112,115,118]},{"translation":[0.04093027,-0.241693735,-0.0619039536],"rotation":[-0.500420034,-0.500418,0.499581784,-0.499579519],"scale":[0.9999992,1.000001,1],"name":"Landing_Gear_35_left"},{"translation":[0.0474247932,-0.24166441,0.0612587929],"rotation":[-0.5004198,-0.500417769,0.499582082,-0.499579728],"scale":[0.9999991,1.000001,0.9999999],"name":"Landing_Gear_36_left","children":[107,108]},{"translation":[-0.0000152587891,9.536743e-7,0.00000762939453],"rotation":[-0.500419438,-0.500417769,0.499582171,0.49958],"scale":[0.9999994,0.9999998,1.00000107],"mesh":32,"name":"LANDING_GEAR_36_LEFT_1"},{"translation":[0.123146534,-0.0064868927,0.000236988068],"rotation":[-0.500419736,-0.5004177,0.499582052,0.499579847],"scale":[0.9999992,1.00000012,1.00000083],"mesh":33,"name":"LANDING_GEAR_35_LEFT_1"},{"translation":[0.09416151,0.312451124,0.243170738],"rotation":[0.5010935,-0.499796718,0.49570924,0.50336957],"scale":[1.00000036,1.00000036,1.00000012],"name":"Landing_Gear_06_left","children":[110,111]},{"translation":[0.414316177,0.08274412,-0.02635479],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear03_left"},{"translation":[0.217025757,0.08245802,-0.258730173],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear02_left"},{"translation":[0.0517382622,-0.00169229507,0.681097031],"rotation":[-8.662515e-7,9.862437e-15,7.1051156500000006e-15,1],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_01_key_left","children":[113,114]},{"translation":[4.76837158e-7,0,-0.00000190734863],"rotation":[0.00001512464,-0.00444018934,0.00318110641,0.9999851],"scale":[1.00001037,0.999988437,1.00000322],"mesh":34,"name":"LWheel_01_still"},{"translation":[-4.76837158e-7,-4.76837158e-7,0],"rotation":[0.0009201447,-1.25249119e-14,-3.5526872100000003e-15,0.9999996],"scale":[0.999952137,1.000008,1.0000416],"mesh":35,"name":"LWheel_01_blurred"},{"translation":[0.03893137,-0.00159454346,-0.7607932],"rotation":[-1,-3.5525578200000003e-15,1.26194213e-14,1.19248815e-8],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_02_key_left","children":[116,117]},{"translation":[-4.76837158e-7,0.000005722046,0.000011920929],"rotation":[-1,1.03147613e-7,1.32915375e-7,-1.94402332e-7],"scale":[1.00001013,0.9999891,1.00000179],"mesh":36,"name":"LWheel_02_still"},{"translation":[0,-2.38418579e-7,0],"rotation":[0.0009060062,-0.004437104,0.00318526686,0.9999847],"scale":[1.00001,0.9999903,1.00000131],"mesh":37,"name":"LWheel_02_blurred"},{"translation":[0.0457148552,-0.000402212143,0.00207710266],"rotation":[1.52736789e-7,-7.712509e-8,-5.93718141e-9,1],"scale":[1.00000131,1.00000107,1.00000072],"mesh":38,"name":"LANDING_GEAR_09_LEFT_1"},{"translation":[0.0153021812,-0.474268675,-0.275248051],"rotation":[-0.9986295,-5.223288e-7,0.00000105891706,-0.05233606],"scale":[1.000003,0.999992669,1.00000656],"name":"landing_gear06_left"},{"translation":[-0.106812,-0.491230726,-0.296488762],"rotation":[-0.9992415,-2.31640115e-7,-0.00000165028121,-0.0389420353],"scale":[0.9999983,1.00000632,0.9999982],"name":"landing_gear04_left"},{"translation":[-5.05787468,-3.956489,0.5236058],"rotation":[-0.99862957,-4.92220664e-9,9.392163e-8,-0.05233583],"scale":[1.00000286,0.9999992,0.999999344],"mesh":39,"name":"LANDING_GEAR_10_LEFT_1"},{"translation":[1.22382164,-0.348029673,-0.153943539],"rotation":[0.00730145676,-0.7070985,0.00345581421,0.707069039],"scale":[0.999999464,1.00000012,1],"name":"Landing_Gear_14_left"},{"translation":[-0.0100827217,0.00238108635,0.00680065155],"rotation":[-0.7060458,0.0425598063,-0.705824852,-0.0387206674],"scale":[0.999999464,1.00000048,1.00000072],"mesh":40,"name":"Landing_gear_Root_left"},{"translation":[7.87326145,-0.4715016,-1.4636035],"rotation":[-0.04368639,0.5110596,0.006458442,0.85841006],"scale":[1.0000267,0.9999997,0.9999734],"name":"Spoiler_hydrolics_06_left","children":[125]},{"translation":[0.30559063,0.37230444,0.0004930496],"rotation":[-0.00121602661,0.0246534385,-0.364978939,0.93068856],"scale":[0.999999,0.999998868,1.00000012],"name":"Spoiler_hydrolics_05_left"},{"translation":[2.3125658,-0.8711244,-4.775808],"rotation":[0.6289141,0.328698784,-0.377832532,0.594698846],"scale":[0.999999,1.00000024,0.9999997],"name":"Landing_Gear_15_left","children":[127]},{"translation":[-0.107633591,0.367097139,0.221658289],"rotation":[-0.579571843,0.415744662,-0.575418234,-0.400183469],"scale":[0.9999995,1.000001,0.9999995],"name":"Landing_Gear_16_left","children":[128]},{"translation":[0.6260607,-0.0166921616,-0.713186264],"rotation":[0.5755837,-0.5788183,-0.406164557,-0.4107349],"scale":[1.00000072,1.00000107,1.00000012],"mesh":41,"name":"LANDING_GEAR_16_LEFT_1"},{"translation":[1.24259949,-1.15350151,-2.95930552],"rotation":[0.479384363,-0.257725239,0.833346248,0.09644882],"scale":[0.9999996,0.999999344,0.9999994],"name":"Door02_left","children":[130]},{"translation":[0.028219223,0.008840859,0.031195879],"rotation":[-0.709571242,0.0376069546,-0.701306939,-0.0571220443],"scale":[1.00000238,1.00000334,1.000001],"mesh":42,"name":"DOOR02_LEFT_1"},{"translation":[3.96934652,-0.816748261,-2.69679284],"rotation":[0.538764954,-0.0777338743,0.838860333,-0.00181733642],"scale":[0.9999999,0.9999993,0.9999994],"name":"Door03_left","children":[132]},{"translation":[0.0202989578,-0.03869778,0.005985737],"rotation":[-0.741207242,0.0514065921,-0.668730259,-0.0277309269],"scale":[0.9999984,0.9999996,1.00000072],"mesh":43,"name":"DOOR03_LEFT_1"},{"translation":[3.8755126,-0.573711038,-3.31409645],"rotation":[-0.96442163,0.05358719,-0.258697569,-0.009747672],"scale":[1,0.9999997,1],"name":"WING_DOOR02_left","children":[134]},{"translation":[0.119513988,-0.0409513861,-0.00462818146],"rotation":[-0.9999388,-0.009707425,0.000407344516,0.00529700425],"scale":[1.00000072,0.9999996,0.9999997],"mesh":44,"name":"Door04_left"},{"translation":[5.868531,-0.6075288,2.41399121],"rotation":[0.007325325,-0.259887159,-0.06454417,0.9634517],"scale":[0.9999994,0.999999344,0.999999642],"name":"Engine_PIVOT_LEFT_1","children":[136,140,142,143,144]},{"translation":[0.187080383,-1.39431429,7.75744867],"rotation":[-0.706999362,-0.004892461,0.7069988,-0.0167527739],"scale":[1,1,0.99999994],"name":"Reactor_Prop_Still_left","children":[137,138,139]},{"translation":[2.091803,0.00000238418579,-9.536743e-7],"rotation":[-0.7071068,-4.206454e-8,0.7071068,1.42821847e-7],"scale":[0.9999995,0.99999994,0.999999762],"mesh":45,"name":"1_still_left"},{"translation":[2.09180164,-3.57627869e-7,-0.000005722046],"rotation":[-0.7071002,-0.00308519369,-0.707099855,-0.00308541069],"scale":[1.00000012,1,0.9999999],"mesh":46,"name":"1_slow_left"},{"translation":[2.09180021,0,-0.000005722046],"rotation":[1.12611218e-7,-0.7071068,-8.231805e-8,0.7071067],"scale":[0.9999999,0.9999998,0.999998569],"mesh":47,"name":"1_blurred_left"},{"translation":[0.185770988,-1.42669415,2.07120037],"rotation":[-0.00841917,-0.000007856129,0.0153245768,0.9998472],"scale":[0.997038,1.00016522,1.00284588],"name":"Reactor_Back_left","children":[141]},{"translation":[9.536743e-7,-8.34465e-7,2.90572643e-7],"rotation":[-5.23868771e-9,-1.99391472e-8,-9.537325e-8,1],"scale":[0.9999994,1.0000006,0.999999762],"mesh":48,"name":"Engine_Duct_left"},{"translation":[0.188099861,-1.456358,4.35355],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":49,"name":"FX_EXHAUST_LEFT"},{"translation":[-9.66222,-0.1816263,1.91145885],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":50,"name":"FROST_ENGINEL001"},{"translation":[0.170079231,-1.13339186,4.487426],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":51,"name":"Livery_KLM_EngA"},{"translation":[3.62843657,-0.5176573,-4.124836],"rotation":[-0.0436866172,0.511059642,0.00645813253,0.8584101],"scale":[0.999999642,0.999999046,0.9999993],"name":"Spoiler_1_1_left"},{"translation":[7.982996,-0.0362906456,-1.76054883],"rotation":[-0.0436880365,0.511059463,0.006455744,0.8584102],"scale":[1.00002742,0.9999997,0.999972761],"name":"Spoiler_1_3_left"},{"translation":[5.91475,-0.2239846,-2.897406],"rotation":[-0.0452547148,0.504299164,0.005931459,0.862322],"scale":[1.000028,0.9999999,0.9999706],"name":"Spoiler_1_2_left"},{"translation":[5.84781456,-0.608062744,-2.62398887],"rotation":[-0.043685995,0.5110597,0.006459456,0.85841006],"scale":[0.9999993,0.999998748,0.9999998],"name":"Spoiler_hydrolics_04_left","children":[149]},{"translation":[0.266388416,0.3188628,-0.007379055],"rotation":[-0.00605567638,0.0124739613,0.4357108,0.899979949],"scale":[1.00000525,1.00001335,0.9999815],"name":"Spoiler_hydrolics_03_left"},{"translation":[3.50820732,-0.7972355,-3.85419559],"rotation":[-0.04368655,0.511059642,0.006458112,0.8584101],"scale":[0.9999995,0.999999,0.9999994],"name":"Spoiler_hydrolics_01_left","children":[151]},{"translation":[0.2856431,0.290298223,0.00000190734863],"rotation":[0.6595856,0.287899733,0.275730371,0.637207448],"scale":[1.00000024,1.00000024,1.00000012],"name":"Spoiler_hydrolics_02_left"},{"translation":[12.9740458,-1.4153657,6.55199146],"rotation":[0.00732529536,-0.2598874,-0.06454403,0.963451564],"scale":[1.00000036,1.00000012,1.00000107],"name":"Engine_PIVOT_LEFT_2"},{"translation":[0.317629337,-0.32808125,-5.10369],"rotation":[-0.997071862,-0.0764705241,2.86940356e-8,-1.9079441e-7],"scale":[0.99999994,0.99999994,1],"name":"Door03_Hydraulic01_left"},{"translation":[0.6497253,-2.102611,-5.016356],"rotation":[0.490909845,0.490909845,-0.508927763,0.508927941],"name":"WING_DOOR03_left","children":[155,156]},{"translation":[0.07994127,0.32234937,-0.158693552],"name":"Door03_Hydraulic02_left"},{"translation":[9.536743e-7,2.38418579e-7,0.000008106232],"rotation":[-0.490910053,-0.49091,0.5089277,0.5089277],"scale":[1.00000012,1.00000215,1.00000155],"mesh":52,"name":"Door01_left"},{"translation":[0,-1.84435129,23.1178951],"rotation":[0.0270323772,0,0,0.999634564],"name":"Landing_Gear_NosePart16_center","children":[158,161,164,176,178,180,182,184,185,186,187,188,189,190]},{"translation":[0.226090789,-0.9272857,0.305862427],"rotation":[-0.0270318538,0.00418857532,-0.00003651558,0.9996258],"scale":[1.00000012,1.00000024,0.9999999],"name":"Landing_Gear_NosePart10_center","children":[159,160]},{"translation":[-0.0005621668,0.02093625,0.0675087],"rotation":[-3.940685e-7,-0.00418804958,-0.0000767254242,0.999991238],"scale":[0.999999344,0.999999762,1.00000036],"mesh":53,"name":"LANDING_GEAR_NOSEPART10_CENTER_1"},{"translation":[-0.0236788,0.00500941277,-0.220270157],"rotation":[0.0352128372,0.09999999,-0.00323027675,0.994358957],"scale":[1,1,0.99999994],"name":"Landing_Gear_NosePart10_center001"},{"translation":[-0.229184151,-0.9398352,0.313922882],"rotation":[-0.0270323772,-4.13823678e-8,-1.43921968e-8,0.999634564],"scale":[1.00000012,1.00000024,1.00000024],"name":"Landing_Gear_NosePart09_center","children":[162,163]},{"translation":[-2.98023224e-7,0.135825634,0.0601291656],"rotation":[4.47034836e-8,1.99840166e-15,0,1],"scale":[1.00000012,0.9999995,0.9999999],"mesh":54,"name":"LANDING_GEAR_NOSEPART09_CENTER_1"},{"translation":[0.0319646746,0.0176465511,-0.229705811],"rotation":[0.0384532958,-0.0858134,-0.00141277455,0.995567858],"scale":[1.00000012,0.9999998,1.00000024],"name":"Landing_Gear_NosePart09_center001"},{"translation":[-3.14321369e-9,-0.9186151,-0.05517769],"rotation":[-2.33349866e-7,-0.1679142,-4.27881552e-8,0.985801637],"scale":[1.00000012,1.00000012,0.9999998],"name":"Gear_Wheel_center","children":[165,173]},{"translation":[0.025592804,-0.410430431,0.0496406555],"rotation":[0.000342083629,0.205400854,0.009056285,0.978636],"scale":[1.00000012,0.9999996,0.9999997],"name":"Landing_Gear_NosePart13_center","children":[166,169,172]},{"translation":[-0.005656481,-0.0457814932,-0.172786713],"rotation":[0.7665125,-1.98397316e-7,1.3196258e-7,0.6422294],"scale":[0.9999999,1.00000072,1.00000024],"name":"Landing_Gear_NosePart14_center","children":[167,168]},{"translation":[0.008430719,-0.368497849,-0.329550982],"rotation":[-0.7748584,-0.00707002264,-0.005481687,0.632071555],"scale":[0.99999994,0.999999464,1.00000048],"name":"gear_pipe_point_3_center"},{"translation":[0.002431035,0.0204620361,-0.0752792358],"rotation":[-0.7826159,-0.00700203935,-0.00556876557,0.6224405],"scale":[1.00000012,1,1.00000012],"name":"gear_pipe_point_4_center"},{"translation":[-0.00845921,-0.307320476,-0.00150299072],"rotation":[0.000004078425,-0.0004563113,-0.008934856,0.99996],"scale":[0.9999999,1.00000012,0.99999994],"name":"Wheel_center","children":[170,171]},{"translation":[-4.76837158e-7,0.00402164459,0.0326004028],"rotation":[-0.045346275,-4.551786e-8,8.15744639e-10,0.998971343],"scale":[0.9999997,1.00000119,1.00000179],"mesh":55,"name":"Wheel_Nose_center"},{"translation":[-1.1920929e-7,-0.00000143051147,-0.00000762939453],"rotation":[-2.51456868e-7,2.706654e-9,1.16415141e-10,1],"scale":[1.00000155,1.00000215,0.9999995],"mesh":56,"name":"Wheel_Nose_blurred"},{"translation":[0.0211119652,1.33020759,0.0294685364],"rotation":[-0.0255103167,-0.00022818963,-0.008943592,0.999634564],"scale":[0.999999166,0.9999999,1.00000036],"mesh":57,"name":"LANDING_GEAR_NOSEPART13_CENTER_1"},{"translation":[-0.0414872169,0.002967,-0.12130928],"rotation":[-0.5139819,-0.64576596,0.48561582,-0.2880733],"scale":[1.00000072,1.00000012,0.999999762],"name":"Landing_Gear_NosePart15_center","children":[174,175]},{"translation":[0.289751053,0.00052285206,-0.0499343872],"rotation":[-0.5000002,-0.500000358,0.499999583,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_1_center"},{"translation":[0.212629318,0.0005228169,-0.05453205],"rotation":[-0.500000238,-0.5000002,0.499999732,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_5_center"},{"translation":[0.2793044,-0.5019189,-0.021528244],"rotation":[0.63214463,-0.3321479,-0.34455055,0.609389842],"scale":[1.00000024,0.99999994,0.9999997],"name":"Door_Left02_hydraulic02_center","children":[177]},{"translation":[0.021283865,0.03582573,-0.04520595],"rotation":[0.0583817624,0.4792682,-0.534093261,0.6940015],"scale":[1.00000012,1.00000024,0.99999994],"name":"Door_Left02_hydraulic01_center"},{"translation":[-0.000778198242,-0.671867967,0.21672821],"rotation":[-0.00007376257,-0.8692236,0.494419247,0.0000236660471],"name":"Landing_Gear_NosePart07_center","children":[179]},{"translation":[-4.38885763e-7,-0.0551872253,-0.0515060425],"rotation":[-0.00007309586,-0.88227123,0.470741421,-0.0000256513758],"mesh":58,"name":"LANDING_GEAR_NOSEPART07_CENTER_1"},{"translation":[-0.5013134,-0.144065619,0.170331955],"rotation":[0.429701567,0.4297139,-0.5615561,0.56156677],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart04_center","children":[181]},{"translation":[0.00000190734863,1.1920929e-7,-1.76764107],"rotation":[0,0,2.27373675e-13,1],"name":"Landing_Gear_NosePart05_center"},{"translation":[-0.2793044,-0.501918554,-0.02152443],"rotation":[-0.593563855,-0.336227626,0.3405706,0.647027552],"scale":[0.99999994,1,1],"name":"Door_Right02_hydraulic02_center","children":[183]},{"translation":[-0.021283865,-0.0358276367,0.0452079773],"rotation":[0.04388803,0.429552048,-0.5823844,0.6887579],"scale":[0.99999994,1.00000048,0.99999994],"name":"Door_Right02_hydraulic01_center"},{"translation":[0,-0.00000154972076,-0.0000190734863],"rotation":[-0.0270324219,0,0,0.999634564],"mesh":59,"name":"Landing_Gear_NosePart_lightpod_center"},{"translation":[0.0015354983,-1.4153868,0.168989182],"rotation":[-0.0270324219,0,0,0.999634564],"mesh":60,"name":"Landing_Gear_NosePart_glass_center"},{"translation":[0,-3.57627869e-7,0],"rotation":[-0.0270323772,0,0,0.999634564],"mesh":61,"name":"LANDING_GEAR_NOSEPART16_CENTER_1"},{"translation":[0.312226921,-0.197624326,0.1374836],"rotation":[2.220446e-16,-1,0,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":62,"name":"LIGHT_ASOBO_LandingNose_Left"},{"translation":[-0.306189775,-0.196983218,0.138235092],"rotation":[2.220446e-16,-1,0,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":63,"name":"LIGHT_ASOBO_LandingNose_Right"},{"translation":[0.174989372,-0.328628778,0.1374855],"rotation":[1.0657997500000001e-15,-1,1.11758753e-8,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":64,"name":"LIGHT_ASOBO_Taxi_Left"},{"translation":[-0.169818163,-0.327804923,0.138235092],"rotation":[1.0657997500000001e-15,-1,1.11758753e-8,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":65,"name":"LIGHT_ASOBO_Taxi_Right"},{"translation":[0.007133007,-0.478288829,23.7857571],"rotation":[0.00000354928,-0.7505983,0.6607588,-0.0000114836384],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart06_center","children":[192]},{"translation":[0,-0.09894562,1.36242163],"rotation":[0.009296398,-4.547671e-13,5.11612942e-13,0.9999568],"name":"Landing_Gear_NosePart02_center","children":[193,194]},{"translation":[0,0.27699852,0.04716277],"rotation":[0.1933725,0,-1.158739e-13,0.9811255],"name":"Landing_Gear_NosePart01_center"},{"translation":[1.49011612e-8,0.07812691,-0.0590516329],"rotation":[0.0038900394,-0.00000305861067,0.0000105023964,0.99999243],"scale":[0.9999999,0.9999996,1.00000036],"name":"Landing_Gear_NosePart03_center"},{"rotation":[-1,0,0,-1.62920685e-7],"name":"Wing_right","children":[196,197,204,331]},{"translation":[-0.317629337,0.32808125,5.10369],"rotation":[-0.997071862,-0.0764705241,1.94817673e-8,-1.84558758e-7],"scale":[0.9999999,1.00000024,0.9999999],"name":"Door03_Hydraulic01_right"},{"translation":[-1.450443,-1.40532589,32.1805077],"rotation":[-0.6996959,0.02121799,0.08916648,0.7085371],"scale":[1.00000012,1.00000024,0.9999999],"name":"Trim_Elevator_right","children":[198,200,201,202,203]},{"translation":[-4.46584368,-4.07698631,-0.00621521473],"rotation":[0.7352896,0.102219775,0.1015787,0.662255347],"scale":[1.0000006,1.00000024,1.0000006],"name":"Elevator_right","children":[199]},{"translation":[20.7157841,-2.83747,-30.9013042],"rotation":[-0.972485244,0.0438993052,-0.223115742,-0.0506431833],"scale":[0.999998569,0.999999642,0.9999994],"mesh":66,"name":"ELEVATOR_RIGHT_1"},{"translation":[6.54495859,31.5664921,0.6193309],"rotation":[-0.708537042,0.0891665,-0.02121801,0.699695945],"scale":[0.9999997,1.00000036,0.9999998],"mesh":67,"name":"FROST_ELEVATORR001"},{"translation":[6.544958,31.5664921,0.6193308],"rotation":[-0.708537042,0.08916648,-0.02121799,0.699695945],"scale":[0.999999642,1.00000024,0.9999998],"mesh":68,"name":"TRIM_ELEVATOR_RIGHT_1"},{"translation":[-2.0646615,-1.33726311,-0.2853936],"rotation":[-0.0212182011,-0.699696064,0.7085369,0.08916638],"scale":[0.999999464,1.00000024,0.99999994],"mesh":69,"name":"LIGHT_ASOBO_Logo_Right"},{"translation":[0.0205664635,-0.0453910828,0.08747083],"rotation":[-0.708537042,0.08916648,-0.02121799,0.699695945],"scale":[0.999999642,1.00000024,0.9999998],"mesh":70,"name":"Livery_KLM_ElevatorTrimR"},{"translation":[-3.348375,0.123601377,1.04428136],"rotation":[0.004733401,0.259418637,0.0519678779,0.964354157],"scale":[1,1,0.9999999],"name":"WING_BONE_RIGHT_00","children":[205,207,209,219,222,225,228,229,230,231,233,235,237,274,276,330]},{"translation":[-1.24259973,1.15350306,2.95930767],"rotation":[0.479384154,-0.2577262,0.833346,0.09644934],"scale":[1.0000006,1.00000012,0.99999994],"name":"Door02_right","children":[206]},{"translation":[-0.005539894,-0.008199096,-0.00193786621],"rotation":[-0.0487773046,-0.7148488,-0.0386885069,0.6965021],"scale":[1.00000012,0.999999642,0.9999996],"mesh":71,"name":"DOOR02_RIGHT_1"},{"translation":[-3.96934962,0.816749454,2.69679642],"rotation":[0.538764834,-0.07773489,0.8388602,-0.001816788],"scale":[1.0000006,1.00000048,1.00000012],"name":"Door03_right","children":[208]},{"translation":[-0.024266243,0.00390511751,-0.00696516037],"rotation":[-0.0277300347,-0.668730438,-0.0514073521,0.7412071],"scale":[1.00000024,0.9999987,1.00000083],"mesh":72,"name":"DOOR03_RIGHT_1"},{"translation":[-5.868534,0.60752964,-2.41399217],"rotation":[0.00732532656,-0.259887159,-0.064544186,0.9634517],"scale":[1,1.00000012,1.00000012],"name":"Engine_PIVOT_RIGHT_1","children":[210,212,216,217,218]},{"translation":[-0.1857748,1.42669618,-2.070343],"rotation":[-0.00838642847,-3.57871585e-7,0.0153054669,0.9998477],"scale":[0.999999762,1.00000048,1],"name":"Reactor_Back_right","children":[211]},{"translation":[0.00000381469727,0.0000147819519,-0.0008557439],"rotation":[-1,1.11758524e-7,5.40167875e-8,1.26659828e-7],"scale":[1.00000107,1.00000143,1.00000072],"mesh":73,"name":"Engine_Duct_right"},{"translation":[-0.187087059,1.39431691,-7.757461],"rotation":[-0.70699966,-0.004893535,0.7069985,-0.0167538542],"scale":[1.00000036,0.9999999,0.9999994],"name":"Reactor_Prop_Still_right","children":[213,214,215]},{"translation":[-2.09181356,0.00000262260437,0.000002861023],"rotation":[0.707106352,-0.00000134672428,0.7071072,-0.00000114838178],"scale":[1.00000072,1.00000012,0.9999983],"mesh":74,"name":"2_blurred_right"},{"translation":[-2.091815,0.000002861023,0.000002861023],"rotation":[0.00308636879,-0.7071007,-0.00308673177,0.7070994],"scale":[1.00000072,1.00000012,0.999999762],"mesh":75,"name":"2_slow_right"},{"translation":[-2.09181643,2.38418579e-7,0.000008583069],"rotation":[0.00000142476176,0.707106352,0.00000106651316,0.7071072],"scale":[1.00000107,0.99999994,0.9999989],"mesh":76,"name":"2_still_right"},{"translation":[-0.188096046,1.45635879,-4.35354853],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":77,"name":"FX_EXHAUST_RIGHT"},{"translation":[9.662219,0.181626022,-1.91145992],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":78,"name":"FROST_ENGINER001"},{"translation":[-0.172901154,1.133304,-4.48742437],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":79,"name":"Livery_KLM_EngB"},{"translation":[-1.22019887,-0.462972879,-3.0046134],"rotation":[0.682610035,0.0262489542,-0.0316506177,0.7296251],"scale":[1.00000012,1.00000072,1.00000048],"name":"FlapsKrueger_1_right","children":[220,221]},{"translation":[4.344075,4.047225,0.2517715],"rotation":[0.695221364,0.16956304,0.250215232,0.6521565],"scale":[0.9999997,0.9999996,0.9999996],"mesh":80,"name":"FROST_KRUEGERR003"},{"translation":[0.0344409943,0.430824518,-0.540390551],"rotation":[0.6952215,0.169562757,0.250215232,0.652156353],"scale":[0.999999166,0.99999845,0.999999],"mesh":81,"name":"FLAPSKRUEGER_1_RIGHT_1"},{"translation":[-5.42594433,0.5245416,3.44597554],"rotation":[-0.04774639,0.5168637,0.00933412,0.854684234],"scale":[1.00000024,1.0000006,1.0000006],"name":"Flaps_1_right","children":[223,224]},{"translation":[-0.005323887,0.341879964,-2.47923374],"rotation":[0.7235138,0.006729279,0.05795712,0.687839746],"scale":[0.9999998,0.9999999,1.00000012],"name":"flap_hydrolics_17_right"},{"translation":[-0.06590319,0.5249982,0.00364017487],"rotation":[0.6898752,-0.0682501,0.7176352,-0.0664377958],"scale":[0.9999999,1,1.00000012],"mesh":82,"name":"FLAPS_1_RIGHT_1"},{"translation":[-2.31256652,0.8711257,4.775813],"rotation":[0.6289141,0.328698874,-0.377832651,0.5946988],"scale":[1.00000024,1.00000036,1.00000048],"name":"Landing_Gear_15_right","children":[226]},{"translation":[0.107634544,-0.3670988,-0.2216587],"rotation":[-0.579570949,0.415745556,-0.575418353,-0.400183737],"scale":[1.00000083,1.000002,0.99999845],"name":"Landing_Gear_16_right","children":[227]},{"translation":[-0.6260686,0.0166945457,0.713190556],"rotation":[0.575584,-0.5788173,-0.406165451,-0.4107351],"scale":[1.00000179,0.999998569,0.9999992],"mesh":83,"name":"LANDING_GEAR_16_RIGHT_1"},{"translation":[-3.62844014,0.5168278,4.12484026],"rotation":[-0.04368652,0.5110595,0.00645816652,0.8584102],"scale":[0.9999996,1.0000006,1.00000012],"name":"Spoiler_1_1_right"},{"translation":[-5.914755,0.223984957,2.89741],"rotation":[-0.04528014,0.5080569,0.00573390163,0.860113442],"scale":[0.9999406,1.00000036,1.00005925],"name":"Spoiler_1_2_right"},{"translation":[-7.98300171,0.0362910032,1.76055336],"rotation":[-0.0436879,0.5110594,0.00645576557,0.8584102],"scale":[0.999996543,0.999997437,1.00000763],"name":"Spoiler_1_3_right"},{"translation":[-3.50821,0.7972367,3.85419965],"rotation":[-0.0436865352,0.5110595,0.00645813067,0.8584102],"scale":[1.0000006,1.00000012,1.00000024],"name":"Spoiler_hydrolics_01_right","children":[232]},{"translation":[-0.2856431,-0.2902993,0.00000143051147],"rotation":[0.659585953,0.287899345,0.27573052,0.6372072],"scale":[1.00000048,1.00000048,1.00000083],"name":"Spoiler_hydrolics_02_right"},{"translation":[-5.847822,0.6080638,2.62399244],"rotation":[-0.0436855778,0.5110596,0.006460557,0.8584101],"scale":[0.9999967,0.9999998,1.000003],"name":"Spoiler_hydrolics_04_right","children":[234]},{"translation":[-0.266388416,-0.318862677,0.00736522675],"rotation":[-0.00608323934,0.0124876853,0.435711771,0.8999791],"scale":[0.9999625,1.00002575,1.00001311],"name":"Spoiler_hydrolics_03_right"},{"translation":[-7.873269,0.471502423,1.46360469],"rotation":[-0.043686796,0.5110597,0.00645971065,0.85841006],"scale":[1.00001478,1,0.9999853],"name":"Spoiler_hydrolics_06_right","children":[236]},{"translation":[-0.3056016,-0.3723048,-0.000500679],"rotation":[-0.00120041845,0.0246579,-0.3649802,0.9306879],"scale":[0.999999464,1.00000393,0.999998748],"name":"Spoiler_hydrolics_05_right"},{"translation":[-8.314303,0.00000125169754,0.00000160932541],"rotation":[-8.894129e-8,1.06228981e-7,-5.58793456e-9,1],"scale":[1,1.00000048,1],"name":"WING_BONE_RIGHT_01","children":[238,240,241,245,246,269,271,273]},{"translation":[-2.87029362,0.254272521,1.324141],"rotation":[-0.006843229,0.6832025,0.0139845656,0.730062962],"scale":[1.00000024,0.99999994,0.999999762],"name":"Flaps_2_right","children":[239]},{"translation":[0.08635962,0.170149446,-2.57623672],"rotation":[0.7297014,-0.149418682,-0.107723,0.658487439],"scale":[1.00000083,0.999999,1.00000119],"name":"flap_hydrolics_18_right"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic1_SPOILER_2_1_right"},{"translation":[-1.26626873,0.35705173,0.8797917],"rotation":[0.0357553177,-0.105803348,0.0137958387,0.9936483],"scale":[1.0000006,1.00000012,0.999999642],"name":"Hydrolic2_Flaps_1_1_right","children":[242,244]},{"translation":[0.00258350372,-0.3061065,0.6527736],"rotation":[-0.00456417026,-0.004072003,-0.000149014391,0.9999813],"scale":[1.00000036,0.99999994,1.00000036],"name":"Flaps_1_1_right","children":[243]},{"translation":[-0.67619133,0.5609306,0.008673191],"rotation":[-0.985641539,0.0555401742,-0.153274238,-0.0439666323],"scale":[0.9999994,1.0000006,1.000001],"mesh":84,"name":"FLAPS_1_1_RIGHT_1"},{"translation":[0.0025806427,-0.3045506,0.651814461],"rotation":[0.00173285324,-0.000023034203,-0.000235056825,0.9999985],"scale":[1.00000036,1.00000012,0.99999994],"name":"Hydrolic1_Flaps_1_1_right"},{"translation":[-4.084032,0.293872416,0.4992954],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic2_SPOILER_2_1_right"},{"translation":[-6.337867,0.0336145163,0.000215947628],"rotation":[7.916242e-8,9.260839e-8,-3.539026e-8,1],"scale":[0.99999994,0.9999999,1.00000012],"name":"WING_BONE_RIGHT_02","children":[247,249,250,251,252,253,254,255,265,266,267,268]},{"translation":[-6.30582237,0.00921285152,0.6295024],"rotation":[-0.006843452,0.683202565,0.0139844473,0.730062962],"scale":[1.00000012,1.00000048,1.0000006],"name":"Flaps_3_right","children":[248]},{"translation":[0.111464262,0.127858639,2.31747055],"rotation":[0.703286,-0.06726212,-0.06384566,0.704832137],"scale":[1.00000191,0.999998868,0.999999642],"name":"flap_hydrolics_19_right"},{"translation":[-0.2144928,-0.019741416,0.668693066],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic1_SPOILER_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic1_SPOILER_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic1_SPOILER_2_4_right"},{"translation":[-0.2045784,0.171005368,0.421416372],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic2_SPOILER_2_2_right"},{"translation":[-2.60531425,0.109168172,0.328037649],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic2_SPOILER_2_3_right"},{"translation":[-4.924349,0.07270646,0.26546222],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic2_SPOILER_2_4_right"},{"translation":[-6.56654739,0.00651466846,-0.00213181973],"rotation":[7.636844e-8,-3.37604327e-8,-2.71946135e-7,1],"scale":[1.00000036,1.00000024,1.00000012],"name":"WING_BONE_RIGHT_03","children":[256,257,258,263,264]},{"translation":[0.00313949585,0.007908225,0.4665305],"rotation":[0.00851354748,-0.0145073244,0.00494639948,0.999846339],"scale":[1.0000006,1.00000048,1.00000072],"name":"Aileron_1_right"},{"translation":[-3.99923325,-0.02995944,0.348880529],"rotation":[0.008513322,-0.0145071112,0.004946362,0.999846339],"scale":[1.0000006,0.9999998,1.00000048],"name":"Aileron_2_right"},{"translation":[-5.34786224,-0.0235247612,0.00155442953],"rotation":[-5.206093e-7,-2.95578445e-7,4.65661358e-8,1],"scale":[1.00000012,0.999999762,1.00000024],"name":"WING_BONE_RIGHT_04","children":[259,260,261,262]},{"translation":[-0.6659126,-0.038210392,-1.22074091],"rotation":[-0.259418547,0.00473311124,0.964354157,0.0519677028],"scale":[0.9999999,0.99999994,0.9999999],"mesh":85,"name":"LIGHT_ASOBO_NavigationGreen"},{"translation":[-5.1413517,-0.203313112,1.33965993],"rotation":[-0.259418547,0.00473311124,0.964354157,0.0519677028],"scale":[0.9999999,0.99999994,0.9999999],"mesh":86,"name":"LIGHT_ASOBO_NavigationWing_Right"},{"translation":[-0.9967365,-0.0491733551,-1.130012],"rotation":[-0.2594183,0.004733398,0.9643543,0.05196754],"scale":[0.9999999,0.99999994,0.9999998],"mesh":87,"name":"LIGHT_ASOBO_StrobeWing_Right"},{"translation":[0.045425415,-0.2883048,-1.03098571],"rotation":[0.682595,0.0266460124,-0.0320746265,0.7296063],"scale":[0.9999999,1.00000083,1.0000006],"name":"FlapsKrueger_5_right"},{"translation":[0.2617283,-0.112903118,-0.0147076249],"rotation":[0.009750019,-0.0007162161,0.9998518,0.0141735421],"scale":[1.00000048,1.0000006,1.00000036],"name":"Wing_Spoiler_2_5_right"},{"translation":[-0.0365695953,-0.3669269,-1.4662689],"rotation":[0.682594657,0.0266457219,-0.0320744,0.7296066],"scale":[0.99999994,1.00000048,1],"name":"FlapsKrueger_4_right"},{"translation":[-0.214468,-0.018866539,0.668332756],"rotation":[0.00760329748,0.6947902,0.0026336154,0.7191675],"scale":[0.9999999,1.00000107,1.00000012],"name":"Wing_Spoiler_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.00760334125,0.6947902,0.00263350061,0.7191675],"scale":[0.9999999,1.0000006,0.9999999],"name":"Wing_Spoiler_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603228,0.6947921,0.00263381517,0.7191656],"scale":[0.9999999,1.00000072,0.9999999],"name":"Wing_Spoiler_2_4_right"},{"translation":[0.2762146,-0.432391644,-2.03908229],"rotation":[0.6825947,0.0266456585,-0.0320743,0.729606569],"scale":[1.00000083,1.00000048,1.00000048],"name":"FlapsKrueger_3_right"},{"translation":[-1.75636578,-0.111109138,1.0774467],"rotation":[-0.00158696191,-0.0932033658,0.008658969,0.995608151],"scale":[1.00002742,0.999999762,0.9999723],"name":"Wing_Spoiler_1_4_right","children":[270]},{"translation":[0.0000190734863,-0.00000178813934,0.000004529953],"rotation":[-0.983855069,0.06006053,-0.168275133,-0.0102719525],"scale":[1.00000036,1.00000119,1.00000215],"mesh":88,"name":"Spoiler_2_right"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.007352814,0.694946051,0.00291815167,0.71901834],"scale":[1.00000024,1,1.0000006],"name":"Wing_Spoiler_2_1_right","children":[272]},{"translation":[0.00445753336,-0.128248334,-3.35856247],"rotation":[0.5129199,-0.04156178,0.8570692,-0.024863895],"scale":[0.9999995,0.999999464,1.00000036],"mesh":89,"skin":1,"name":"Spoiler_2_1_right"},{"translation":[1.923686,-0.482328415,-2.70131159],"rotation":[0.6825947,0.026645679,-0.03207439,0.729606569],"scale":[0.9999993,1.00000012,1.00000036],"name":"FlapsKrueger_2_right"},{"translation":[-3.87551522,0.573712,3.3141005],"rotation":[-0.96442163,0.0535871238,-0.258697569,-0.009747602],"scale":[1.00000048,0.9999999,0.999999762],"name":"WING_DOOR02_right","children":[275]},{"translation":[-0.09166145,-0.014839083,0.04367876],"rotation":[-0.0269495845,0.00046797446,-0.000238912427,0.99963665],"scale":[1.00000107,1.00000155,1.00000119],"mesh":90,"name":"Door04_right"},{"translation":[-3.864641,0.5912173,3.303027],"rotation":[0.4957456,-0.0643499047,0.86604017,-0.008358427],"scale":[1.00000072,0.99999994,0.9999998],"name":"Wheel_Base_right","children":[277,281,303,304,305,311,318,328,329]},{"translation":[-0.205456257,-2.515431,-0.0104970932],"rotation":[0.0577802733,0.7012474,0.7077393,0.0633924752],"scale":[1.00000012,1.00000191,0.99999845],"name":"Landing_Gear_07_right","children":[278,279,280]},{"translation":[-0.302409172,0.1270957,0.16639185],"rotation":[-0.444534153,-0.450937033,0.5486514,0.545918345],"scale":[1.0000006,1.00000083,0.999999166],"name":"landing_gear01_right"},{"translation":[-0.7139559,0.12507534,-0.177423239],"rotation":[-0.444530368,-0.45093137,0.548656,0.545921445],"scale":[1.00000155,1.00000143,0.99999845],"name":"landing_gear08_right"},{"translation":[-0.0145435333,-0.009238243,0.004393339],"rotation":[-0.447610885,-0.4536711,0.5460826,0.543710232],"scale":[1.00000024,1.00000334,1.00000155],"mesh":91,"name":"LANDING_GEAR_07_RIGHT_1"},{"translation":[-0.373281956,-3.21106887,0.009433746],"rotation":[-0.00171652681,-0.707084954,-0.00556244049,0.7071046],"scale":[1.00000024,1.00000048,1.00000083],"name":"Landing_Gear_10_right","children":[282,284,299,300,301,302]},{"translation":[-0.0251255035,0.339024067,-0.118941784],"rotation":[-0.5374941,-0.539788663,-0.461154252,0.4550439],"scale":[0.999981344,0.9999963,1.00002265],"name":"Landing_Gear_08_right","children":[283]},{"translation":[-0.5055604,0.05488777,0.236266375],"rotation":[-0.4957678,-0.5020014,0.5020003,0.500204563],"scale":[1.00000417,0.999985754,1.00001323],"mesh":92,"name":"LANDING_GEAR_08_RIGHT_1"},{"translation":[4.76837158e-7,-0.00338840485,0.08094406],"rotation":[-0.99862957,-4.432793e-8,3.406478e-7,-0.05233552],"scale":[0.999999762,1.00000036,1.00000024],"name":"Landing_Gear_09_right","children":[285,288,289,292,295,298]},{"translation":[-0.09416199,-0.312451124,-0.243170738],"rotation":[0.501094043,-0.499797136,0.495709479,0.5033683],"scale":[1.00000107,1.0000006,1.00000012],"name":"Landing_Gear_06_right","children":[286,287]},{"translation":[-0.217030048,-0.08245611,0.2587304],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear02_right"},{"translation":[-0.414316177,-0.08274174,0.0263545513],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear03_right"},{"translation":[-0.04093027,0.24169302,0.0619034767],"rotation":[-0.5004197,-0.5004178,0.4995824,-0.4995793],"scale":[1.00000024,1.00000048,1.00000072],"name":"Landing_Gear_35_right"},{"translation":[-0.04742527,0.2416637,-0.06125927],"rotation":[-0.5004193,-0.500418067,0.499582171,-0.499579877],"scale":[1.00000048,0.99999845,1.00000107],"name":"Landing_Gear_36_right","children":[290,291]},{"translation":[-0.122224808,0.00642871857,0.007890463],"rotation":[-0.5004209,-0.5004165,0.499581635,0.499580264],"scale":[1.00000191,0.999997556,0.9999965],"mesh":93,"name":"LANDING_GEAR_35_RIGHT_1"},{"translation":[0.0009317398,-0.0000576972961,0.008124113],"rotation":[-0.5004213,-0.500416636,0.499581426,0.499580055],"scale":[1.00000262,0.9999981,0.9999969],"mesh":94,"name":"LANDING_GEAR_36_RIGHT_1"},{"translation":[-0.0517377853,-0.00623846054,-0.681098],"rotation":[-8.662516e-7,-1.002765e-14,2.13181821e-13,1],"scale":[1.00007963,0.999921441,0.999999166],"name":"tire_01_key_right","children":[293,294]},{"translation":[9.536743e-7,-0.008128881,-0.000937461853],"rotation":[0.0000154558329,-0.00443635741,0.00316293933,0.999985158],"scale":[0.999991357,1.00001156,0.9999996],"mesh":95,"name":"RWheel_01_still"},{"translation":[4.76837158e-7,4.76837158e-7,4.76837158e-7],"rotation":[0.000920144666,2.69792046e-8,-2.67717026e-9,0.9999996],"mesh":96,"name":"RWheel_01_blurred"},{"translation":[-0.0389318466,-0.006542444,0.759859562],"rotation":[-1,-9.94863236e-14,9.66441757e-14,1.19248815e-8],"scale":[1.000081,0.9999192,0.999999642],"name":"tire_02_key_right","children":[296,297]},{"translation":[-0.0000514984131,0.008122206,0.000939846039],"rotation":[-1,0.0000212657651,0.00000359690239,-1.539263e-8],"scale":[0.999991536,1.00001192,0.9999965],"mesh":97,"name":"RWheel_02_still"},{"translation":[-4.76837158e-7,2.38418579e-7,0],"rotation":[0.0009060062,-0.00443710433,0.003185267,0.9999847],"scale":[0.99999994,1,1],"mesh":98,"name":"RWheel_02_blurred"},{"translation":[-0.0457706451,-0.007729292,-0.00301837921],"rotation":[2.086138e-7,-8.009221e-8,0.00000141374744,1],"scale":[1.00000072,1.00000048,0.9999993],"mesh":99,"name":"LANDING_GEAR_09_RIGHT_1"},{"translation":[0.106811047,0.491230726,0.296488762],"rotation":[-0.9992415,0.00000166204075,-0.00000249417667,-0.0389420055],"scale":[1.00004983,0.9999272,1.000025],"name":"landing_gear04_right"},{"translation":[0.106812477,0.186984062,-0.245285988],"rotation":[-0.99862957,-5.59745729e-7,9.06202558e-7,-0.0523358621],"scale":[1.00000143,1,0.99999994],"name":"landing_gear05_right"},{"translation":[-0.0153021812,0.474267721,0.275247574],"rotation":[-0.998629451,-4.54888777e-7,0.000002030508,-0.0523382],"scale":[1.00000143,1.0000006,0.9999997],"name":"landing_gear06_right"},{"translation":[5.05783129,3.96466541,-0.5235219],"rotation":[-0.99862957,0.000001218233,6.38448654e-8,-0.052335944],"scale":[0.999995947,1.00000072,0.9999992],"mesh":100,"name":"LANDING_GEAR_10_RIGHT_1"},{"translation":[-1.22381783,0.348030329,0.153943539],"rotation":[0.00730130542,-0.7070985,0.00345573318,0.707069039],"scale":[0.99999994,1.00000036,1.00000048],"name":"Landing_Gear_14_right"},{"translation":[-0.2384944,-0.622866631,0.0609898567],"rotation":[-0.738115668,-0.6531392,0.109994896,0.128436044],"scale":[1,1.00000024,1],"name":"Landing_Gear_18_right"},{"translation":[-0.27695322,-1.28430152,0.173485756],"rotation":[-0.708400846,-0.000836311956,-0.7036754,-0.05485084],"scale":[1.00000143,1,0.9999993],"name":"Landing_Gear_20_right","children":[306,310]},{"translation":[0.008528233,-0.06482935,0.00420856476],"rotation":[0.526773155,0.4382799,-0.377282143,0.622959852],"scale":[1.0000037,1.00000608,0.9999915],"name":"Landing_Gear_21_right","children":[307,308,309]},{"translation":[0.00144290924,0.1629262,0.06679213],"rotation":[0.5143709,-0.5180562,0.4851327,0.481338263],"scale":[0.999991357,1.00000036,1.00000954],"name":"Landing_Gear_19_right"},{"translation":[0.00000238418579,0.134036064,0.00517952442],"rotation":[1.680337e-8,-3.11589247e-7,3.5556468e-8,1],"scale":[0.9999948,1.00000739,0.9999984],"name":"Landing_Gear_41_right"},{"translation":[-0.0119657516,-0.00289034843,-0.00144779682],"rotation":[-0.557003856,-0.422335,0.394315,0.596569836],"scale":[0.9999915,1.00000906,0.999997437],"mesh":101,"name":"LANDING_GEAR_21_RIGHT_1"},{"translation":[-0.00688838959,0.00105965137,0.0102577209],"rotation":[-0.019242499,0.000812306942,0.0422128327,0.998923],"scale":[0.999997437,1.000003,1.00000119],"mesh":102,"name":"Landing_Gear_Part17_right"},{"translation":[-0.334146976,-2.01456738,0.263353348],"rotation":[-0.7060457,0.0425617956,-0.7058248,-0.03872242],"scale":[1.000001,1.00000024,1.00000072],"name":"Landing_Gear_33_right","children":[312,317]},{"translation":[0.117917061,-0.148765087,0.04537964],"rotation":[-0.984737754,0.008130239,-0.17385301,0.0007825128],"scale":[0.999999762,0.9999993,1.00000167],"name":"Landing_Gear_37_right","children":[313,315,316]},{"translation":[0.667953134,0.5748277,0.00707626343],"rotation":[-0.5088381,-0.496233046,0.494221658,0.5005811],"scale":[0.999994457,1.00000381,1.00000322],"name":"Landing_Gear_17_right","children":[314]},{"translation":[0.02605772,0.009506702,0.4115919],"rotation":[0.575589955,-0.578826845,-0.406152844,-0.410725683],"scale":[0.999997258,1.000005,0.999993742],"mesh":103,"name":"LANDING_GEAR_17_RIGHT_1"},{"translation":[0.167813063,0.00268483162,0.00000238418579],"rotation":[-6.41455244e-8,-4.106647e-8,4.51690951e-8,1],"scale":[1.00000083,1.00000048,1.00000107],"name":"Landing_Gear_31_right"},{"translation":[-0.0130126476,-0.0048263073,-0.01199913],"rotation":[-0.9847378,0.008131153,-0.1738526,-0.0007797919],"scale":[0.999999,1.00000274,0.999995947],"mesh":104,"name":"LANDING_GEAR_31_RIGHT_1"},{"translation":[-0.00679731369,0.00124239922,0.0102982521],"rotation":[0.00000229849957,-4.814916e-7,0.00000156089027,1],"scale":[1.00000024,1.00000119,0.9999982],"mesh":105,"name":"LANDING_GEAR_33_RIGHT_1"},{"translation":[-0.667070866,-2.00849319,0.2415781],"rotation":[-0.709682167,-0.09555723,-0.6969779,0.0379721373],"scale":[1.00000048,0.999999762,1.00000131],"name":"Landing_Gear_34_right","children":[319,327]},{"translation":[0.09678888,-0.131126165,-0.0691990852],"rotation":[-0.839773059,-0.406130224,0.352001667,0.07703543],"scale":[1.00000072,1.00000048,0.9999989],"name":"Landing_Gear_38_right","children":[320,326]},{"translation":[0.006328821,0.9432006,-0.00322312117],"rotation":[-0.756983638,-0.64889437,0.07686701,0.00183209206],"scale":[0.999998748,1.000002,1.00000048],"name":"Landing_Gear_32_right","children":[321,324,325]},{"translation":[-4.76837158e-7,-4.76837158e-7,-0.00000166893],"rotation":[-2.79384949e-7,-5.963352e-8,5.96058953e-8,1],"scale":[1.000005,1.00000274,0.9999952],"name":"Landing_Gear_27_right","children":[322,323]},{"translation":[-0.05392933,-0.152823448,0.0107153654],"rotation":[-0.0451062471,0.07957671,0.0931274,0.9914436],"scale":[1.00000119,1.00000083,0.999998748],"name":"Landing_Gear_23_right"},{"translation":[0.161372185,-0.885045052,0.0548145771],"rotation":[0.0121787246,-0.607089758,0.093779996,0.788986],"scale":[1.00000322,1.00000012,0.999995232],"name":"Landing_Gear_28_right"},{"translation":[1.28528214,-0.0296049118,-0.135630727],"rotation":[-0.0498265065,0.05795823,-0.000260304631,0.997074842],"scale":[0.9999991,1.00000632,0.9999972],"name":"Landing_Gear_29_right"},{"translation":[-0.0296831131,-0.0326454639,-0.02706337],"rotation":[-0.017329203,-0.2862241,0.244318992,0.9263281],"scale":[1.00000012,1.000001,0.999998331],"mesh":106,"name":"Landing_Gear_30_right"},{"translation":[-0.0110458136,-0.00550413132,-0.0020301342],"rotation":[-0.837784,-0.418000847,0.277073145,-0.215925589],"scale":[0.9999989,0.9999996,1],"mesh":107,"name":"LANDING_GEAR_32_RIGHT_1"},{"translation":[-0.00687980652,0.003689289,0.009631157],"rotation":[-0.151399747,0.006728598,0.0438849,0.987475038],"scale":[0.9999999,1.00000167,0.9999985],"mesh":108,"name":"LANDING_GEAR_34_RIGHT_1"},{"translation":[-0.257612228,-2.26505971,0.121347904],"rotation":[-0.706045747,0.04255996,-0.7058249,-0.0387206227],"scale":[1,1.0000006,1.000001],"name":"landing_gear07_right"},{"translation":[0.0100951195,-0.002379179,-0.006793499],"rotation":[-0.706045866,0.0425607264,-0.7058248,-0.03871934],"scale":[1.00000119,1.000001,0.9999996],"mesh":109,"name":"Landing_gear_Root_right"},{"translation":[-12.9740658,1.4153682,-6.55199766],"rotation":[-0.9643542,0.05196784,-0.259418547,-0.004733256],"scale":[1.00000119,1.00000036,0.999999],"name":"Engine_PIVOT_RIGHT_2"},{"translation":[-0.6497253,2.102611,5.016356],"rotation":[0.4909097,0.490909636,-0.508927763,0.508928239],"scale":[0.9999998,1,1.000001],"name":"WING_DOOR03_right","children":[332,333]},{"translation":[-0.07994223,-0.3223496,0.15869379],"rotation":[1.22518031e-7,1.05239437e-7,-1.40098223e-7,1],"scale":[1.00000012,0.9999995,1.0000006],"name":"Door03_Hydraulic02_right"},{"translation":[0.00000381469727,4.76837158e-7,-0.00000512599945],"rotation":[-0.5089281,-0.508927941,-0.4909095,-0.4909097],"scale":[0.999999166,0.999999046,0.9999995],"mesh":110,"name":"Door01_right"},{"translation":[0,-1.84435129,23.1178951],"mesh":111,"name":"Undercarriage_Front_center"},{"mesh":112,"name":"windowGlass_center"},{"rotation":[-8.742278e-8,0,0,1],"mesh":113,"name":"Body_center"},{"translation":[-0.6216232,1.38451254,-26.3910179],"rotation":[0,-1,0,-7.54979e-8],"name":"BACK_DOOR","children":[338,339]},{"translation":[1.51670659,0.0593546629,0.09595871],"name":"Rear_door"},{"translation":[1.66407359,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Rear_door_pivot"},{"translation":[-2.802113,0.120608084,17.4044781],"rotation":[0,0,0.9848078,0.173648223],"scale":[1.59984982,1.59984982,1.59984982],"name":"CARGO_DOOR","children":[341]},{"translation":[-0.07027137,-0.09023255,0.115065575],"rotation":[0.000002611794,0.00000116849469,0.9999597,-0.008979633],"scale":[0.625058949,0.625058949,0.6250587],"name":"CARGO_DOOR_HINGE"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[-0.164798126,-0.98632735,-4.44642041e-7,-0.000002661212],"scale":[1.00000024,1.00000024,1],"name":"CARGO_PISTON"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[0.7071068,0,0,0.7071067],"scale":[0.7524738,0.752473652,0.752473652],"name":"CARGO_PISTON001"},{"translation":[0.6120134,1.38451254,22.0964947],"name":"FRONT_DOOR","children":[345,346]},{"translation":[1.51670647,0.0593546629,0.09595871],"name":"Passenger_door"},{"translation":[1.66407371,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Passenger_door_pivot"},{"translation":[0.190857127,0.9710189,27.28954],"rotation":[-0.5561995,0.243252084,0.728066444,-0.318417639],"scale":[1.00000012,1.00000012,1.00000036],"name":"LeftWiper","children":[348]},{"translation":[0.00000190734863,-0.3225479,0.09060097],"rotation":[0.061628297,-0.7044163,-0.0616281778,0.7044159],"scale":[0.9999997,0.999999762,1],"name":"LeftWiper_Aux1"},{"translation":[-0.190857157,0.97101897,27.28954],"rotation":[-0.318417519,-0.728066444,0.243252143,0.5561996],"scale":[1,0.99999994,0.99999994],"name":"RightWiper","children":[350]},{"translation":[-0.00000381469727,0.322551727,-0.09060049],"rotation":[0.06162833,-0.704416156,-0.06162816,0.7044159],"scale":[1.00000012,1,1],"name":"RightWiper_Aux1"},{"mesh":114,"skin":2,"name":"Undercarriage_right"},{"mesh":115,"skin":3,"name":"Undercarriage_left"},{"mesh":116,"name":"FROST_FUSELAGE001"},{"translation":[0,0,0.375976563],"mesh":117,"skin":4,"name":"FROST_KRUEGERR004"},{"translation":[0,0,0.375976563],"mesh":118,"skin":5,"name":"FROST_KRUEGERL004"},{"mesh":119,"skin":6,"name":"FROST_WINGR001"},{"mesh":120,"skin":7,"name":"FROST_WINGL001"},{"mesh":121,"skin":8,"name":"wiper"},{"mesh":122,"name":"WINDSHIELD"},{"translation":[-6.70049953,0.205205679,-6.49973631],"mesh":123,"skin":9,"name":"Spoiler_1_right"},{"translation":[-16.5319614,0.8568734,-9.7475],"mesh":124,"skin":10,"name":"FLAPS_2_RIGHT_1"},{"translation":[-23.1434269,2.084283,-12.9893723],"mesh":125,"skin":11,"name":"Aileron_right"},{"translation":[6.70049763,0.205205679,-6.499737],"mesh":126,"skin":12,"name":"Spoiler_1_left"},{"translation":[17.0303764,0.9264157,-9.990757],"mesh":127,"skin":13,"name":"FLAPS_2_LEFT_1"},{"translation":[23.0969028,2.07969546,-12.9645138],"mesh":128,"skin":14,"name":"Aileron_left"},{"translation":[18.7673969,1.6507802,-8.411348],"mesh":129,"skin":15,"name":"FLAPSKRUEGER_2_LEFT_1"},{"translation":[-18.7203178,1.64729238,-8.41523552],"mesh":130,"skin":16,"name":"FLAPSKRUEGER_2_RIGHT_1"},{"translation":[2.57077742,1.38609684,21.8967667],"scale":[0.99999994,1,1.00000012],"mesh":131,"name":"Porthole_Blocker_center"},{"translation":[3.16649675e-7,-2.545454,1.60331059],"rotation":[0,-1,0,7.54979e-8],"mesh":132,"name":"LIGHT_ASOBO_Beacon_Belly"},{"translation":[0.0008451908,3.87055969,-0.13583234],"rotation":[0,-1,0,7.54979e-8],"mesh":133,"name":"LIGHT_ASOBO_Beacon_Top"},{"translation":[3.424549,-0.176594272,3.16573286],"rotation":[0,-1,0,7.54979e-8],"mesh":134,"name":"LIGHT_ASOBO_LandingWing_Left"},{"translation":[-3.42732048,-0.176593766,3.17954969],"rotation":[-7.54979e-8,-1,-7.54979e-8,-5.6999333100000005e-15],"mesh":135,"name":"LIGHT_ASOBO_LandingWing_Right"},{"translation":[3.36336136,-0.176594272,3.26802778],"rotation":[0,-1,0,7.54979e-8],"mesh":136,"name":"LIGHT_ASOBO_RunwayTurnOff_Left"},{"translation":[-3.36571121,-0.176593781,3.267181],"rotation":[0,-1,0,-4.371139e-8],"mesh":137,"name":"LIGHT_ASOBO_RunwayTurnOff_Right"},{"translation":[0.7143089,1.52168274,-37.00236],"rotation":[0,-1,0,7.54979e-8],"mesh":138,"name":"LIGHT_ASOBO_StrobeTail_Left"},{"translation":[-0.7061607,1.52168584,-37.0003777],"rotation":[0,-1,0,7.54979e-8],"mesh":139,"name":"LIGHT_ASOBO_StrobeTail_Right"},{"translation":[2.73906183,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":140,"name":"LIGHT_ASOBO_Wing_Left"},{"translation":[-2.73759484,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":141,"name":"LIGHT_ASOBO_Wing_Right"},{"mesh":142,"skin":17,"name":"ENGINE_RIGHT"},{"mesh":143,"skin":18,"name":"ENGINE_LEFT"},{"translation":[0.000472832,2.099659,-22.4412289],"mesh":144,"name":"Livery_KLM_RegNumber"},{"translation":[0.000402092934,1.54556179,-2.13316154],"mesh":145,"name":"Livery_KLM_FuselageB"},{"translation":[0,3.52926064,-4.46892834],"mesh":146,"name":"Livery_KLM_FuselageA"},{"translation":[-26.0779648,2.60006762,-15.256813],"mesh":147,"skin":19,"name":"Wing_body_right"},{"translation":[-0.000002861023,2.38418579e-7,0],"mesh":148,"skin":20,"name":"Wing_body_left"},{"translation":[-0.000002663216946530156,9.241080284118652,-36.35052490234375],"rotation":[0.28291264176368713,0.5717583298683167,0.4160439670085907,0.6480435132980347],"mesh":149,"name":"Rudder_LIVERYDECAL"},{"translation":[0.7220770120620728,-1.9521019458770752,23.631929397583008],"rotation":[0.715813398361206,0.03603672236204147,0.6965124607086182,0.034396108239889145],"mesh":150,"name":"C_Door_02_Left_LIVERYDECALS"},{"translation":[-0.726417064666748,-1.9530106782913208,23.631912231445312],"rotation":[-0.03489641100168228,0.6998390555381775,-0.03553038462996483,0.7125623822212219],"mesh":151,"name":"C_Door_02_right_LIVERYDECALS"},{"translation":[-2.3514771461486816,1.3771086931228638,-26.49029541015625],"mesh":152,"name":"DoorB_LIVERYDECAL"},{"mesh":153,"name":"Livery_KLM_FuselageA.001"},{"translation":[0.6497254371643066,-2.1026113033294678,-5.016356945037842],"rotation":[0.712636411190033,0.7015312910079956,-0.0006685919361189008,0.001663838280364871],"mesh":154,"name":"Door01_left_LIVERYDECAL"},{"translation":[-0.6497254967689514,-2.102611780166626,-5.016357421875],"rotation":[-0.0016642240807414055,-0.0006689373985864222,-0.7015330791473389,0.7126347422599792],"mesh":155,"name":"Door01_right_LIVERYDECAL"},{"mesh":156,"name":"livery_vstab"},{"translation":[-2.7386319637298584,-0.0703480988740921,17.432857513427734],"mesh":157,"name":"Cargo_Door_LIVERYDECAL"},{"mesh":158,"name":"Plane.001"},{"mesh":159,"name":"Plane.002"},{"mesh":160,"name":"Plane.005"},{"mesh":161,"name":"Plane.006"},{"scale":[1.0019999742507935,1,1],"mesh":162,"name":"Plane.010"}],"scene":0,"scenes":[{"nodes":[0,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399]}],"skins":[{"inverseBindMatrices":0,"joints":[27,28,39,40,49,51],"skeleton":27,"name":"skeleton #0"},{"inverseBindMatrices":1,"joints":[237,246,265,266,267,271],"skeleton":237,"name":"skeleton #1"},{"inverseBindMatrices":2,"joints":[195,204],"skeleton":195,"name":"skeleton #2"},{"inverseBindMatrices":3,"joints":[18,26],"skeleton":18,"name":"skeleton #3"},{"inverseBindMatrices":4,"joints":[0,195,204,237,246,255,258,262,264,268,273],"skeleton":0,"name":"skeleton #4"},{"inverseBindMatrices":5,"joints":[0,18,26,27,28,29,30,34,38,50,63],"skeleton":0,"name":"skeleton #5"},{"inverseBindMatrices":6,"joints":[0,195,204,237,246,255,258],"skeleton":0,"name":"skeleton #6"},{"inverseBindMatrices":7,"joints":[0,18,26,27,28,29,30],"skeleton":0,"name":"skeleton #7"},{"inverseBindMatrices":8,"joints":[0,347,348,349,350],"skeleton":0,"name":"skeleton #8"},{"inverseBindMatrices":9,"joints":[204,228,229,230],"skeleton":204,"name":"skeleton #9"},{"inverseBindMatrices":10,"joints":[0,195,204,237,238,246,247],"skeleton":0,"name":"skeleton #10"},{"inverseBindMatrices":11,"joints":[0,195,204,237,246,255,256,257],"skeleton":0,"name":"skeleton #11"},{"inverseBindMatrices":12,"joints":[26,145,146,147],"skeleton":26,"name":"skeleton #12"},{"inverseBindMatrices":13,"joints":[0,18,26,27,28,41,53],"skeleton":0,"name":"skeleton #13"},{"inverseBindMatrices":14,"joints":[0,18,26,27,28,29,36,37],"skeleton":0,"name":"skeleton #14"},{"inverseBindMatrices":15,"joints":[26,27,28,29,30,34,38,50,63,64],"skeleton":26,"name":"skeleton #15"},{"inverseBindMatrices":16,"joints":[204,219,237,246,255,258,262,264,268,273],"skeleton":204,"name":"skeleton #16"},{"inverseBindMatrices":17,"joints":[204,209,237],"skeleton":204,"name":"skeleton #17"},{"inverseBindMatrices":18,"joints":[26,27,135],"skeleton":26,"name":"skeleton #18"},{"inverseBindMatrices":19,"joints":[0,195,204,237,246,255,258],"skeleton":0,"name":"skeleton #6_1"},{"inverseBindMatrices":20,"joints":[0,18,26,27,28,29,30],"skeleton":0,"name":"skeleton #7_1"}],"textures":[{"extensions":{"MSFT_texture_dds":{"source":0}}},{"extensions":{"MSFT_texture_dds":{"source":1}}},{"extensions":{"MSFT_texture_dds":{"source":2}}},{"extensions":{"MSFT_texture_dds":{"source":3}}},{"extensions":{"MSFT_texture_dds":{"source":4}}},{"extensions":{"MSFT_texture_dds":{"source":5}}},{"extensions":{"MSFT_texture_dds":{"source":6}}},{"extensions":{"MSFT_texture_dds":{"source":7}}},{"extensions":{"MSFT_texture_dds":{"source":3}}},{"extensions":{"MSFT_texture_dds":{"source":8}}},{"extensions":{"MSFT_texture_dds":{"source":9}}},{"extensions":{"MSFT_texture_dds":{"source":10}}},{"extensions":{"MSFT_texture_dds":{"source":11}}},{"extensions":{"MSFT_texture_dds":{"source":12}}},{"extensions":{"MSFT_texture_dds":{"source":13}}},{"extensions":{"MSFT_texture_dds":{"source":14}}},{"extensions":{"MSFT_texture_dds":{"source":15}}},{"extensions":{"MSFT_texture_dds":{"source":16}}},{"extensions":{"MSFT_texture_dds":{"source":17}}},{"extensions":{"MSFT_texture_dds":{"source":18}}},{"extensions":{"MSFT_texture_dds":{"source":19}}},{"extensions":{"MSFT_texture_dds":{"source":20}}},{"extensions":{"MSFT_texture_dds":{"source":21}}},{"extensions":{"MSFT_texture_dds":{"source":22}}},{"extensions":{"MSFT_texture_dds":{"source":23}}},{"extensions":{"MSFT_texture_dds":{"source":24}}},{"extensions":{"MSFT_texture_dds":{"source":25}}},{"extensions":{"MSFT_texture_dds":{"source":26}}},{"extensions":{"MSFT_texture_dds":{"source":27}}},{"extensions":{"MSFT_texture_dds":{"source":28}}},{"extensions":{"MSFT_texture_dds":{"source":29}}},{"extensions":{"MSFT_texture_dds":{"source":30}}},{"extensions":{"MSFT_texture_dds":{"source":31}}},{"extensions":{"MSFT_texture_dds":{"source":32}}},{"extensions":{"MSFT_texture_dds":{"source":33}}},{"extensions":{"MSFT_texture_dds":{"source":34}}},{"extensions":{"MSFT_texture_dds":{"source":35}}},{"extensions":{"MSFT_texture_dds":{"source":36}}},{"extensions":{"MSFT_texture_dds":{"source":37}}},{"extensions":{"MSFT_texture_dds":{"source":38}}},{"extensions":{"MSFT_texture_dds":{"source":39}}},{"extensions":{"MSFT_texture_dds":{"source":40}}},{"extensions":{"MSFT_texture_dds":{"source":41}}},{"extensions":{"MSFT_texture_dds":{"source":42}}},{"extensions":{"MSFT_texture_dds":{"source":43}}},{"extensions":{"MSFT_texture_dds":{"source":44}}},{"extensions":{"MSFT_texture_dds":{"source":45}}},{"extensions":{"MSFT_texture_dds":{"source":7}}},{"extensions":{"MSFT_texture_dds":{"source":46}}},{"extensions":{"MSFT_texture_dds":{"source":47}}},{"extensions":{"MSFT_texture_dds":{"source":48}}},{"extensions":{"MSFT_texture_dds":{"source":49}}},{"extensions":{"MSFT_texture_dds":{"source":50}}},{"extensions":{"MSFT_texture_dds":{"source":51}}},{"extensions":{"MSFT_texture_dds":{"source":52}}},{"extensions":{"MSFT_texture_dds":{"source":53}}}],"extensionsUsed":["ASOBO_normal_map_convention","ASOBO_material_blend_gbuffer","ASOBO_material_draw_order","ASOBO_material_detail_map","ASOBO_material_windshield_v2","MSFT_texture_dds","ASOBO_asset_optimized"],"buffers":[{"byteLength":4449400,"uri":"B787_lod3.bin"}],"images":[{"uri":"787_10_AIRFRAME_TAIL_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"LIVERY_KLM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIGHTS_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_REARGEAR_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_REARGEAR_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_REARGEAR_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TIRE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TIRE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TIRE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TIREBLUR_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGSTILL_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGSTILL_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGSLOW_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGBLURRED_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FRONTGEAR_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FRONTGEAR_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FRONTGEAR_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DEFAULTDIRT_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP02_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP01_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_DETAIL_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_DECALS2_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HANDLE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HANDLE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HANDLE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_EMIS.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"}]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.bin new file mode 100644 index 00000000..bc57bdae Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.gltf new file mode 100644 index 00000000..bebd67a0 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod4.gltf @@ -0,0 +1 @@ +{"accessors":[{"bufferView":0,"componentType":5126,"count":6,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":384,"componentType":5126,"count":6,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":768,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":1216,"componentType":5126,"count":2,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":1344,"componentType":5126,"count":4,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":1600,"componentType":5126,"count":10,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":2240,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":2688,"componentType":5126,"count":8,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3200,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3648,"componentType":5126,"count":2,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":3776,"componentType":5126,"count":4,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":4032,"componentType":5126,"count":10,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":4672,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":5120,"componentType":5126,"count":8,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":5632,"componentType":5126,"count":11,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":6336,"componentType":5126,"count":11,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7040,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7488,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":7936,"componentType":5126,"count":3,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":8128,"componentType":5126,"count":3,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":1,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":1608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":2412,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":2412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":3216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":3216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":4824,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":4020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":7236,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":4824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":6432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":5628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":6432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":7236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":12060,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":8040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":12864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":8844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":14472,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":9648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":16080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":10452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":16884,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":11256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":12060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":12864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":21708,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":13668,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":22512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":14472,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":24120,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":15276,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":26532,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":16080,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":25728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":16884,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":17688,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":31356,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":18492,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":19296,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":33768,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":20100,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":32160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":20904,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":35376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":21708,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":36180,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":22512,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":23316,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":24120,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":41004,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":24924,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":41808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":25728,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":43416,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":26532,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":45828,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":27336,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":45024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":28140,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":28944,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":50652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":29748,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":30552,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":53064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":31356,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":55476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":32160,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":51456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":32964,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":33768,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":60300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":34572,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":54672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":35376,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":62712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":36180,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":36984,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":65124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":37788,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":38592,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":61104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":39396,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":69948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":40200,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":72360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":41004,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":64320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":41808,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":74772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":42612,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":43416,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":44220,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":79596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":45024,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":82008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":45828,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":70752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":46632,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":84420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":47436,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":86832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":48240,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":73968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":49044,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":89244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":49848,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":91656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":50652,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":51456,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":94068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":52260,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":96480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":53064,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":80400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":53868,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":98892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":54672,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":101304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":55476,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":83616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":56280,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":103716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":57084,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":86832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":57488,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":106128,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":57892,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":88448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":58296,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":107340,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":58700,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":108552,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":59104,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":90064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":59508,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":109764,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":59912,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":110976,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":60316,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":91680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":60720,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":112188,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":61124,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":113400,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":61528,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":93296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":61932,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":114612,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":62336,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":115824,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":62740,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":94912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":63144,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":117036,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":63548,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":118248,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":63952,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":96528,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":64356,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":119460,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":64760,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":120672,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":65164,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":98144,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":65568,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":121884,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":65972,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":123096,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":66376,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":99760,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":66780,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":124308,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":67184,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":125520,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":67588,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":101376,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":67992,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":126732,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":68396,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":127944,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":68800,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":102992,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":69204,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":129156,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":69608,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":104608,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70012,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":106224,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70416,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":130368,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":70820,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":107840,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":71224,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":131580,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":71628,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":132792,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":72032,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":109456,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":72436,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":134004,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":72840,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":111072,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":73244,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":135216,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":73648,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":112688,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":74052,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":136428,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":74456,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":137640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":74860,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":114304,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":75264,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":138852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":75668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":140064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":76072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":115920,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":76476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":141276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":76880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":142488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":77284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":117536,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":77688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":143700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":78092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":144912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":78496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":119152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":78900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":146124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":79304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":147336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":79708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":120768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":80112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":148548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":80516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":149760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":80920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":122384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":81324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":150972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":81728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":152184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":82132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":124000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":82536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":153396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":82940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":154608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":83344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":125616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":83748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":155820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":84152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":157032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":84556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":127232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":84960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":158244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":85364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":159456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":85768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":128848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":86172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":160668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":86576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":161880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":86980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":130464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":87384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":163092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":87788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":164304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":88192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":132080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":88596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":165516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":89000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":166728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":89404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":133696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":89808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":167940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":90212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":169152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":90616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":135312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":91020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":170364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":91424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":171576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":91828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":136928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":92232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":172788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":92636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":174000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":93040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":138544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":93444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":175212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":93848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":176424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":94252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":140160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":94656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":177636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":95060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":178848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":95464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":141776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":95868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":180060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":96272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":181272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":96676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":143392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":97080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":182484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":97484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":183696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":97888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":145008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":98292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":184908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":98696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":186120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":99100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":146624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":99504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":187332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":99908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":188544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":100312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":148240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":100716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":189756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":101120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":190968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":101524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":149856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":101928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":192180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":102332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":193392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":102736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":151472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":103140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":194604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":103544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":195816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":103948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":153088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":104352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":197028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":104756,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":198240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":105560,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":154704,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":106364,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":200652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":107168,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":203064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":107972,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":157920,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":108776,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":205476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":109580,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":207888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":110384,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":161136,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":111188,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":210300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":111992,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":212712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":112796,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":164352,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":113600,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":215124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":114404,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":217536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":115208,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":167568,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":116012,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":219948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":116816,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":222360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":117620,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":170784,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":118424,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":224772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":119228,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":227184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":120032,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":174000,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":120836,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":229596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":121640,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":232008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":122444,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":177216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":123248,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":234420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":124052,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":236832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":124856,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":180432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":125660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":239244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":126464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":241656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":127268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":183648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":128072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":244068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":128876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":246480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":129680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":186864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":130484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":248892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":131288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":251304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":132092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":190080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":132896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":253716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":133700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":256128,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":134504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":193296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":135308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":258540,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":136112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":260952,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":136916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":196512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":137720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":263364,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":138524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":265776,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":139328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":199728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":140132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":268188,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":140936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":270600,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":141740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":202944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":142544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":273012,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":143348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":275424,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":144152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":206160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":144956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":277836,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":145760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":280248,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":146564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":209376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":147368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":282660,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":148172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":285072,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":148976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":212592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":149780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":287484,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":150584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":289896,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":151388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":215808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":152192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":292308,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":152996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":294720,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":153800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":219024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":154604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":297132,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":155408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":299544,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":156212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":222240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":157016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":301956,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":157820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":304368,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":158624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":225456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":159428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":306780,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":160232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":309192,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":161036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":228672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":161840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":311604,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":162644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":314016,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":163448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":231888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":164252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":316428,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":165056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":318840,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":165860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":235104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":166664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":321252,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":167468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":323664,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":168272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":238320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":169076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":326076,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":169880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":328488,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":170684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":241536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":171488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":330900,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":172292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":333312,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":173096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":244752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":173900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":335724,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":174704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":338136,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":175508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":247968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":176312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":340548,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":177116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":342960,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":177920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":251184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":178724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":345372,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":179528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":347784,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":180332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":254400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":181136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":350196,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":181940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":352608,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":182744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":257616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":183548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":355020,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":184352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":357432,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":185156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":260832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":185960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":359844,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":186764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":362256,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":187568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":264048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":188372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":364668,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":189176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":367080,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":189580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":267264,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":189984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":368292,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":190388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":369504,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":190792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":268880,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":191196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":370716,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":191600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":371928,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":192004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":270496,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":192408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":373140,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":192812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":374352,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":193216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":272112,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":193620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":375564,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":194024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":376776,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":194428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":273728,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":194832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":377988,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":195236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":275344,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":195640,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":276960,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196044,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":379200,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":196448,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":278576,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196852,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":380412,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":197256,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":280192,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":197660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":381624,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":198464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":281808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":199268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":384036,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":200072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":386448,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":200876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":285024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":201680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":388860,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":202484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":391272,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":203288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":288240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":204092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":393684,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":204896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":396096,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":205700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":291456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":206504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":398508,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":207308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":400920,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":208112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":294672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":208916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":403332,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":209720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":405744,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":210524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":297888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":211328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":408156,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":212132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":410568,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":212936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":301104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":213740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":412980,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":214544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":415392,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":215348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":304320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":216152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":417804,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":216956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":420216,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":217760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":307536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":218564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":422628,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":219368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":425040,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":220172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":310752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":220976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":427452,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":221780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":429864,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":222584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":313968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":223388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":432276,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":224192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":434688,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":224996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":317184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":225800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":437100,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":226604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":439512,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":227408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":320400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":228212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":441924,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":229016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":444336,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":229820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":323616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":230624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":446748,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":231428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":449160,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":232232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":326832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":233036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":451572,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":233840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":453984,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":234644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":330048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":235448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":456396,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":236252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":458808,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":237056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":333264,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":237860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":461220,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":238664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":463632,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":239468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":336480,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":240272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":466044,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":241076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":468456,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":241880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":339696,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":242684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":470868,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":243488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":473280,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":244292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":342912,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":245096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":475692,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":245900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":478104,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":246704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":346128,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":247508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":480516,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":248312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":482928,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":249116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":349344,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":249920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":485340,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":250724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":487752,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":251528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":352560,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":252332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":490164,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":253136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":492576,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":253940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":355776,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":254744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":494988,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":255548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":497400,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":256352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":358992,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":257156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":499812,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":257960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":502224,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":258764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":362208,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":259568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":504636,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":260372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":507048,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":261176,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":365424,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":261980,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":509460,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":262784,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":511872,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":263588,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":368640,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":264392,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":514284,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":265196,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":516696,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":266000,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":371856,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":266804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":519108,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":267608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":521520,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":268412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":375072,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":269216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":523932,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":270020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":526344,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":270824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":378288,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":271628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":528756,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":272432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":531168,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":273236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":381504,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":274040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":533580,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":274844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":535992,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":275648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":384720,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":276452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":538404,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":277256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":540816,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":278060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":387936,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":278864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":543228,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":279668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":545640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":280072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":391152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":280476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":546852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":280880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":548064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":281284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":392768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":281688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":549276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":282092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":550488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":282496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":394384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":282900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":551700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":283304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":552912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":283708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":396000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":284112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":554124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":284516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":555336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":284920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":397616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":285324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":556548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":285728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":557760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":286132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":399232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":286536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":558972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":286940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":560184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":287344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":400848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":287748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":561396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":288152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":562608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":288556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":402464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":288960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":563820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":289364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":565032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":289768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":404080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":290172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":566244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":290576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":567456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":290980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":405696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":291384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":568668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":291788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":569880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":292192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":407312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":292596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":571092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":293000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":572304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":293404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":408928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":293808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":573516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":294212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":574728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":294616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":410544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":295020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":575940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":295424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":577152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":295828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":412160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":296232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":578364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":296636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":413776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":579576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":297444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":415392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":417008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":298252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":580788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":298656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":418624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":420240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":582000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":299868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":421856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":423472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":583212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":425088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":301484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":584424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":426704,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":302292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":585636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":302696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":586848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":303100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":428320,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":303504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":588060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":303908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":589272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":304312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":429936,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":304716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":590484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":305120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":591696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":305524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":431552,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":305928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":592908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":306332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":594120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":306736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":433168,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":307140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":595332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":307544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":596544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":307948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":434784,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":308352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":597756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":308756,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":598968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":309160,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":436400,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":309564,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":600180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":309968,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":601392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":310372,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":438016,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":310776,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":602604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":311180,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":603816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":311584,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":439632,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":311988,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":605028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":312392,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":606240,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":312796,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":441248,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":313200,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":607452,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":313604,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":608664,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":314008,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":442864,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":314412,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":609876,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":314816,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":611088,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":315220,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":444480,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":315624,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":612300,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":316028,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":446096,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":316432,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":613512,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":316836,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":447712,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":317240,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":614724,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":317644,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":615936,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":318048,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":449328,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":318452,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":617148,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":318856,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":618360,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":319260,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":450944,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":319664,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":452560,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320068,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":619572,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320472,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454176,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320484,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454224,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320496,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454272,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320508,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454320,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320520,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":620784,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320924,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454368,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":321328,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":621996,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":321732,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":623208,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":322136,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":455984,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":322540,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":624420,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":322944,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":625632,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":323348,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":457600,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":323752,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":626844,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":324156,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":628056,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":324560,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":459216,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":324964,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":629268,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":325368,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":630480,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":325772,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":460832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":326176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":631692,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":326580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":632904,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":326984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":462448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":327388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":634116,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":327792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":635328,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":328196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":464064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":328600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":636540,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":329004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":637752,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":329408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":465680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":329812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":638964,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":330216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":640176,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":330620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":467296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":331024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":641388,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":331428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":642600,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":331832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":468912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":332236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":643812,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":4,"componentType":5126,"count":38,"min":[-0.07582969963550568,-0.802740216255188,-0.799527108669281],"max":[0.03561084717512131,0.0010426774388179183,0.6260731816291809],"type":"VEC3","name":"x4_C_Door_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":12,"componentType":5120,"count":38,"type":"VEC4","name":"x4_C_Door_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":16,"componentType":5120,"count":38,"type":"VEC4","name":"x4_C_Door_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":20,"componentType":5122,"count":38,"type":"VEC2","name":"x4_C_Door_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":24,"componentType":5122,"count":38,"type":"VEC2","name":"x4_C_Door_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":28,"componentType":5123,"count":38,"type":"VEC4","name":"x4_C_Door_right_vertices#0_COLOR_0"},{"bufferView":5,"componentType":5123,"count":78,"type":"SCALAR","name":"x4_C_Door_right_indices#1"},{"bufferView":4,"byteOffset":1368,"componentType":5126,"count":14,"min":[-0.05284452438354492,-0.35190147161483765,-0.6955661177635193],"max":[0.05284440517425537,0.3519015908241272,0.6955662369728088],"type":"VEC3","name":"x4_Livery_KLM_RGDoor_vertices#0_POSITION"},{"bufferView":4,"byteOffset":1380,"componentType":5120,"count":14,"type":"VEC4","name":"x4_Livery_KLM_RGDoor_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":1384,"componentType":5120,"count":14,"type":"VEC4","name":"x4_Livery_KLM_RGDoor_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":1388,"componentType":5122,"count":14,"type":"VEC2","name":"x4_Livery_KLM_RGDoor_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":1392,"componentType":5122,"count":14,"type":"VEC2","name":"x4_Livery_KLM_RGDoor_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":1396,"componentType":5123,"count":14,"type":"VEC4","name":"x4_Livery_KLM_RGDoor_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":156,"componentType":5123,"count":24,"type":"SCALAR","name":"x4_Livery_KLM_RGDoor_indices#0"},{"bufferView":4,"byteOffset":1872,"componentType":5126,"count":37,"min":[-0.08399135619401932,-0.7955362796783447,-0.7618427872657776],"max":[0.059951599687337875,0.0030883168801665306,0.6639270186424255],"type":"VEC3","name":"x4_C_Door_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":1884,"componentType":5120,"count":37,"type":"VEC4","name":"x4_C_Door_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":1888,"componentType":5120,"count":37,"type":"VEC4","name":"x4_C_Door_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":1892,"componentType":5122,"count":37,"type":"VEC2","name":"x4_C_Door_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":1896,"componentType":5122,"count":37,"type":"VEC2","name":"x4_C_Door_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":1900,"componentType":5123,"count":37,"type":"VEC4","name":"x4_C_Door_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":204,"componentType":5123,"count":78,"type":"SCALAR","name":"x4_C_Door_left_indices#1"},{"bufferView":4,"byteOffset":3204,"componentType":5126,"count":14,"min":[-0.052844561636447906,-0.3519015312194824,-0.6955661773681641],"max":[0.05284450575709343,0.3519015312194824,0.6955661773681641],"type":"VEC3","name":"x4_Livery_KLM_LGDoor_vertices#0_POSITION"},{"bufferView":4,"byteOffset":3216,"componentType":5120,"count":14,"type":"VEC4","name":"x4_Livery_KLM_LGDoor_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":3220,"componentType":5120,"count":14,"type":"VEC4","name":"x4_Livery_KLM_LGDoor_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":3224,"componentType":5122,"count":14,"type":"VEC2","name":"x4_Livery_KLM_LGDoor_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":3228,"componentType":5122,"count":14,"type":"VEC2","name":"x4_Livery_KLM_LGDoor_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":3232,"componentType":5123,"count":14,"type":"VEC4","name":"x4_Livery_KLM_LGDoor_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":360,"componentType":5123,"count":24,"type":"SCALAR","name":"x4_Livery_KLM_LGDoor_indices#0"},{"bufferView":4,"byteOffset":3708,"componentType":5126,"count":3,"min":[-0.026365283876657486,-0.014438450336456299,-0.03060138039290905],"max":[0.0007920264033600688,-0.010132819414138794,-0.0008687974186614156],"type":"VEC3","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":3720,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":3724,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":3728,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":3732,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":3736,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":408,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Logo_Left_indices#0"},{"bufferView":4,"byteOffset":3816,"componentType":5126,"count":3,"min":[-0.0030384063720703125,0.010597944259643555,0.02518939971923828],"max":[-0.0007419586181640625,0.013393640518188477,0.026857376098632812],"type":"VEC3","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_POSITION"},{"bufferView":4,"byteOffset":3828,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":3832,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":3836,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":3840,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":3844,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":414,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_NavigationRed_indices#0"},{"bufferView":4,"byteOffset":3924,"componentType":5126,"count":4,"min":[-0.017635345458984375,0.024918079376220703,-0.011774063110351562],"max":[-0.001972198486328125,0.05131053924560547,-0.008241653442382812],"type":"VEC3","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":3936,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":3940,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":3944,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":3948,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":3952,"componentType":5123,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":420,"componentType":5123,"count":6,"type":"SCALAR","name":"x4_LIGHT_ASOBO_NavigationWing_Left_indices#0"},{"bufferView":4,"byteOffset":4068,"componentType":5126,"count":3,"min":[0.027011871337890625,0.0137939453125,0.024614334106445312],"max":[0.030628204345703125,0.017323970794677734,0.0253143310546875],"type":"VEC3","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":4080,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":4084,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":4088,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":4092,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":4096,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":432,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_StrobeWing_Left_indices#0"},{"bufferView":4,"byteOffset":4176,"componentType":5126,"count":24,"min":[-1.038822054862976,-0.25515908002853394,-1.0270861387252808],"max":[1.0416889190673828,0.14307540655136108,0.36604490876197815],"type":"VEC3","name":"x4_Spoiler_2_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":4188,"componentType":5120,"count":24,"type":"VEC4","name":"x4_Spoiler_2_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":4192,"componentType":5120,"count":24,"type":"VEC4","name":"x4_Spoiler_2_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":4196,"componentType":5122,"count":24,"type":"VEC2","name":"x4_Spoiler_2_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":4200,"componentType":5122,"count":24,"type":"VEC2","name":"x4_Spoiler_2_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":4204,"componentType":5123,"count":24,"type":"VEC4","name":"x4_Spoiler_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":438,"componentType":5123,"count":36,"type":"SCALAR","name":"x4_Spoiler_2_left_indices#0"},{"bufferView":4,"byteOffset":5040,"componentType":5126,"count":134,"min":[-1.0627738237380981,-0.06693630665540695,-1.6151909828186035],"max":[0.7649363279342651,0.6509166955947876,0.27188000082969666],"type":"VEC3","name":"x4_Flaps_1_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":5052,"componentType":5120,"count":134,"type":"VEC4","name":"x4_Flaps_1_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":5056,"componentType":5120,"count":134,"type":"VEC4","name":"x4_Flaps_1_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":5060,"componentType":5122,"count":134,"type":"VEC2","name":"x4_Flaps_1_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":5064,"componentType":5122,"count":134,"type":"VEC2","name":"x4_Flaps_1_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":5068,"componentType":5123,"count":134,"type":"VEC4","name":"x4_Flaps_1_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":510,"componentType":5123,"count":288,"type":"SCALAR","name":"x4_Flaps_1_1_left_indices#0"},{"bufferView":4,"byteOffset":9864,"componentType":5126,"count":95,"min":[-2.339193344116211,-0.37116098403930664,-1.43719482421875],"max":[3.058910846710205,0.8772868514060974,2.4244511127471924],"type":"VEC3","name":"x4_FlapsKrueger_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":9876,"componentType":5120,"count":95,"type":"VEC4","name":"x4_FlapsKrueger_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":9880,"componentType":5120,"count":95,"type":"VEC4","name":"x4_FlapsKrueger_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":9884,"componentType":5122,"count":95,"type":"VEC2","name":"x4_FlapsKrueger_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":9888,"componentType":5122,"count":95,"type":"VEC2","name":"x4_FlapsKrueger_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":9892,"componentType":5123,"count":95,"type":"VEC4","name":"x4_FlapsKrueger_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1086,"componentType":5123,"count":228,"type":"SCALAR","name":"x4_FlapsKrueger_1_left_indices#0"},{"bufferView":4,"byteOffset":13284,"componentType":5126,"count":36,"min":[3.323634386062622,-0.4529212713241577,-0.7563261985778809],"max":[8.716888427734375,0.8474713563919067,3.1077423095703125],"type":"VEC3","name":"x4_FROST_KRUEGER_L_1_vertices#0_POSITION"},{"bufferView":4,"byteOffset":13296,"componentType":5120,"count":36,"type":"VEC4","name":"x4_FROST_KRUEGER_L_1_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":13300,"componentType":5120,"count":36,"type":"VEC4","name":"x4_FROST_KRUEGER_L_1_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":13304,"componentType":5122,"count":36,"type":"VEC2","name":"x4_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":13308,"componentType":5122,"count":36,"type":"VEC2","name":"x4_FROST_KRUEGER_L_1_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":13312,"componentType":5123,"count":36,"type":"VEC4","name":"x4_FROST_KRUEGER_L_1_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1542,"componentType":5123,"count":54,"type":"SCALAR","name":"x4_FROST_KRUEGER_L_1_indices#0"},{"bufferView":4,"byteOffset":14580,"componentType":5126,"count":194,"min":[-3.4624414443969727,-0.26880714297294617,-2.4887919425964355],"max":[4.0117506980896,1.4273381233215332,0.11581400036811829],"type":"VEC3","name":"x4_Flaps_1_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":14592,"componentType":5120,"count":194,"type":"VEC4","name":"x4_Flaps_1_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":14596,"componentType":5120,"count":194,"type":"VEC4","name":"x4_Flaps_1_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":14600,"componentType":5122,"count":194,"type":"VEC2","name":"x4_Flaps_1_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":14604,"componentType":5122,"count":194,"type":"VEC2","name":"x4_Flaps_1_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":14608,"componentType":5123,"count":194,"type":"VEC4","name":"x4_Flaps_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1650,"componentType":5123,"count":339,"type":"SCALAR","name":"x4_Flaps_1_left_indices#0"},{"bufferView":4,"byteOffset":21564,"componentType":5126,"count":176,"min":[-0.9391446113586426,-0.626029908657074,-0.6272152662277222],"max":[0.9391494989395142,0.6283391714096069,0.6271774768829346],"type":"VEC3","name":"x4_LWheel_01_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":21576,"componentType":5120,"count":176,"type":"VEC4","name":"x4_LWheel_01_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":21580,"componentType":5120,"count":176,"type":"VEC4","name":"x4_LWheel_01_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":21584,"componentType":5122,"count":176,"type":"VEC2","name":"x4_LWheel_01_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":21588,"componentType":5122,"count":176,"type":"VEC2","name":"x4_LWheel_01_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":21592,"componentType":5123,"count":176,"type":"VEC4","name":"x4_LWheel_01_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2328,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_LWheel_01_blurred_indices#0"},{"bufferView":4,"byteOffset":27900,"componentType":5126,"count":204,"min":[-0.963977038860321,-0.6218786239624023,-0.6219954490661621],"max":[0.9639885425567627,0.6219096183776855,0.6219280362129211],"type":"VEC3","name":"x4_LWheel_01_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":27912,"componentType":5120,"count":204,"type":"VEC4","name":"x4_LWheel_01_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":27916,"componentType":5120,"count":204,"type":"VEC4","name":"x4_LWheel_01_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":27920,"componentType":5122,"count":204,"type":"VEC2","name":"x4_LWheel_01_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":27924,"componentType":5122,"count":204,"type":"VEC2","name":"x4_LWheel_01_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":27928,"componentType":5123,"count":204,"type":"VEC4","name":"x4_LWheel_01_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3480,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_LWheel_01_still_indices#0"},{"bufferView":4,"byteOffset":35244,"componentType":5126,"count":176,"min":[-0.9391762018203735,-0.6283254623413086,-0.6271680593490601],"max":[0.9391939043998718,0.6260239481925964,0.6272009611129761],"type":"VEC3","name":"x4_LWheel_02_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":35256,"componentType":5120,"count":176,"type":"VEC4","name":"x4_LWheel_02_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":35260,"componentType":5120,"count":176,"type":"VEC4","name":"x4_LWheel_02_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":35264,"componentType":5122,"count":176,"type":"VEC2","name":"x4_LWheel_02_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":35268,"componentType":5122,"count":176,"type":"VEC2","name":"x4_LWheel_02_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":35272,"componentType":5123,"count":176,"type":"VEC4","name":"x4_LWheel_02_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4632,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_LWheel_02_blurred_indices#0"},{"bufferView":4,"byteOffset":41580,"componentType":5126,"count":204,"min":[-0.9638424515724182,-0.6207314729690552,-0.6220363974571228],"max":[0.9639225006103516,0.6232026815414429,0.6218374967575073],"type":"VEC3","name":"x4_LWheel_02_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":41592,"componentType":5120,"count":204,"type":"VEC4","name":"x4_LWheel_02_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":41596,"componentType":5120,"count":204,"type":"VEC4","name":"x4_LWheel_02_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":41600,"componentType":5122,"count":204,"type":"VEC2","name":"x4_LWheel_02_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":41604,"componentType":5122,"count":204,"type":"VEC2","name":"x4_LWheel_02_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":41608,"componentType":5123,"count":204,"type":"VEC4","name":"x4_LWheel_02_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5784,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_LWheel_02_still_indices#0"},{"bufferView":4,"byteOffset":48924,"componentType":5126,"count":204,"min":[-0.42999356985092163,-3.389561176300049,-0.8213788866996765],"max":[0.45412614941596985,-0.12518493831157684,0.9502301812171936],"type":"VEC3","name":"x4_Landing_gear_Root_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":48936,"componentType":5120,"count":204,"type":"VEC4","name":"x4_Landing_gear_Root_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":48940,"componentType":5120,"count":204,"type":"VEC4","name":"x4_Landing_gear_Root_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":48944,"componentType":5122,"count":204,"type":"VEC2","name":"x4_Landing_gear_Root_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":48948,"componentType":5122,"count":204,"type":"VEC2","name":"x4_Landing_gear_Root_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":48952,"componentType":5123,"count":204,"type":"VEC4","name":"x4_Landing_gear_Root_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6936,"componentType":5123,"count":450,"type":"SCALAR","name":"x4_Landing_gear_Root_left_indices#0"},{"bufferView":4,"byteOffset":56268,"componentType":5126,"count":59,"min":[0.21584224700927734,-2.5987346172332764,-0.8714854717254639],"max":[0.6099698543548584,-0.41588810086250305,1.7047114372253418],"type":"VEC3","name":"x4_Door04_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":56280,"componentType":5120,"count":59,"type":"VEC4","name":"x4_Door04_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":56284,"componentType":5120,"count":59,"type":"VEC4","name":"x4_Door04_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":56288,"componentType":5122,"count":59,"type":"VEC2","name":"x4_Door04_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":56292,"componentType":5122,"count":59,"type":"VEC2","name":"x4_Door04_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":56296,"componentType":5123,"count":59,"type":"VEC4","name":"x4_Door04_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":7836,"componentType":5123,"count":138,"type":"SCALAR","name":"x4_Door04_left_indices#0"},{"bufferView":4,"byteOffset":58392,"componentType":5126,"count":71,"min":[-1.4504354000091553,-1.4424867630004883,-1.2827162742614746],"max":[1.4187357425689697,1.4424872398376465,-0.004564391449093819],"type":"VEC3","name":"x4_1_blurred_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":58404,"componentType":5120,"count":71,"type":"VEC4","name":"x4_1_blurred_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":58408,"componentType":5120,"count":71,"type":"VEC4","name":"x4_1_blurred_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":58412,"componentType":5122,"count":71,"type":"VEC2","name":"x4_1_blurred_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":58416,"componentType":5122,"count":71,"type":"VEC2","name":"x4_1_blurred_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":58420,"componentType":5123,"count":71,"type":"VEC4","name":"x4_1_blurred_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":8112,"componentType":5123,"count":270,"type":"SCALAR","name":"x4_1_blurred_left_indices#0"},{"bufferView":4,"byteOffset":60948,"componentType":5126,"count":71,"min":[-1.4503744840621948,-1.4411083459854126,0.004562959540635347],"max":[1.4213157892227173,1.443753719329834,1.282714605331421],"type":"VEC3","name":"x4_1_slow_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":60960,"componentType":5120,"count":71,"type":"VEC4","name":"x4_1_slow_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":60964,"componentType":5120,"count":71,"type":"VEC4","name":"x4_1_slow_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":60968,"componentType":5122,"count":71,"type":"VEC2","name":"x4_1_slow_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":60972,"componentType":5122,"count":71,"type":"VEC2","name":"x4_1_slow_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":60976,"componentType":5123,"count":71,"type":"VEC4","name":"x4_1_slow_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":8652,"componentType":5123,"count":270,"type":"SCALAR","name":"x4_1_slow_left_indices#0"},{"bufferView":4,"byteOffset":63504,"componentType":5126,"count":263,"min":[-1.448843002319336,-1.4470993280410767,-1.2827186584472656],"max":[1.4488394260406494,1.4505829811096191,0],"type":"VEC3","name":"x4_1_still_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":63516,"componentType":5120,"count":263,"type":"VEC4","name":"x4_1_still_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":63520,"componentType":5120,"count":263,"type":"VEC4","name":"x4_1_still_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":63524,"componentType":5122,"count":263,"type":"VEC2","name":"x4_1_still_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":63528,"componentType":5122,"count":263,"type":"VEC2","name":"x4_1_still_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":63532,"componentType":5123,"count":263,"type":"VEC4","name":"x4_1_still_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9192,"componentType":5123,"count":354,"type":"SCALAR","name":"x4_1_still_left_indices#0"},{"bufferView":4,"byteOffset":72972,"componentType":5126,"count":399,"min":[-1.955230951309204,-1.9265373945236206,-1.0682965517044067],"max":[1.9438457489013672,1.924988865852356,1.2327194213867188],"type":"VEC3","name":"x4_Engine_Duct_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":72984,"componentType":5120,"count":399,"type":"VEC4","name":"x4_Engine_Duct_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":72988,"componentType":5120,"count":399,"type":"VEC4","name":"x4_Engine_Duct_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":72992,"componentType":5122,"count":399,"type":"VEC2","name":"x4_Engine_Duct_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":72996,"componentType":5122,"count":399,"type":"VEC2","name":"x4_Engine_Duct_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":73000,"componentType":5123,"count":399,"type":"VEC4","name":"x4_Engine_Duct_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9900,"componentType":5123,"count":912,"type":"SCALAR","name":"x4_Engine_Duct_left_indices#0"},{"bufferView":4,"byteOffset":87336,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_LEFT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":87348,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":87352,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":87356,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":87360,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":87364,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11724,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_LEFT_indices#0"},{"bufferView":4,"byteOffset":87480,"componentType":5126,"count":8,"min":[-2.0154333114624023,-0.27122175693511963,-0.4341895580291748],"max":[2.0154333114624023,0.2712216377258301,0.434190034866333],"type":"VEC3","name":"x4_Livery_KLM_EngA_vertices#0_POSITION"},{"bufferView":4,"byteOffset":87492,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngA_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":87496,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngA_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":87500,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_EngA_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":87504,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_EngA_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":87508,"componentType":5123,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngA_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11736,"componentType":5123,"count":12,"type":"SCALAR","name":"x4_Livery_KLM_EngA_indices#0"},{"bufferView":4,"byteOffset":87768,"componentType":5126,"count":350,"min":[-0.6842957139015198,-2.4198050498962402,-0.5988160371780396],"max":[0.6873666644096375,0.027515988796949387,0.42523112893104553],"type":"VEC3","name":"x4_Landing_Gear_NosePart16_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":87780,"componentType":5120,"count":350,"type":"VEC4","name":"x4_Landing_Gear_NosePart16_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":87784,"componentType":5120,"count":350,"type":"VEC4","name":"x4_Landing_Gear_NosePart16_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":87788,"componentType":5122,"count":350,"type":"VEC2","name":"x4_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":87792,"componentType":5122,"count":350,"type":"VEC2","name":"x4_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":87796,"componentType":5123,"count":350,"type":"VEC4","name":"x4_Landing_Gear_NosePart16_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11760,"componentType":5123,"count":846,"type":"SCALAR","name":"x4_Landing_Gear_NosePart16_center_indices#0"},{"bufferView":4,"byteOffset":100368,"componentType":5126,"count":3,"min":[0.005114555358886719,0.0018151402473449707,0.07024471461772919],"max":[0.01271173357963562,0.01633089780807495,0.07051077485084534],"type":"VEC3","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100380,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100384,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100388,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100392,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100396,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13452,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_LandingNose_Left_indices#0"},{"bufferView":4,"byteOffset":100476,"componentType":5126,"count":3,"min":[-0.009423524141311646,0.0011743605136871338,0.07099391520023346],"max":[-0.0018263459205627441,0.015690118074417114,0.07125997543334961],"type":"VEC3","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100488,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100492,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100496,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100500,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100504,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13458,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_LandingNose_Right_indices#0"},{"bufferView":4,"byteOffset":100584,"componentType":5126,"count":3,"min":[-0.0004626661539077759,-0.00022479891777038574,0.07268691062927246],"max":[0.008807972073554993,0.014089375734329224,0.07294926047325134],"type":"VEC3","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100596,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100600,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100604,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100608,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100612,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13464,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Taxi_Left_indices#0"},{"bufferView":4,"byteOffset":100692,"componentType":5126,"count":3,"min":[-0.006385669112205505,-0.0010486841201782227,0.07343602925539017],"max":[0.002884969115257263,0.013265490531921387,0.07369838654994965],"type":"VEC3","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100704,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100708,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100712,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100716,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100720,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13470,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Taxi_Right_indices#0"},{"bufferView":4,"byteOffset":100800,"componentType":5126,"count":3,"min":[-0.030492784455418587,-0.009933382272720337,-0.027533169835805893],"max":[-0.0007920266361907125,-0.0038215811364352703,-0.00086545932572335],"type":"VEC3","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100812,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100816,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100820,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100824,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100828,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13476,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Logo_Right_indices#0"},{"bufferView":4,"byteOffset":100908,"componentType":5126,"count":399,"min":[-1.943507194519043,-1.9257582426071167,-1.0647015571594238],"max":[1.9441816806793213,1.9257560968399048,1.2277724742889404],"type":"VEC3","name":"x4_Engine_Duct_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":100920,"componentType":5120,"count":399,"type":"VEC4","name":"x4_Engine_Duct_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":100924,"componentType":5120,"count":399,"type":"VEC4","name":"x4_Engine_Duct_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":100928,"componentType":5122,"count":399,"type":"VEC2","name":"x4_Engine_Duct_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":100932,"componentType":5122,"count":399,"type":"VEC2","name":"x4_Engine_Duct_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":100936,"componentType":5123,"count":399,"type":"VEC4","name":"x4_Engine_Duct_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":13482,"componentType":5123,"count":912,"type":"SCALAR","name":"x4_Engine_Duct_right_indices#0"},{"bufferView":4,"byteOffset":115272,"componentType":5126,"count":70,"min":[-1.4504361152648926,-1.4424867630004883,-1.2827130556106567],"max":[1.4187363386154175,1.4424872398376465,-0.004360597115010023],"type":"VEC3","name":"x4_2_blurred_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":115284,"componentType":5120,"count":70,"type":"VEC4","name":"x4_2_blurred_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":115288,"componentType":5120,"count":70,"type":"VEC4","name":"x4_2_blurred_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":115292,"componentType":5122,"count":70,"type":"VEC2","name":"x4_2_blurred_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":115296,"componentType":5122,"count":70,"type":"VEC2","name":"x4_2_blurred_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":115300,"componentType":5123,"count":70,"type":"VEC4","name":"x4_2_blurred_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":15306,"componentType":5123,"count":270,"type":"SCALAR","name":"x4_2_blurred_right_indices#0"},{"bufferView":4,"byteOffset":117792,"componentType":5126,"count":70,"min":[-1.4503744840621948,-1.4411083459854126,0.0043591661378741264],"max":[1.4213157892227173,1.443753719329834,1.2827115058898926],"type":"VEC3","name":"x4_2_slow_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":117804,"componentType":5120,"count":70,"type":"VEC4","name":"x4_2_slow_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":117808,"componentType":5120,"count":70,"type":"VEC4","name":"x4_2_slow_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":117812,"componentType":5122,"count":70,"type":"VEC2","name":"x4_2_slow_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":117816,"componentType":5122,"count":70,"type":"VEC2","name":"x4_2_slow_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":117820,"componentType":5123,"count":70,"type":"VEC4","name":"x4_2_slow_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":15846,"componentType":5123,"count":270,"type":"SCALAR","name":"x4_2_slow_right_indices#0"},{"bufferView":4,"byteOffset":120312,"componentType":5126,"count":280,"min":[-1.4488445520401,-1.447099208831787,-1.282717227935791],"max":[1.4488409757614136,1.4505828619003296,0],"type":"VEC3","name":"x4_2_still_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":120324,"componentType":5120,"count":280,"type":"VEC4","name":"x4_2_still_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":120328,"componentType":5120,"count":280,"type":"VEC4","name":"x4_2_still_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":120332,"componentType":5122,"count":280,"type":"VEC2","name":"x4_2_still_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":120336,"componentType":5122,"count":280,"type":"VEC2","name":"x4_2_still_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":120340,"componentType":5123,"count":280,"type":"VEC4","name":"x4_2_still_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":16386,"componentType":5123,"count":360,"type":"SCALAR","name":"x4_2_still_right_indices#0"},{"bufferView":4,"byteOffset":130392,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_RIGHT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":130404,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":130408,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":130412,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":130416,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":130420,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17106,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_RIGHT_indices#0"},{"bufferView":4,"byteOffset":130536,"componentType":5126,"count":8,"min":[-2.015434741973877,-0.27122175693511963,-0.4341893196105957],"max":[2.0154314041137695,0.2712215185165405,0.434190034866333],"type":"VEC3","name":"x4_Livery_KLM_EngB_vertices#0_POSITION"},{"bufferView":4,"byteOffset":130548,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngB_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":130552,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngB_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":130556,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_EngB_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":130560,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_EngB_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":130564,"componentType":5123,"count":8,"type":"VEC4","name":"x4_Livery_KLM_EngB_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17118,"componentType":5123,"count":12,"type":"SCALAR","name":"x4_Livery_KLM_EngB_indices#0"},{"bufferView":4,"byteOffset":130824,"componentType":5126,"count":89,"min":[-3.0429697036743164,-0.37209126353263855,-1.425876259803772],"max":[2.3551323413848877,0.8763584494590759,2.4357666969299316],"type":"VEC3","name":"x4_FlapsKrueger_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":130836,"componentType":5120,"count":89,"type":"VEC4","name":"x4_FlapsKrueger_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":130840,"componentType":5120,"count":89,"type":"VEC4","name":"x4_FlapsKrueger_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":130844,"componentType":5122,"count":89,"type":"VEC2","name":"x4_FlapsKrueger_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":130848,"componentType":5122,"count":89,"type":"VEC2","name":"x4_FlapsKrueger_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":130852,"componentType":5123,"count":89,"type":"VEC4","name":"x4_FlapsKrueger_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17142,"componentType":5123,"count":204,"type":"SCALAR","name":"x4_FlapsKrueger_1_right_indices#0"},{"bufferView":4,"byteOffset":134028,"componentType":5126,"count":16,"min":[-8.716888427734375,-0.452919602394104,-0.7563257217407227],"max":[-3.323636531829834,0.8474729061126709,3.107743263244629],"type":"VEC3","name":"x4_FROST_KRUEGER_R_1_vertices#0_POSITION"},{"bufferView":4,"byteOffset":134040,"componentType":5120,"count":16,"type":"VEC4","name":"x4_FROST_KRUEGER_R_1_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":134044,"componentType":5120,"count":16,"type":"VEC4","name":"x4_FROST_KRUEGER_R_1_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":134048,"componentType":5122,"count":16,"type":"VEC2","name":"x4_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":134052,"componentType":5122,"count":16,"type":"VEC2","name":"x4_FROST_KRUEGER_R_1_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":134056,"componentType":5123,"count":16,"type":"VEC4","name":"x4_FROST_KRUEGER_R_1_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17550,"componentType":5123,"count":24,"type":"SCALAR","name":"x4_FROST_KRUEGER_R_1_indices#0"},{"bufferView":4,"byteOffset":134604,"componentType":5126,"count":150,"min":[-3.971318244934082,-0.3322523236274719,-2.4729957580566406],"max":[3.4751830101013184,1.31447172164917,0.13161027431488037],"type":"VEC3","name":"x4_Flaps_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":134616,"componentType":5120,"count":150,"type":"VEC4","name":"x4_Flaps_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":134620,"componentType":5120,"count":150,"type":"VEC4","name":"x4_Flaps_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":134624,"componentType":5122,"count":150,"type":"VEC2","name":"x4_Flaps_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":134628,"componentType":5122,"count":150,"type":"VEC2","name":"x4_Flaps_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":134632,"componentType":5123,"count":150,"type":"VEC4","name":"x4_Flaps_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17598,"componentType":5123,"count":246,"type":"SCALAR","name":"x4_Flaps_1_right_indices#0"},{"bufferView":4,"byteOffset":140004,"componentType":5126,"count":143,"min":[-0.5998412370681763,-0.09761866927146912,-1.594496250152588],"max":[1.2254441976547241,0.6203984022140503,0.25260159373283386],"type":"VEC3","name":"x4_Flaps_1_1_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":140016,"componentType":5120,"count":143,"type":"VEC4","name":"x4_Flaps_1_1_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":140020,"componentType":5120,"count":143,"type":"VEC4","name":"x4_Flaps_1_1_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":140024,"componentType":5122,"count":143,"type":"VEC2","name":"x4_Flaps_1_1_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":140028,"componentType":5122,"count":143,"type":"VEC2","name":"x4_Flaps_1_1_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":140032,"componentType":5123,"count":143,"type":"VEC4","name":"x4_Flaps_1_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":18090,"componentType":5123,"count":270,"type":"SCALAR","name":"x4_Flaps_1_1_right_indices#0"},{"bufferView":4,"byteOffset":145152,"componentType":5126,"count":3,"min":[-0.0122833251953125,0.010597944259643555,0.0026445388793945312],"max":[-0.01038360595703125,0.013393640518188477,0.004874229431152344],"type":"VEC3","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION"},{"bufferView":4,"byteOffset":145164,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":145168,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":145172,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":145176,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":145180,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":18630,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_NavigationGreen_indices#0"},{"bufferView":4,"byteOffset":145260,"componentType":5126,"count":4,"min":[0.0034999847412109375,0.02491593360900879,-0.013380050659179688],"max":[0.019163131713867188,0.051308393478393555,-0.009847640991210938],"type":"VEC3","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":145272,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":145276,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":145280,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":145284,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":145288,"componentType":5123,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":18636,"componentType":5123,"count":6,"type":"SCALAR","name":"x4_LIGHT_ASOBO_NavigationWing_Right_indices#0"},{"bufferView":4,"byteOffset":145404,"componentType":5126,"count":3,"min":[-0.05275726318359375,0.010921001434326172,0.0037736892700195312],"max":[-0.051776885986328125,0.01444101333618164,0.007266044616699219],"type":"VEC3","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":145416,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":145420,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":145424,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":145428,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":145432,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":18648,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_StrobeWing_Right_indices#0"},{"bufferView":4,"byteOffset":145512,"componentType":5126,"count":138,"min":[-1.0416648387908936,-0.2551587224006653,-1.02711021900177],"max":[1.0387980937957764,0.14307525753974915,0.3660537600517273],"type":"VEC3","name":"x4_Spoiler_2_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":145524,"componentType":5120,"count":138,"type":"VEC4","name":"x4_Spoiler_2_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":145528,"componentType":5120,"count":138,"type":"VEC4","name":"x4_Spoiler_2_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":145532,"componentType":5122,"count":138,"type":"VEC2","name":"x4_Spoiler_2_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":145536,"componentType":5122,"count":138,"type":"VEC2","name":"x4_Spoiler_2_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":145540,"componentType":5123,"count":138,"type":"VEC4","name":"x4_Spoiler_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":18654,"componentType":5123,"count":462,"type":"SCALAR","name":"x4_Spoiler_2_right_indices#0"},{"bufferView":4,"byteOffset":150480,"componentType":5126,"count":47,"min":[-0.6099686622619629,-2.5987343788146973,-0.8714852333068848],"max":[-0.21584230661392212,-0.41588783264160156,1.704709768295288],"type":"VEC3","name":"x4_Door04_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":150492,"componentType":5120,"count":47,"type":"VEC4","name":"x4_Door04_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":150496,"componentType":5120,"count":47,"type":"VEC4","name":"x4_Door04_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":150500,"componentType":5122,"count":47,"type":"VEC2","name":"x4_Door04_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":150504,"componentType":5122,"count":47,"type":"VEC2","name":"x4_Door04_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":150508,"componentType":5123,"count":47,"type":"VEC4","name":"x4_Door04_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19578,"componentType":5123,"count":96,"type":"SCALAR","name":"x4_Door04_right_indices#0"},{"bufferView":4,"byteOffset":152172,"componentType":5126,"count":176,"min":[-0.9391129612922668,-0.6283622980117798,-0.6271824240684509],"max":[0.9391080737113953,0.626052975654602,0.6272202134132385],"type":"VEC3","name":"x4_RWheel_01_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":152184,"componentType":5120,"count":176,"type":"VEC4","name":"x4_RWheel_01_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":152188,"componentType":5120,"count":176,"type":"VEC4","name":"x4_RWheel_01_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":152192,"componentType":5122,"count":176,"type":"VEC2","name":"x4_RWheel_01_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":152196,"componentType":5122,"count":176,"type":"VEC2","name":"x4_RWheel_01_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":152200,"componentType":5123,"count":176,"type":"VEC4","name":"x4_RWheel_01_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":19770,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_RWheel_01_blurred_indices#0"},{"bufferView":4,"byteOffset":158508,"componentType":5126,"count":204,"min":[-0.9639796614646912,-0.6219156980514526,-0.6219280958175659],"max":[0.9639681577682495,0.6218847036361694,0.6219955086708069],"type":"VEC3","name":"x4_RWheel_01_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":158520,"componentType":5120,"count":204,"type":"VEC4","name":"x4_RWheel_01_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":158524,"componentType":5120,"count":204,"type":"VEC4","name":"x4_RWheel_01_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":158528,"componentType":5122,"count":204,"type":"VEC2","name":"x4_RWheel_01_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":158532,"componentType":5122,"count":204,"type":"VEC2","name":"x4_RWheel_01_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":158536,"componentType":5123,"count":204,"type":"VEC4","name":"x4_RWheel_01_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":20922,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_RWheel_01_still_indices#0"},{"bufferView":4,"byteOffset":165852,"componentType":5126,"count":176,"min":[-0.93922358751297,-0.6260079145431519,-0.6271998882293701],"max":[0.9392058849334717,0.6283093094825745,0.6271669864654541],"type":"VEC3","name":"x4_RWheel_02_blurred_vertices#0_POSITION"},{"bufferView":4,"byteOffset":165864,"componentType":5120,"count":176,"type":"VEC4","name":"x4_RWheel_02_blurred_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":165868,"componentType":5120,"count":176,"type":"VEC4","name":"x4_RWheel_02_blurred_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":165872,"componentType":5122,"count":176,"type":"VEC2","name":"x4_RWheel_02_blurred_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":165876,"componentType":5122,"count":176,"type":"VEC2","name":"x4_RWheel_02_blurred_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":165880,"componentType":5123,"count":176,"type":"VEC4","name":"x4_RWheel_02_blurred_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":22074,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_RWheel_02_blurred_indices#0"},{"bufferView":4,"byteOffset":172188,"componentType":5126,"count":204,"min":[-0.9639143347740173,-0.6232092976570129,-0.621836245059967],"max":[0.963834285736084,0.6207380294799805,0.6220351457595825],"type":"VEC3","name":"x4_RWheel_02_still_vertices#0_POSITION"},{"bufferView":4,"byteOffset":172200,"componentType":5120,"count":204,"type":"VEC4","name":"x4_RWheel_02_still_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":172204,"componentType":5120,"count":204,"type":"VEC4","name":"x4_RWheel_02_still_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":172208,"componentType":5122,"count":204,"type":"VEC2","name":"x4_RWheel_02_still_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":172212,"componentType":5122,"count":204,"type":"VEC2","name":"x4_RWheel_02_still_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":172216,"componentType":5123,"count":204,"type":"VEC4","name":"x4_RWheel_02_still_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":23226,"componentType":5123,"count":576,"type":"SCALAR","name":"x4_RWheel_02_still_indices#0"},{"bufferView":4,"byteOffset":179532,"componentType":5126,"count":198,"min":[-0.45414841175079346,0.12518499791622162,-0.9502412676811218],"max":[0.42997169494628906,3.3895602226257324,0.8213653564453125],"type":"VEC3","name":"x4_Landing_gear_Root_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":179544,"componentType":5120,"count":198,"type":"VEC4","name":"x4_Landing_gear_Root_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":179548,"componentType":5120,"count":198,"type":"VEC4","name":"x4_Landing_gear_Root_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":179552,"componentType":5122,"count":198,"type":"VEC2","name":"x4_Landing_gear_Root_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":179556,"componentType":5122,"count":198,"type":"VEC2","name":"x4_Landing_gear_Root_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":179560,"componentType":5123,"count":198,"type":"VEC4","name":"x4_Landing_gear_Root_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":24378,"componentType":5123,"count":450,"type":"SCALAR","name":"x4_Landing_gear_Root_right_indices#0"},{"bufferView":4,"byteOffset":186660,"componentType":5126,"count":1756,"min":[-9.81413745880127,-2.3647265434265137,-39.729732513427734],"max":[9.8141450881958,12.393302917480469,28.461898803710938],"type":"VEC3","name":"x4_Body_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":186672,"componentType":5120,"count":1756,"type":"VEC4","name":"x4_Body_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":186676,"componentType":5120,"count":1756,"type":"VEC4","name":"x4_Body_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":186680,"componentType":5122,"count":1756,"type":"VEC2","name":"x4_Body_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":186684,"componentType":5122,"count":1756,"type":"VEC2","name":"x4_Body_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":186688,"componentType":5123,"count":1756,"type":"VEC4","name":"x4_Body_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":25278,"componentType":5123,"count":3816,"type":"SCALAR","name":"x4_Body_center_indices#4"},{"bufferView":4,"byteOffset":249876,"componentType":5126,"count":1089,"min":[-11.796732902526855,-3.505500316619873,-38.74489212036133],"max":[11.796734809875488,12.302053451538086,28.516590118408203],"type":"VEC3","name":"x4_FROST_FUSELAGE_vertices#0_POSITION"},{"bufferView":4,"byteOffset":249888,"componentType":5120,"count":1089,"type":"VEC4","name":"x4_FROST_FUSELAGE_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":249892,"componentType":5120,"count":1089,"type":"VEC4","name":"x4_FROST_FUSELAGE_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":249896,"componentType":5122,"count":1089,"type":"VEC2","name":"x4_FROST_FUSELAGE_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":249900,"componentType":5122,"count":1089,"type":"VEC2","name":"x4_FROST_FUSELAGE_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":249904,"componentType":5123,"count":1089,"type":"VEC4","name":"x4_FROST_FUSELAGE_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":32910,"componentType":5123,"count":2508,"type":"SCALAR","name":"x4_FROST_FUSELAGE_indices#0"},{"bufferView":4,"byteOffset":289080,"componentType":5126,"count":4,"min":[-0.04375565052032471,0.027031421661376953,-0.08321332931518555],"max":[-0.009208147414028645,0.08187198638916016,-0.06787276268005371],"type":"VEC3","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289092,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289096,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289100,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289104,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289108,"componentType":5123,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37926,"componentType":5123,"count":6,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Beacon_Belly_indices#0"},{"bufferView":4,"byteOffset":289224,"componentType":5126,"count":4,"min":[-0.012800686061382294,-0.07480287551879883,-0.06730921566486359],"max":[-0.004207842983305454,-0.06878948211669922,-0.0611618310213089],"type":"VEC3","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289236,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289240,"componentType":5120,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289244,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289248,"componentType":5122,"count":4,"type":"VEC2","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289252,"componentType":5123,"count":4,"type":"VEC4","name":"x4_LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37938,"componentType":5123,"count":6,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Beacon_Top_indices#0"},{"bufferView":4,"byteOffset":289368,"componentType":5126,"count":3,"min":[0.025082111358642578,0.0470188707113266,0.05144834518432617],"max":[0.041039466857910156,0.06633411347866058,0.06078958511352539],"type":"VEC3","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289380,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289384,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289388,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289392,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289396,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37950,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_LandingWing_Left_indices#0"},{"bufferView":4,"byteOffset":289476,"componentType":5126,"count":3,"min":[-0.03306722640991211,0.0470188707113266,0.07366704940795898],"max":[-0.01431417465209961,0.06633410602807999,0.07678556442260742],"type":"VEC3","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289488,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289492,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289496,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289500,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289504,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37956,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_LandingWing_Right_indices#0"},{"bufferView":4,"byteOffset":289584,"componentType":5126,"count":3,"min":[0.04707932472229004,-0.01686510443687439,0.006795406341552734],"max":[0.0535123348236084,0.004947096109390259,0.026953697204589844],"type":"VEC3","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289596,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289600,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289604,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289608,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289612,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37962,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left_indices#0"},{"bufferView":4,"byteOffset":289692,"componentType":5126,"count":3,"min":[-0.05218672752380371,-0.01686510443687439,0.019605159759521484],"max":[-0.03882431983947754,0.004947096109390259,0.037015438079833984],"type":"VEC3","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289704,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289708,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289712,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289716,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289720,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37968,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right_indices#0"},{"bufferView":4,"byteOffset":289800,"componentType":5126,"count":3,"min":[0.011102437973022461,0.018764615058898926,-0.00572967529296875],"max":[0.013572514057159424,0.020845651626586914,-0.004261016845703125],"type":"VEC3","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289812,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289816,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289820,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289824,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289828,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37974,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_StrobeTail_Left_indices#0"},{"bufferView":4,"byteOffset":289908,"componentType":5126,"count":3,"min":[-0.004686951637268066,0.018764734268188477,-0.00374603271484375],"max":[-0.002954244613647461,0.021648406982421875,-0.002735137939453125],"type":"VEC3","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":289920,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":289924,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":289928,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":289932,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":289936,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37980,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_StrobeTail_Right_indices#0"},{"bufferView":4,"byteOffset":290016,"componentType":5126,"count":3,"min":[0.06098461151123047,0.014184713363647461,-0.019765853881835938],"max":[0.07079386711120605,0.03238396346569061,-9.5367431640625e-7],"type":"VEC3","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":290028,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":290032,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":290036,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":290040,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":290044,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37986,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Wing_Left_indices#0"},{"bufferView":4,"byteOffset":290124,"componentType":5126,"count":3,"min":[-0.06932544708251953,0.015733569860458374,-0.016122817993164062],"max":[-0.059476613998413086,0.032518431544303894,0.0058917999267578125],"type":"VEC3","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":290136,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":290140,"componentType":5120,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":290144,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":290148,"componentType":5122,"count":3,"type":"VEC2","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":290152,"componentType":5123,"count":3,"type":"VEC4","name":"x4_LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37992,"componentType":5123,"count":3,"type":"SCALAR","name":"x4_LIGHT_ASOBO_Wing_Right_indices#0"},{"bufferView":4,"byteOffset":290232,"componentType":5126,"count":55,"min":[-1.63640558719635,1.1317578554153442,25.043411254882812],"max":[1.63640558719635,1.8481483459472656,27.009525299072266],"type":"VEC3","name":"x4_WINDSHIELD_vertices#0_POSITION"},{"bufferView":4,"byteOffset":290244,"componentType":5120,"count":55,"type":"VEC4","name":"x4_WINDSHIELD_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":290248,"componentType":5120,"count":55,"type":"VEC4","name":"x4_WINDSHIELD_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":290252,"componentType":5122,"count":55,"type":"VEC2","name":"x4_WINDSHIELD_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":290256,"componentType":5122,"count":55,"type":"VEC2","name":"x4_WINDSHIELD_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":290260,"componentType":5123,"count":55,"type":"VEC4","name":"x4_WINDSHIELD_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":37998,"componentType":5123,"count":165,"type":"SCALAR","name":"x4_WINDSHIELD_indices#0"},{"bufferView":4,"byteOffset":292212,"componentType":5126,"count":544,"min":[-5.406018257141113,-0.25349560379981995,-48.82345199584961],"max":[0.2644622027873993,0.42833685874938965,0.1163593977689743],"type":"VEC3","name":"x4_Porthole_Blocker_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":292224,"componentType":5120,"count":544,"type":"VEC4","name":"x4_Porthole_Blocker_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":292228,"componentType":5120,"count":544,"type":"VEC4","name":"x4_Porthole_Blocker_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":292232,"componentType":5122,"count":544,"type":"VEC2","name":"x4_Porthole_Blocker_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":292236,"componentType":5122,"count":544,"type":"VEC2","name":"x4_Porthole_Blocker_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":292240,"componentType":5123,"count":544,"type":"VEC4","name":"x4_Porthole_Blocker_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":38328,"componentType":5123,"count":816,"type":"SCALAR","name":"x4_Porthole_Blocker_center_indices#0"},{"bufferView":4,"byteOffset":311796,"componentType":5126,"count":8,"min":[-2.667531967163086,-0.20421838760375977,-0.8157100677490234],"max":[2.667531967163086,0.20421838760375977,0.8157100677490234],"type":"VEC3","name":"x4_Livery_KLM_RegNumber_vertices#0_POSITION"},{"bufferView":4,"byteOffset":311808,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_RegNumber_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":311812,"componentType":5120,"count":8,"type":"VEC4","name":"x4_Livery_KLM_RegNumber_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":311816,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":311820,"componentType":5122,"count":8,"type":"VEC2","name":"x4_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":311824,"componentType":5123,"count":8,"type":"VEC4","name":"x4_Livery_KLM_RegNumber_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":39960,"componentType":5123,"count":12,"type":"SCALAR","name":"x4_Livery_KLM_RegNumber_indices#0"},{"bufferView":4,"byteOffset":312084,"componentType":5126,"count":3765,"min":[-2.8585944175720215,-1.6167864799499512,-29.290233612060547],"max":[2.8585944175720215,1.6275503635406494,29.290233612060547],"type":"VEC3","name":"x0_Livery_KLM_FuselageB_vertices#0_POSITION"},{"bufferView":4,"byteOffset":312096,"componentType":5120,"count":3765,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":312100,"componentType":5120,"count":3765,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":312104,"componentType":5122,"count":3765,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":312108,"componentType":5122,"count":3765,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":312112,"componentType":5123,"count":3765,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":39984,"componentType":5123,"count":10809,"type":"SCALAR","name":"x0_Livery_KLM_FuselageB_indices#0"},{"bufferView":4,"byteOffset":447624,"componentType":5126,"count":1691,"min":[-3.0370066165924072,-4.272808074951172,-32.944366455078125],"max":[3.027085781097412,4.495274543762207,32.94788360595703],"type":"VEC3","name":"x4_Livery_KLM_FuselageA_vertices#0_POSITION"},{"bufferView":4,"byteOffset":447636,"componentType":5120,"count":1691,"type":"VEC4","name":"x4_Livery_KLM_FuselageA_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":447640,"componentType":5120,"count":1691,"type":"VEC4","name":"x4_Livery_KLM_FuselageA_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":447644,"componentType":5122,"count":1691,"type":"VEC2","name":"x4_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":447648,"componentType":5122,"count":1691,"type":"VEC2","name":"x4_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":447652,"componentType":5123,"count":1691,"type":"VEC4","name":"x4_Livery_KLM_FuselageA_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":61602,"componentType":5123,"count":2361,"type":"SCALAR","name":"x4_Livery_KLM_FuselageA_indices#0"},{"bufferView":6,"componentType":5126,"count":60,"min":[11.163616180419922,0.004612445831298828,-1.609161615371704],"max":[20.709306716918945,0.1383029818534851,-0.5123214721679688],"type":"VEC3","name":"x4_Spoiler_2_1_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":12,"componentType":5120,"count":60,"type":"VEC4","name":"x4_Spoiler_2_1_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":16,"componentType":5120,"count":60,"type":"VEC4","name":"x4_Spoiler_2_1_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":20,"componentType":5122,"count":60,"type":"VEC2","name":"x4_Spoiler_2_1_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":24,"componentType":5122,"count":60,"type":"VEC2","name":"x4_Spoiler_2_1_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":28,"componentType":5123,"count":60,"type":"VEC4","name":"x4_Spoiler_2_1_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":36,"componentType":5123,"count":60,"normalized":true,"type":"VEC4","name":"x4_Spoiler_2_1_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":44,"componentType":5120,"count":60,"type":"VEC4","name":"x4_Spoiler_2_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":66324,"componentType":5123,"count":96,"type":"SCALAR","name":"x4_Spoiler_2_1_left_indices#0"},{"bufferView":6,"byteOffset":2880,"componentType":5126,"count":72,"min":[-20.70876693725586,-0.13830706477165222,0.5123319625854492],"max":[-11.163603782653809,-0.004616826772689819,1.6091699600219727],"type":"VEC3","name":"x4_Spoiler_2_1_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":2892,"componentType":5120,"count":72,"type":"VEC4","name":"x4_Spoiler_2_1_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":2896,"componentType":5120,"count":72,"type":"VEC4","name":"x4_Spoiler_2_1_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":2900,"componentType":5122,"count":72,"type":"VEC2","name":"x4_Spoiler_2_1_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":2904,"componentType":5122,"count":72,"type":"VEC2","name":"x4_Spoiler_2_1_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":2908,"componentType":5123,"count":72,"type":"VEC4","name":"x4_Spoiler_2_1_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":2916,"componentType":5123,"count":72,"normalized":true,"type":"VEC4","name":"x4_Spoiler_2_1_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":2924,"componentType":5120,"count":72,"type":"VEC4","name":"x4_Spoiler_2_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":66516,"componentType":5123,"count":126,"type":"SCALAR","name":"x4_Spoiler_2_1_right_indices#0"},{"bufferView":6,"byteOffset":6336,"componentType":5126,"count":65,"min":[-30.0091609954834,-0.2974691390991211,-18.07244300842285],"max":[-3.296039581298828,3.4091126918792725,3.3993167877197266],"type":"VEC3","name":"x4_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":6348,"componentType":5120,"count":65,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":6352,"componentType":5120,"count":65,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":6356,"componentType":5122,"count":65,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":6360,"componentType":5122,"count":65,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":6364,"componentType":5123,"count":65,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":6372,"componentType":5123,"count":65,"normalized":true,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":6380,"componentType":5120,"count":65,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":66768,"componentType":5123,"count":213,"type":"SCALAR","name":"x4_Wing_body_right_indices#0"},{"bufferView":6,"byteOffset":9456,"componentType":5126,"count":1397,"min":[-30.017244338989258,-1.3049399852752686,-18.019269943237305],"max":[-2.8388633728027344,3.4091110229492188,3.564340591430664],"type":"VEC3","name":"x4_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":9468,"componentType":5120,"count":1397,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":9472,"componentType":5120,"count":1397,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":9476,"componentType":5122,"count":1397,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":9480,"componentType":5122,"count":1397,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":9484,"componentType":5123,"count":1397,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":9492,"componentType":5123,"count":1397,"normalized":true,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":9500,"componentType":5120,"count":1397,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":67194,"componentType":5123,"count":3408,"type":"SCALAR","name":"x4_Wing_body_right_indices#1"},{"bufferView":6,"byteOffset":76512,"componentType":5126,"count":156,"min":[-29.994781494140625,-0.30581045150756836,-18.02753448486328],"max":[-3.290060043334961,3.394883394241333,3.3993186950683594],"type":"VEC3","name":"x4_Wing_body_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":76524,"componentType":5120,"count":156,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":76528,"componentType":5120,"count":156,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":76532,"componentType":5122,"count":156,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":76536,"componentType":5122,"count":156,"type":"VEC2","name":"x4_Wing_body_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":76540,"componentType":5123,"count":156,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":76548,"componentType":5123,"count":156,"normalized":true,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":76556,"componentType":5120,"count":156,"type":"VEC4","name":"x4_Wing_body_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":74010,"componentType":5123,"count":324,"type":"SCALAR","name":"x4_Wing_body_right_indices#2"},{"bufferView":6,"byteOffset":84000,"componentType":5126,"count":147,"min":[-5.82675313949585,-2.3647263050079346,-6.911769390106201],"max":[-0.2661839425563812,0.32777005434036255,-3.3858397006988525],"type":"VEC3","name":"x4_Undercarriage_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":84012,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":84016,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":84020,"componentType":5122,"count":147,"type":"VEC2","name":"x4_Undercarriage_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":84024,"componentType":5122,"count":147,"type":"VEC2","name":"x4_Undercarriage_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":84028,"componentType":5123,"count":147,"type":"VEC4","name":"x4_Undercarriage_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":84036,"componentType":5123,"count":147,"normalized":true,"type":"VEC4","name":"x4_Undercarriage_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":84044,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":74658,"componentType":5123,"count":201,"type":"SCALAR","name":"x4_Undercarriage_right_indices#0"},{"bufferView":6,"byteOffset":91056,"componentType":5126,"count":40,"min":[-10.421077728271484,-0.8743336200714111,6.4515838623046875],"max":[-3.0438435077667236,0.6078687906265259,7.405038833618164],"type":"VEC3","name":"x4_Spoiler_1_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":91068,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":91072,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":91076,"componentType":5122,"count":40,"type":"VEC2","name":"x4_Spoiler_1_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":91080,"componentType":5122,"count":40,"type":"VEC2","name":"x4_Spoiler_1_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":91084,"componentType":5123,"count":40,"type":"VEC4","name":"x4_Spoiler_1_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":91092,"componentType":5123,"count":40,"normalized":true,"type":"VEC4","name":"x4_Spoiler_1_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":91100,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":75060,"componentType":5123,"count":60,"type":"SCALAR","name":"x4_Spoiler_1_right_indices#0"},{"bufferView":6,"byteOffset":92976,"componentType":5126,"count":212,"min":[-26.857166290283203,-2.7919070720672607,1.500487208366394],"max":[-10.12983226776123,-0.5402965545654297,13.415162086486816],"type":"VEC3","name":"x4_FlapsKrueger_2_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":92988,"componentType":5120,"count":212,"type":"VEC4","name":"x4_FlapsKrueger_2_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":92992,"componentType":5120,"count":212,"type":"VEC4","name":"x4_FlapsKrueger_2_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":92996,"componentType":5122,"count":212,"type":"VEC2","name":"x4_FlapsKrueger_2_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":93000,"componentType":5122,"count":212,"type":"VEC2","name":"x4_FlapsKrueger_2_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":93004,"componentType":5123,"count":212,"type":"VEC4","name":"x4_FlapsKrueger_2_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":93012,"componentType":5123,"count":212,"normalized":true,"type":"VEC4","name":"x4_FlapsKrueger_2_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":93020,"componentType":5120,"count":212,"type":"VEC4","name":"x4_FlapsKrueger_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":75180,"componentType":5123,"count":492,"type":"SCALAR","name":"x4_FlapsKrueger_2_right_indices#0"},{"bufferView":6,"byteOffset":103152,"componentType":5126,"count":290,"min":[-21.10552406311035,0.555815577507019,-13.091991424560547],"max":[-11.76388931274414,2.073246479034424,-7.669435501098633],"type":"VEC3","name":"x4_Flaps_2_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":103164,"componentType":5120,"count":290,"type":"VEC4","name":"x4_Flaps_2_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":103168,"componentType":5120,"count":290,"type":"VEC4","name":"x4_Flaps_2_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":103172,"componentType":5122,"count":290,"type":"VEC2","name":"x4_Flaps_2_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":103176,"componentType":5122,"count":290,"type":"VEC2","name":"x4_Flaps_2_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":103180,"componentType":5123,"count":290,"type":"VEC4","name":"x4_Flaps_2_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":103188,"componentType":5123,"count":290,"normalized":true,"type":"VEC4","name":"x4_Flaps_2_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":103196,"componentType":5120,"count":290,"type":"VEC4","name":"x4_Flaps_2_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":76164,"componentType":5123,"count":606,"type":"SCALAR","name":"x4_Flaps_2_right_indices#0"},{"bufferView":6,"byteOffset":117072,"componentType":5126,"count":124,"min":[-24.889142990112305,1.8992329835891724,-14.56723690032959],"max":[-21.34499740600586,2.498643636703491,-11.97108268737793],"type":"VEC3","name":"x4_Aileron_right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":117084,"componentType":5120,"count":124,"type":"VEC4","name":"x4_Aileron_right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":117088,"componentType":5120,"count":124,"type":"VEC4","name":"x4_Aileron_right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":117092,"componentType":5122,"count":124,"type":"VEC2","name":"x4_Aileron_right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":117096,"componentType":5122,"count":124,"type":"VEC2","name":"x4_Aileron_right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":117100,"componentType":5123,"count":124,"type":"VEC4","name":"x4_Aileron_right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":117108,"componentType":5123,"count":124,"normalized":true,"type":"VEC4","name":"x4_Aileron_right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":117116,"componentType":5120,"count":124,"type":"VEC4","name":"x4_Aileron_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":77376,"componentType":5123,"count":276,"type":"SCALAR","name":"x4_Aileron_right_indices#0"},{"bufferView":6,"byteOffset":123024,"componentType":5126,"count":73,"min":[3.296043634414673,-0.29746854305267334,-18.072439193725586],"max":[30.009159088134766,3.4091126918792725,3.399315595626831],"type":"VEC3","name":"x4_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":123036,"componentType":5120,"count":73,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":123040,"componentType":5120,"count":73,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":123044,"componentType":5122,"count":73,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":123048,"componentType":5122,"count":73,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":123052,"componentType":5123,"count":73,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":123060,"componentType":5123,"count":73,"normalized":true,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":123068,"componentType":5120,"count":73,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":77928,"componentType":5123,"count":213,"type":"SCALAR","name":"x4_Wing_body_left_indices#0"},{"bufferView":6,"byteOffset":126528,"componentType":5126,"count":1374,"min":[2.838864803314209,-1.3049402236938477,-18.01926612854004],"max":[30.017242431640625,3.4091110229492188,3.5643386840820312],"type":"VEC3","name":"x4_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":126540,"componentType":5120,"count":1374,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":126544,"componentType":5120,"count":1374,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":126548,"componentType":5122,"count":1374,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":126552,"componentType":5122,"count":1374,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":126556,"componentType":5123,"count":1374,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":126564,"componentType":5123,"count":1374,"normalized":true,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":126572,"componentType":5120,"count":1374,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":78354,"componentType":5123,"count":3387,"type":"SCALAR","name":"x4_Wing_body_left_indices#1"},{"bufferView":6,"byteOffset":192480,"componentType":5126,"count":182,"min":[3.290062665939331,-0.3058108687400818,-18.027530670166016],"max":[29.994781494140625,3.394883394241333,3.3993165493011475],"type":"VEC3","name":"x4_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":192492,"componentType":5120,"count":182,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":192496,"componentType":5120,"count":182,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":192500,"componentType":5122,"count":182,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":192504,"componentType":5122,"count":182,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":192508,"componentType":5123,"count":182,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":192516,"componentType":5123,"count":182,"normalized":true,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":192524,"componentType":5120,"count":182,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":85128,"componentType":5123,"count":366,"type":"SCALAR","name":"x4_Wing_body_left_indices#2"},{"bufferView":6,"byteOffset":201216,"componentType":5126,"count":9,"min":[19.140178680419922,1.3902814388275146,-12.02985668182373],"max":[23.022136688232422,1.9423401355743408,-8.977128982543945],"type":"VEC3","name":"x4_Wing_body_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":201228,"componentType":5120,"count":9,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":201232,"componentType":5120,"count":9,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":201236,"componentType":5122,"count":9,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":201240,"componentType":5122,"count":9,"type":"VEC2","name":"x4_Wing_body_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":201244,"componentType":5123,"count":9,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":201252,"componentType":5123,"count":9,"normalized":true,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":201260,"componentType":5120,"count":9,"type":"VEC4","name":"x4_Wing_body_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":85860,"componentType":5123,"count":24,"type":"SCALAR","name":"x4_Wing_body_left_indices#3"},{"bufferView":6,"byteOffset":201648,"componentType":5126,"count":147,"min":[0.2661839425563812,-2.3647263050079346,-6.911769390106201],"max":[5.826752662658691,0.327769935131073,-3.3858394622802734],"type":"VEC3","name":"x4_Undercarriage_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":201660,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":201664,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":201668,"componentType":5122,"count":147,"type":"VEC2","name":"x4_Undercarriage_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":201672,"componentType":5122,"count":147,"type":"VEC2","name":"x4_Undercarriage_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":201676,"componentType":5123,"count":147,"type":"VEC4","name":"x4_Undercarriage_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":201684,"componentType":5123,"count":147,"normalized":true,"type":"VEC4","name":"x4_Undercarriage_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":201692,"componentType":5120,"count":147,"type":"VEC4","name":"x4_Undercarriage_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":85908,"componentType":5123,"count":201,"type":"SCALAR","name":"x4_Undercarriage_left_indices#0"},{"bufferView":6,"byteOffset":208704,"componentType":5126,"count":40,"min":[3.043844699859619,-0.6078511476516724,-7.404510974884033],"max":[10.421204566955566,0.8745605945587158,-6.450397491455078],"type":"VEC3","name":"x4_Spoiler_1_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":208716,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":208720,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":208724,"componentType":5122,"count":40,"type":"VEC2","name":"x4_Spoiler_1_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":208728,"componentType":5122,"count":40,"type":"VEC2","name":"x4_Spoiler_1_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":208732,"componentType":5123,"count":40,"type":"VEC4","name":"x4_Spoiler_1_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":208740,"componentType":5123,"count":40,"normalized":true,"type":"VEC4","name":"x4_Spoiler_1_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":208748,"componentType":5120,"count":40,"type":"VEC4","name":"x4_Spoiler_1_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":86310,"componentType":5123,"count":66,"type":"SCALAR","name":"x4_Spoiler_1_left_indices#0"},{"bufferView":6,"byteOffset":210624,"componentType":5126,"count":194,"min":[10.155594825744629,0.5402969121932983,-13.395139694213867],"max":[26.88292694091797,2.791901111602783,-1.48046875],"type":"VEC3","name":"x4_FlapsKrueger_2_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":210636,"componentType":5120,"count":194,"type":"VEC4","name":"x4_FlapsKrueger_2_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":210640,"componentType":5120,"count":194,"type":"VEC4","name":"x4_FlapsKrueger_2_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":210644,"componentType":5122,"count":194,"type":"VEC2","name":"x4_FlapsKrueger_2_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":210648,"componentType":5122,"count":194,"type":"VEC2","name":"x4_FlapsKrueger_2_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":210652,"componentType":5123,"count":194,"type":"VEC4","name":"x4_FlapsKrueger_2_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":210660,"componentType":5123,"count":194,"normalized":true,"type":"VEC4","name":"x4_FlapsKrueger_2_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":210668,"componentType":5120,"count":194,"type":"VEC4","name":"x4_FlapsKrueger_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":86442,"componentType":5123,"count":408,"type":"SCALAR","name":"x4_FlapsKrueger_2_left_indices#0"},{"bufferView":6,"byteOffset":219936,"componentType":5126,"count":225,"min":[11.763893127441406,0.587261438369751,-13.092342376708984],"max":[21.10556411743164,2.0732462406158447,-7.669434547424316],"type":"VEC3","name":"x4_Flaps_2_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":219948,"componentType":5120,"count":225,"type":"VEC4","name":"x4_Flaps_2_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":219952,"componentType":5120,"count":225,"type":"VEC4","name":"x4_Flaps_2_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":219956,"componentType":5122,"count":225,"type":"VEC2","name":"x4_Flaps_2_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":219960,"componentType":5122,"count":225,"type":"VEC2","name":"x4_Flaps_2_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":219964,"componentType":5123,"count":225,"type":"VEC4","name":"x4_Flaps_2_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":219972,"componentType":5123,"count":225,"normalized":true,"type":"VEC4","name":"x4_Flaps_2_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":219980,"componentType":5120,"count":225,"type":"VEC4","name":"x4_Flaps_2_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":87258,"componentType":5123,"count":480,"type":"SCALAR","name":"x4_Flaps_2_left_indices#0"},{"bufferView":6,"byteOffset":230736,"componentType":5126,"count":119,"min":[21.345001220703125,1.8993865251541138,-14.584488868713379],"max":[24.889142990112305,2.498643636703491,-11.97108268737793],"type":"VEC3","name":"x4_Aileron_left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":230748,"componentType":5120,"count":119,"type":"VEC4","name":"x4_Aileron_left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":230752,"componentType":5120,"count":119,"type":"VEC4","name":"x4_Aileron_left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":230756,"componentType":5122,"count":119,"type":"VEC2","name":"x4_Aileron_left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":230760,"componentType":5122,"count":119,"type":"VEC2","name":"x4_Aileron_left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":230764,"componentType":5123,"count":119,"type":"VEC4","name":"x4_Aileron_left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":230772,"componentType":5123,"count":119,"normalized":true,"type":"VEC4","name":"x4_Aileron_left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":230780,"componentType":5120,"count":119,"type":"VEC4","name":"x4_Aileron_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":88218,"componentType":5123,"count":276,"type":"SCALAR","name":"x4_Aileron_left_indices#0"},{"bufferView":6,"byteOffset":236448,"componentType":5126,"count":112,"min":[10.141210556030273,0.5165841579437256,-13.396986961364746],"max":[26.875789642333984,2.830195903778076,-1.468536138534546],"type":"VEC3","name":"x4_FROST_KRUEGER_L_2_vertices#0_POSITION"},{"bufferView":6,"byteOffset":236460,"componentType":5120,"count":112,"type":"VEC4","name":"x4_FROST_KRUEGER_L_2_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":236464,"componentType":5120,"count":112,"type":"VEC4","name":"x4_FROST_KRUEGER_L_2_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":236468,"componentType":5122,"count":112,"type":"VEC2","name":"x4_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":236472,"componentType":5122,"count":112,"type":"VEC2","name":"x4_FROST_KRUEGER_L_2_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":236476,"componentType":5123,"count":112,"type":"VEC4","name":"x4_FROST_KRUEGER_L_2_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":236484,"componentType":5123,"count":112,"normalized":true,"type":"VEC4","name":"x4_FROST_KRUEGER_L_2_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":236492,"componentType":5120,"count":112,"type":"VEC4","name":"x4_FROST_KRUEGER_L_2_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":88770,"componentType":5123,"count":186,"type":"SCALAR","name":"x4_FROST_KRUEGER_L_2_indices#0"},{"bufferView":6,"byteOffset":241824,"componentType":5126,"count":122,"min":[-26.87578773498535,0.5165846347808838,-13.396984100341797],"max":[-10.14120864868164,2.830193042755127,-1.468538522720337],"type":"VEC3","name":"x4_FROST_KRUEGER_R_2_vertices#0_POSITION"},{"bufferView":6,"byteOffset":241836,"componentType":5120,"count":122,"type":"VEC4","name":"x4_FROST_KRUEGER_R_2_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":241840,"componentType":5120,"count":122,"type":"VEC4","name":"x4_FROST_KRUEGER_R_2_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":241844,"componentType":5122,"count":122,"type":"VEC2","name":"x4_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":241848,"componentType":5122,"count":122,"type":"VEC2","name":"x4_FROST_KRUEGER_R_2_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":241852,"componentType":5123,"count":122,"type":"VEC4","name":"x4_FROST_KRUEGER_R_2_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":241860,"componentType":5123,"count":122,"normalized":true,"type":"VEC4","name":"x4_FROST_KRUEGER_R_2_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":241868,"componentType":5120,"count":122,"type":"VEC4","name":"x4_FROST_KRUEGER_R_2_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":89142,"componentType":5123,"count":186,"type":"SCALAR","name":"x4_FROST_KRUEGER_R_2_indices#0"},{"bufferView":6,"byteOffset":247680,"componentType":5126,"count":561,"min":[3.075892210006714,-1.3455458879470825,-17.4548397064209],"max":[30.037267684936523,3.389582633972168,3.610687255859375],"type":"VEC3","name":"x4_FROST_WINGL_vertices#0_POSITION"},{"bufferView":6,"byteOffset":247692,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGL_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":247696,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGL_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":247700,"componentType":5122,"count":561,"type":"VEC2","name":"x4_FROST_WINGL_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":247704,"componentType":5122,"count":561,"type":"VEC2","name":"x4_FROST_WINGL_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":247708,"componentType":5123,"count":561,"type":"VEC4","name":"x4_FROST_WINGL_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":247716,"componentType":5123,"count":561,"normalized":true,"type":"VEC4","name":"x4_FROST_WINGL_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":247724,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGL_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":89514,"componentType":5123,"count":1449,"type":"SCALAR","name":"x4_FROST_WINGL_indices#0"},{"bufferView":6,"byteOffset":274608,"componentType":5126,"count":561,"min":[-30.037269592285156,-1.3455458879470825,-17.45484161376953],"max":[-3.075892925262451,3.389582633972168,3.6106882095336914],"type":"VEC3","name":"x4_FROST_WINGR_vertices#0_POSITION"},{"bufferView":6,"byteOffset":274620,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGR_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":274624,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGR_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":274628,"componentType":5122,"count":561,"type":"VEC2","name":"x4_FROST_WINGR_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":274632,"componentType":5122,"count":561,"type":"VEC2","name":"x4_FROST_WINGR_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":274636,"componentType":5123,"count":561,"type":"VEC4","name":"x4_FROST_WINGR_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":274644,"componentType":5123,"count":561,"normalized":true,"type":"VEC4","name":"x4_FROST_WINGR_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":274652,"componentType":5120,"count":561,"type":"VEC4","name":"x4_FROST_WINGR_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":92412,"componentType":5123,"count":1449,"type":"SCALAR","name":"x4_FROST_WINGR_indices#0"},{"bufferView":6,"byteOffset":301536,"componentType":5126,"count":530,"min":[7.858998775482178,-3.4741551876068115,-6.903071403503418],"max":[11.753460884094238,0.5345758199691772,4.491109848022461],"type":"VEC3","name":"x4_Engine_Left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":301548,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":301552,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":301556,"componentType":5122,"count":530,"type":"VEC2","name":"x4_Engine_Left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":301560,"componentType":5122,"count":530,"type":"VEC2","name":"x4_Engine_Left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":301564,"componentType":5123,"count":530,"type":"VEC4","name":"x4_Engine_Left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":301572,"componentType":5123,"count":530,"normalized":true,"type":"VEC4","name":"x4_Engine_Left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":301580,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":95310,"componentType":5123,"count":978,"type":"SCALAR","name":"x4_Engine_Left_indices#0"},{"bufferView":6,"byteOffset":326976,"componentType":5126,"count":530,"min":[-11.753460884094238,-0.5345710515975952,-4.491107940673828],"max":[-7.8589982986450195,3.4741597175598145,6.9020843505859375],"type":"VEC3","name":"x4_Engine_Right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":326988,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":326992,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":326996,"componentType":5122,"count":530,"type":"VEC2","name":"x4_Engine_Right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":327000,"componentType":5122,"count":530,"type":"VEC2","name":"x4_Engine_Right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":327004,"componentType":5123,"count":530,"type":"VEC4","name":"x4_Engine_Right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":327012,"componentType":5123,"count":530,"normalized":true,"type":"VEC4","name":"x4_Engine_Right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":327020,"componentType":5120,"count":530,"type":"VEC4","name":"x4_Engine_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":97266,"componentType":5123,"count":978,"type":"SCALAR","name":"x4_Engine_Right_indices#0"},{"bufferView":8,"byteOffset":28,"componentType":5123,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":16,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_NORMAL"},{"bufferView":8,"componentType":5126,"count":1084,"min":[-6.898191452026367,-2.385265350341797,-0.27293723821640015],"max":[4.0452880859375,0.5350360870361328,0.27293795347213745],"type":"VEC3","name":"x1_Rudder_center.001_vertices#0_POSITION"},{"bufferView":8,"byteOffset":12,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":20,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":24,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_1"},{"bufferView":7,"componentType":5123,"count":5460,"type":"SCALAR","name":"x1_Rudder_center.001_indices#0"},{"bufferView":8,"byteOffset":39052,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":39040,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":39024,"componentType":5126,"count":43,"min":[-0.48449012637138367,0.054303597658872604,-0.7407507300376892],"max":[0.5785654187202454,0.16718320548534393,-0.044933248311281204],"type":"VEC3","name":"x1_Livery_C_Door_02_Left.002_vertices#0_POSITION"},{"bufferView":8,"byteOffset":39036,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":39044,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":39048,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":10920,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_Left.002_indices#0"},{"bufferView":8,"byteOffset":40600,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":40588,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":40572,"componentType":5126,"count":43,"min":[-0.5787447690963745,-0.16539137065410614,0.044925887137651443],"max":[0.4843108654022217,-0.05251185968518257,0.7407436966896057],"type":"VEC3","name":"x1_Livery_C_Door_02_right.002_vertices#0_POSITION"},{"bufferView":8,"byteOffset":40584,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":40592,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":40596,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":11100,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_right.002_indices#0"},{"bufferView":8,"byteOffset":42148,"componentType":5123,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":42136,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":42120,"componentType":5126,"count":345,"min":[-0.2698783874511719,-0.9995222091674805,-0.5886659622192383],"max":[0.0020599365234375,0.5340242385864258,0.5886745452880859],"type":"VEC3","name":"x0_Livery_KLM_DoorB.001_vertices#0_POSITION"},{"bufferView":8,"byteOffset":42132,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":42140,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":42144,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":11280,"componentType":5123,"count":906,"type":"SCALAR","name":"x0_Livery_KLM_DoorB.001_indices#0"},{"bufferView":8,"byteOffset":54568,"componentType":5123,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":54556,"componentType":5120,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":54540,"componentType":5126,"count":24,"min":[2.5483758449554443,1.5735995769500732,5.896169662475586],"max":[2.77527117729187,1.843569040298462,21.52033805847168],"type":"VEC3","name":"x0_Livery_KLM_FuselageA.005_vertices#0_POSITION"},{"bufferView":8,"byteOffset":54560,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":54564,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":13092,"componentType":5123,"count":63,"type":"SCALAR","name":"x0_Livery_KLM_FuselageA.005_indices#0"},{"bufferView":8,"byteOffset":55432,"componentType":5123,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":55420,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":55404,"componentType":5126,"count":31,"min":[-0.27521419525146484,-0.27002182602882385,-1.6258187294006348],"max":[-0.24078130722045898,0.6198497414588928,1.8943886756896973],"type":"VEC3","name":"x0_R_Door01_left.001_vertices#0_POSITION"},{"bufferView":8,"byteOffset":55416,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":55424,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":55428,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":13220,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_R_Door01_left.001_indices#0"},{"bufferView":8,"byteOffset":56548,"componentType":5123,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":56536,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":56520,"componentType":5126,"count":31,"min":[0.24078059196472168,-0.6198493242263794,-1.8943934440612793],"max":[0.27521395683288574,0.2700219750404358,1.625821590423584],"type":"VEC3","name":"x0_Door01_right.001_vertices#0_POSITION"},{"bufferView":8,"byteOffset":56532,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":56540,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":56544,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":13396,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_Door01_right.001_indices#0"},{"bufferView":8,"byteOffset":57664,"componentType":5123,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":57652,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":57636,"componentType":5126,"count":2356,"min":[-0.5303040146827698,2.561161756515503,-39.11258316040039],"max":[0.5303040146827698,12.468074798583984,-25.891597747802734],"type":"VEC3","name":"livery_vstab_vertices#0_POSITION"},{"bufferView":8,"byteOffset":57648,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":57656,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":57660,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":13572,"componentType":5123,"count":12342,"type":"SCALAR","name":"livery_vstab_indices#0"},{"bufferView":8,"byteOffset":142480,"componentType":5123,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":142468,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":142452,"componentType":5126,"count":35,"min":[0.38646888732910156,-1.475200891494751,-1.4131393432617188],"max":[0.8847513198852539,-0.9122163653373718,1.4013233184814453],"type":"VEC3","name":"Cargo_Door_LIVERYDECAL_vertices#0_POSITION"},{"bufferView":8,"byteOffset":142464,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":142472,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":142476,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":38256,"componentType":5123,"count":120,"type":"SCALAR","name":"Cargo_Door_LIVERYDECAL_indices#0"},{"bufferView":8,"byteOffset":143740,"componentType":5123,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":143728,"componentType":5120,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":143712,"componentType":5126,"count":270,"min":[-2.8634743690490723,-0.27878737449645996,-25.152372360229492],"max":[2.863468647003174,2.3880088329315186,-20.129650115966797],"type":"VEC3","name":"Plane.002_vertices#0_POSITION"},{"bufferView":8,"byteOffset":143732,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":143736,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":38496,"componentType":5123,"count":918,"type":"SCALAR","name":"Plane.002_indices#0"},{"bufferView":8,"byteOffset":153460,"componentType":5123,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":153448,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":153432,"componentType":5126,"count":2765,"min":[-1.2694666385650635,-2.546407699584961,-15.50222110748291],"max":[1.269464135169983,-1.9093613624572754,8.595946311950684],"type":"VEC3","name":"Plane.004_vertices#0_POSITION"},{"bufferView":8,"byteOffset":153444,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":153452,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":153456,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":40332,"componentType":5123,"count":8436,"type":"SCALAR","name":"Plane.004_indices#0"},{"bufferView":8,"byteOffset":253000,"componentType":5123,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":252988,"componentType":5120,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":252972,"componentType":5126,"count":12650,"min":[-2.848564624786377,1.0104148387908936,-2.4503250122070312],"max":[2.848580837249756,2.654226064682007,19.7845458984375],"type":"VEC3","name":"Plane.001_vertices#0_POSITION"},{"bufferView":8,"byteOffset":252992,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":252996,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":57204,"componentType":5123,"count":39384,"type":"SCALAR","name":"Plane.001_indices#0"},{"bufferView":8,"byteOffset":708400,"componentType":5123,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":708388,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":708372,"componentType":5126,"count":92,"min":[-2.3540401458740234,0.9106197357177734,23.448795318603516],"max":[2.3526997566223145,1.9353947639465332,24.303451538085938],"type":"VEC3","name":"Plane.003_vertices#0_POSITION"},{"bufferView":8,"byteOffset":708384,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":708392,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":708396,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":135972,"componentType":5123,"count":336,"type":"SCALAR","name":"Plane.003_indices#0"},{"bufferView":8,"byteOffset":711712,"componentType":5123,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_COLOR_0"},{"bufferView":8,"byteOffset":711700,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_NORMAL"},{"bufferView":8,"byteOffset":711684,"componentType":5126,"count":3715,"min":[-3.255725383758545,-1.545548439025879,-30.79000473022461],"max":[3.2557260990142822,-0.9825637340545654,28.268733978271484],"type":"VEC3","name":"Plane.008_vertices#0_POSITION"},{"bufferView":8,"byteOffset":711696,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_TANGENT"},{"bufferView":8,"byteOffset":711704,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_0"},{"bufferView":8,"byteOffset":711708,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":136644,"componentType":5123,"count":11496,"type":"SCALAR","name":"Plane.008_indices#0"},{"bufferView":9,"componentType":5126,"count":81,"min":[0.041666666666666664],"max":[3.375],"type":"SCALAR"},{"bufferView":10,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":11,"componentType":5126,"count":81,"type":"VEC4"},{"bufferView":12,"componentType":5126,"count":161,"min":[0.041666666666666664],"max":[6.708333333333333],"type":"SCALAR"},{"bufferView":13,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":14,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":15,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":16,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":17,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":18,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":19,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":20,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":21,"componentType":5126,"count":81,"type":"VEC4"}],"animations":[{"name":"c_gear","channels":[{"sampler":0,"target":{"node":130,"path":"translation"}},{"sampler":1,"target":{"node":130,"path":"rotation"}},{"sampler":2,"target":{"node":147,"path":"translation"}},{"sampler":3,"target":{"node":147,"path":"rotation"}},{"sampler":4,"target":{"node":147,"path":"scale"}},{"sampler":5,"target":{"node":148,"path":"translation"}},{"sampler":6,"target":{"node":148,"path":"rotation"}},{"sampler":7,"target":{"node":148,"path":"scale"}},{"sampler":8,"target":{"node":6,"path":"rotation"}},{"sampler":9,"target":{"node":144,"path":"translation"}},{"sampler":10,"target":{"node":144,"path":"rotation"}},{"sampler":11,"target":{"node":144,"path":"scale"}},{"sampler":12,"target":{"node":2,"path":"rotation"}},{"sampler":13,"target":{"node":156,"path":"translation"}},{"sampler":14,"target":{"node":156,"path":"rotation"}},{"sampler":15,"target":{"node":156,"path":"scale"}},{"sampler":16,"target":{"node":157,"path":"translation"}},{"sampler":17,"target":{"node":157,"path":"rotation"}},{"sampler":18,"target":{"node":157,"path":"scale"}},{"sampler":19,"target":{"node":159,"path":"translation"}},{"sampler":20,"target":{"node":159,"path":"rotation"}},{"sampler":21,"target":{"node":159,"path":"scale"}},{"sampler":22,"target":{"node":158,"path":"translation"}},{"sampler":23,"target":{"node":158,"path":"rotation"}},{"sampler":24,"target":{"node":158,"path":"scale"}},{"sampler":25,"target":{"node":8,"path":"rotation"}},{"sampler":26,"target":{"node":12,"path":"rotation"}},{"sampler":27,"target":{"node":13,"path":"translation"}},{"sampler":28,"target":{"node":13,"path":"rotation"}},{"sampler":29,"target":{"node":13,"path":"scale"}},{"sampler":30,"target":{"node":136,"path":"translation"}},{"sampler":31,"target":{"node":136,"path":"rotation"}},{"sampler":32,"target":{"node":136,"path":"scale"}},{"sampler":33,"target":{"node":137,"path":"translation"}},{"sampler":34,"target":{"node":137,"path":"rotation"}},{"sampler":35,"target":{"node":137,"path":"scale"}},{"sampler":36,"target":{"node":139,"path":"translation"}},{"sampler":37,"target":{"node":139,"path":"rotation"}},{"sampler":38,"target":{"node":139,"path":"scale"}},{"sampler":39,"target":{"node":145,"path":"translation"}},{"sampler":40,"target":{"node":145,"path":"rotation"}},{"sampler":41,"target":{"node":145,"path":"scale"}},{"sampler":42,"target":{"node":9,"path":"translation"}},{"sampler":43,"target":{"node":9,"path":"rotation"}},{"sampler":44,"target":{"node":9,"path":"scale"}},{"sampler":45,"target":{"node":3,"path":"rotation"}},{"sampler":46,"target":{"node":3,"path":"scale"}},{"sampler":47,"target":{"node":7,"path":"translation"}},{"sampler":48,"target":{"node":7,"path":"rotation"}},{"sampler":49,"target":{"node":7,"path":"scale"}},{"sampler":50,"target":{"node":146,"path":"translation"}},{"sampler":51,"target":{"node":146,"path":"rotation"}},{"sampler":52,"target":{"node":146,"path":"scale"}},{"sampler":53,"target":{"node":149,"path":"translation"}},{"sampler":54,"target":{"node":149,"path":"rotation"}},{"sampler":55,"target":{"node":149,"path":"scale"}},{"sampler":56,"target":{"node":150,"path":"translation"}},{"sampler":57,"target":{"node":150,"path":"rotation"}},{"sampler":58,"target":{"node":150,"path":"scale"}},{"sampler":59,"target":{"node":138,"path":"translation"}},{"sampler":60,"target":{"node":138,"path":"rotation"}},{"sampler":61,"target":{"node":138,"path":"scale"}},{"sampler":62,"target":{"node":141,"path":"translation"}},{"sampler":63,"target":{"node":141,"path":"rotation"}},{"sampler":64,"target":{"node":141,"path":"scale"}},{"sampler":65,"target":{"node":142,"path":"translation"}},{"sampler":66,"target":{"node":142,"path":"rotation"}},{"sampler":67,"target":{"node":142,"path":"scale"}},{"sampler":68,"target":{"node":143,"path":"translation"}},{"sampler":69,"target":{"node":143,"path":"rotation"}},{"sampler":70,"target":{"node":143,"path":"scale"}}],"samplers":[{"input":20,"output":21,"interpolation":"LINEAR"},{"input":22,"output":23,"interpolation":"LINEAR"},{"input":24,"output":25,"interpolation":"LINEAR"},{"input":26,"output":27,"interpolation":"LINEAR"},{"input":28,"output":29,"interpolation":"LINEAR"},{"input":30,"output":31,"interpolation":"LINEAR"},{"input":32,"output":33,"interpolation":"LINEAR"},{"input":34,"output":35,"interpolation":"LINEAR"},{"input":36,"output":37,"interpolation":"LINEAR"},{"input":38,"output":39,"interpolation":"LINEAR"},{"input":40,"output":41,"interpolation":"LINEAR"},{"input":42,"output":43,"interpolation":"LINEAR"},{"input":44,"output":45,"interpolation":"LINEAR"},{"input":46,"output":47,"interpolation":"LINEAR"},{"input":48,"output":49,"interpolation":"LINEAR"},{"input":50,"output":51,"interpolation":"LINEAR"},{"input":52,"output":53,"interpolation":"LINEAR"},{"input":54,"output":55,"interpolation":"LINEAR"},{"input":56,"output":57,"interpolation":"LINEAR"},{"input":58,"output":59,"interpolation":"LINEAR"},{"input":60,"output":61,"interpolation":"LINEAR"},{"input":62,"output":63,"interpolation":"LINEAR"},{"input":64,"output":65,"interpolation":"LINEAR"},{"input":66,"output":67,"interpolation":"LINEAR"},{"input":68,"output":69,"interpolation":"LINEAR"},{"input":70,"output":71,"interpolation":"LINEAR"},{"input":72,"output":73,"interpolation":"LINEAR"},{"input":74,"output":75,"interpolation":"LINEAR"},{"input":76,"output":77,"interpolation":"LINEAR"},{"input":78,"output":79,"interpolation":"LINEAR"},{"input":80,"output":81,"interpolation":"LINEAR"},{"input":82,"output":83,"interpolation":"LINEAR"},{"input":84,"output":85,"interpolation":"LINEAR"},{"input":86,"output":87,"interpolation":"LINEAR"},{"input":88,"output":89,"interpolation":"LINEAR"},{"input":90,"output":91,"interpolation":"LINEAR"},{"input":92,"output":93,"interpolation":"LINEAR"},{"input":94,"output":95,"interpolation":"LINEAR"},{"input":96,"output":97,"interpolation":"LINEAR"},{"input":98,"output":99,"interpolation":"LINEAR"},{"input":100,"output":101,"interpolation":"LINEAR"},{"input":102,"output":103,"interpolation":"LINEAR"},{"input":104,"output":105,"interpolation":"LINEAR"},{"input":106,"output":107,"interpolation":"LINEAR"},{"input":108,"output":109,"interpolation":"LINEAR"},{"input":110,"output":111,"interpolation":"LINEAR"},{"input":112,"output":113,"interpolation":"LINEAR"},{"input":114,"output":115,"interpolation":"LINEAR"},{"input":116,"output":117,"interpolation":"LINEAR"},{"input":118,"output":119,"interpolation":"LINEAR"},{"input":120,"output":121,"interpolation":"LINEAR"},{"input":122,"output":123,"interpolation":"LINEAR"},{"input":124,"output":125,"interpolation":"LINEAR"},{"input":126,"output":127,"interpolation":"LINEAR"},{"input":128,"output":129,"interpolation":"LINEAR"},{"input":130,"output":131,"interpolation":"LINEAR"},{"input":132,"output":133,"interpolation":"LINEAR"},{"input":134,"output":135,"interpolation":"LINEAR"},{"input":136,"output":137,"interpolation":"LINEAR"},{"input":138,"output":139,"interpolation":"LINEAR"},{"input":140,"output":141,"interpolation":"LINEAR"},{"input":142,"output":143,"interpolation":"LINEAR"},{"input":144,"output":145,"interpolation":"LINEAR"},{"input":146,"output":147,"interpolation":"LINEAR"},{"input":148,"output":149,"interpolation":"LINEAR"},{"input":150,"output":151,"interpolation":"LINEAR"},{"input":152,"output":153,"interpolation":"LINEAR"},{"input":154,"output":155,"interpolation":"LINEAR"},{"input":156,"output":157,"interpolation":"LINEAR"},{"input":158,"output":159,"interpolation":"LINEAR"},{"input":160,"output":161,"interpolation":"LINEAR"}]},{"name":"c_tire_key","channels":[{"sampler":0,"target":{"node":140,"path":"rotation"}}],"samplers":[{"input":162,"output":163,"interpolation":"LINEAR"}]},{"name":"c_wheel","channels":[{"sampler":0,"target":{"node":135,"path":"translation"}},{"sampler":1,"target":{"node":135,"path":"rotation"}},{"sampler":2,"target":{"node":135,"path":"scale"}},{"sampler":3,"target":{"node":131,"path":"translation"}},{"sampler":4,"target":{"node":131,"path":"rotation"}},{"sampler":5,"target":{"node":131,"path":"scale"}},{"sampler":6,"target":{"node":132,"path":"translation"}},{"sampler":7,"target":{"node":132,"path":"rotation"}},{"sampler":8,"target":{"node":132,"path":"scale"}},{"sampler":9,"target":{"node":133,"path":"translation"}},{"sampler":10,"target":{"node":133,"path":"rotation"}},{"sampler":11,"target":{"node":133,"path":"scale"}},{"sampler":12,"target":{"node":134,"path":"translation"}},{"sampler":13,"target":{"node":134,"path":"rotation"}},{"sampler":14,"target":{"node":134,"path":"scale"}}],"samplers":[{"input":164,"output":165,"interpolation":"LINEAR"},{"input":166,"output":167,"interpolation":"LINEAR"},{"input":168,"output":169,"interpolation":"LINEAR"},{"input":170,"output":171,"interpolation":"LINEAR"},{"input":172,"output":173,"interpolation":"LINEAR"},{"input":174,"output":175,"interpolation":"LINEAR"},{"input":176,"output":177,"interpolation":"LINEAR"},{"input":178,"output":179,"interpolation":"LINEAR"},{"input":180,"output":181,"interpolation":"LINEAR"},{"input":182,"output":183,"interpolation":"LINEAR"},{"input":184,"output":185,"interpolation":"LINEAR"},{"input":186,"output":187,"interpolation":"LINEAR"},{"input":188,"output":189,"interpolation":"LINEAR"},{"input":190,"output":191,"interpolation":"LINEAR"},{"input":192,"output":193,"interpolation":"LINEAR"}]},{"name":"elevator_percent_key","channels":[{"sampler":0,"target":{"node":16,"path":"translation"}},{"sampler":1,"target":{"node":16,"path":"rotation"}},{"sampler":2,"target":{"node":16,"path":"scale"}},{"sampler":3,"target":{"node":163,"path":"translation"}},{"sampler":4,"target":{"node":163,"path":"rotation"}},{"sampler":5,"target":{"node":163,"path":"scale"}}],"samplers":[{"input":194,"output":195,"interpolation":"LINEAR"},{"input":196,"output":197,"interpolation":"LINEAR"},{"input":198,"output":199,"interpolation":"LINEAR"},{"input":200,"output":201,"interpolation":"LINEAR"},{"input":202,"output":203,"interpolation":"LINEAR"},{"input":204,"output":205,"interpolation":"LINEAR"}]},{"name":"l_aileron_percent_key","channels":[{"sampler":0,"target":{"node":29,"path":"translation"}},{"sampler":1,"target":{"node":29,"path":"rotation"}},{"sampler":2,"target":{"node":29,"path":"scale"}},{"sampler":3,"target":{"node":28,"path":"translation"}},{"sampler":4,"target":{"node":28,"path":"rotation"}},{"sampler":5,"target":{"node":28,"path":"scale"}}],"samplers":[{"input":206,"output":207,"interpolation":"LINEAR"},{"input":208,"output":209,"interpolation":"LINEAR"},{"input":210,"output":211,"interpolation":"LINEAR"},{"input":212,"output":213,"interpolation":"LINEAR"},{"input":214,"output":215,"interpolation":"LINEAR"},{"input":216,"output":217,"interpolation":"LINEAR"}]},{"name":"l_flap_percent_key","channels":[{"sampler":0,"target":{"node":45,"path":"translation"}},{"sampler":1,"target":{"node":45,"path":"rotation"}},{"sampler":2,"target":{"node":33,"path":"translation"}},{"sampler":3,"target":{"node":33,"path":"rotation"}},{"sampler":4,"target":{"node":34,"path":"rotation"}},{"sampler":5,"target":{"node":46,"path":"translation"}},{"sampler":6,"target":{"node":46,"path":"rotation"}},{"sampler":7,"target":{"node":46,"path":"scale"}},{"sampler":8,"target":{"node":59,"path":"translation"}},{"sampler":9,"target":{"node":59,"path":"rotation"}},{"sampler":10,"target":{"node":59,"path":"scale"}},{"sampler":11,"target":{"node":60,"path":"rotation"}}],"samplers":[{"input":218,"output":219,"interpolation":"LINEAR"},{"input":220,"output":221,"interpolation":"LINEAR"},{"input":222,"output":223,"interpolation":"LINEAR"},{"input":224,"output":225,"interpolation":"LINEAR"},{"input":226,"output":227,"interpolation":"LINEAR"},{"input":228,"output":229,"interpolation":"LINEAR"},{"input":230,"output":231,"interpolation":"LINEAR"},{"input":232,"output":233,"interpolation":"LINEAR"},{"input":234,"output":235,"interpolation":"LINEAR"},{"input":236,"output":237,"interpolation":"LINEAR"},{"input":238,"output":239,"interpolation":"LINEAR"},{"input":240,"output":241,"interpolation":"LINEAR"}]},{"name":"l_spoiler_key","channels":[{"sampler":0,"target":{"node":39,"path":"translation"}},{"sampler":1,"target":{"node":39,"path":"rotation"}},{"sampler":2,"target":{"node":39,"path":"scale"}},{"sampler":3,"target":{"node":40,"path":"translation"}},{"sampler":4,"target":{"node":40,"path":"rotation"}},{"sampler":5,"target":{"node":40,"path":"scale"}},{"sampler":6,"target":{"node":41,"path":"translation"}},{"sampler":7,"target":{"node":41,"path":"rotation"}},{"sampler":8,"target":{"node":41,"path":"scale"}},{"sampler":9,"target":{"node":37,"path":"translation"}},{"sampler":10,"target":{"node":37,"path":"rotation"}},{"sampler":11,"target":{"node":37,"path":"scale"}},{"sampler":12,"target":{"node":31,"path":"translation"}},{"sampler":13,"target":{"node":31,"path":"rotation"}},{"sampler":14,"target":{"node":31,"path":"scale"}},{"sampler":15,"target":{"node":35,"path":"translation"}},{"sampler":16,"target":{"node":35,"path":"rotation"}},{"sampler":17,"target":{"node":35,"path":"scale"}},{"sampler":18,"target":{"node":36,"path":"translation"}},{"sampler":19,"target":{"node":36,"path":"rotation"}},{"sampler":20,"target":{"node":36,"path":"scale"}},{"sampler":21,"target":{"node":32,"path":"translation"}},{"sampler":22,"target":{"node":32,"path":"rotation"}},{"sampler":23,"target":{"node":32,"path":"scale"}},{"sampler":24,"target":{"node":53,"path":"translation"}},{"sampler":25,"target":{"node":53,"path":"rotation"}},{"sampler":26,"target":{"node":53,"path":"scale"}},{"sampler":27,"target":{"node":54,"path":"translation"}},{"sampler":28,"target":{"node":54,"path":"rotation"}},{"sampler":29,"target":{"node":54,"path":"scale"}},{"sampler":30,"target":{"node":43,"path":"translation"}},{"sampler":31,"target":{"node":43,"path":"rotation"}},{"sampler":32,"target":{"node":43,"path":"scale"}},{"sampler":33,"target":{"node":122,"path":"translation"}},{"sampler":34,"target":{"node":122,"path":"rotation"}},{"sampler":35,"target":{"node":122,"path":"scale"}},{"sampler":36,"target":{"node":123,"path":"translation"}},{"sampler":37,"target":{"node":123,"path":"rotation"}},{"sampler":38,"target":{"node":123,"path":"scale"}},{"sampler":39,"target":{"node":121,"path":"translation"}},{"sampler":40,"target":{"node":121,"path":"rotation"}},{"sampler":41,"target":{"node":121,"path":"scale"}},{"sampler":42,"target":{"node":119,"path":"translation"}},{"sampler":43,"target":{"node":119,"path":"rotation"}},{"sampler":44,"target":{"node":119,"path":"scale"}},{"sampler":45,"target":{"node":124,"path":"translation"}},{"sampler":46,"target":{"node":124,"path":"rotation"}},{"sampler":47,"target":{"node":124,"path":"scale"}},{"sampler":48,"target":{"node":125,"path":"translation"}},{"sampler":49,"target":{"node":125,"path":"rotation"}},{"sampler":50,"target":{"node":125,"path":"scale"}},{"sampler":51,"target":{"node":120,"path":"translation"}},{"sampler":52,"target":{"node":120,"path":"rotation"}},{"sampler":53,"target":{"node":120,"path":"scale"}},{"sampler":54,"target":{"node":102,"path":"translation"}},{"sampler":55,"target":{"node":102,"path":"rotation"}},{"sampler":56,"target":{"node":102,"path":"scale"}},{"sampler":57,"target":{"node":103,"path":"translation"}},{"sampler":58,"target":{"node":103,"path":"rotation"}},{"sampler":59,"target":{"node":103,"path":"scale"}}],"samplers":[{"input":242,"output":243,"interpolation":"LINEAR"},{"input":244,"output":245,"interpolation":"LINEAR"},{"input":246,"output":247,"interpolation":"LINEAR"},{"input":248,"output":249,"interpolation":"LINEAR"},{"input":250,"output":251,"interpolation":"LINEAR"},{"input":252,"output":253,"interpolation":"LINEAR"},{"input":254,"output":255,"interpolation":"LINEAR"},{"input":256,"output":257,"interpolation":"LINEAR"},{"input":258,"output":259,"interpolation":"LINEAR"},{"input":260,"output":261,"interpolation":"LINEAR"},{"input":262,"output":263,"interpolation":"LINEAR"},{"input":264,"output":265,"interpolation":"LINEAR"},{"input":266,"output":267,"interpolation":"LINEAR"},{"input":268,"output":269,"interpolation":"LINEAR"},{"input":270,"output":271,"interpolation":"LINEAR"},{"input":272,"output":273,"interpolation":"LINEAR"},{"input":274,"output":275,"interpolation":"LINEAR"},{"input":276,"output":277,"interpolation":"LINEAR"},{"input":278,"output":279,"interpolation":"LINEAR"},{"input":280,"output":281,"interpolation":"LINEAR"},{"input":282,"output":283,"interpolation":"LINEAR"},{"input":284,"output":285,"interpolation":"LINEAR"},{"input":286,"output":287,"interpolation":"LINEAR"},{"input":288,"output":289,"interpolation":"LINEAR"},{"input":290,"output":291,"interpolation":"LINEAR"},{"input":292,"output":293,"interpolation":"LINEAR"},{"input":294,"output":295,"interpolation":"LINEAR"},{"input":296,"output":297,"interpolation":"LINEAR"},{"input":298,"output":299,"interpolation":"LINEAR"},{"input":300,"output":301,"interpolation":"LINEAR"},{"input":302,"output":303,"interpolation":"LINEAR"},{"input":304,"output":305,"interpolation":"LINEAR"},{"input":306,"output":307,"interpolation":"LINEAR"},{"input":308,"output":309,"interpolation":"LINEAR"},{"input":310,"output":311,"interpolation":"LINEAR"},{"input":312,"output":313,"interpolation":"LINEAR"},{"input":314,"output":315,"interpolation":"LINEAR"},{"input":316,"output":317,"interpolation":"LINEAR"},{"input":318,"output":319,"interpolation":"LINEAR"},{"input":320,"output":321,"interpolation":"LINEAR"},{"input":322,"output":323,"interpolation":"LINEAR"},{"input":324,"output":325,"interpolation":"LINEAR"},{"input":326,"output":327,"interpolation":"LINEAR"},{"input":328,"output":329,"interpolation":"LINEAR"},{"input":330,"output":331,"interpolation":"LINEAR"},{"input":332,"output":333,"interpolation":"LINEAR"},{"input":334,"output":335,"interpolation":"LINEAR"},{"input":336,"output":337,"interpolation":"LINEAR"},{"input":338,"output":339,"interpolation":"LINEAR"},{"input":340,"output":341,"interpolation":"LINEAR"},{"input":342,"output":343,"interpolation":"LINEAR"},{"input":344,"output":345,"interpolation":"LINEAR"},{"input":346,"output":347,"interpolation":"LINEAR"},{"input":348,"output":349,"interpolation":"LINEAR"},{"input":350,"output":351,"interpolation":"LINEAR"},{"input":352,"output":353,"interpolation":"LINEAR"},{"input":354,"output":355,"interpolation":"LINEAR"},{"input":356,"output":357,"interpolation":"LINEAR"},{"input":358,"output":359,"interpolation":"LINEAR"},{"input":360,"output":361,"interpolation":"LINEAR"}]},{"name":"l_tire_key","channels":[{"sampler":0,"target":{"node":92,"path":"translation"}},{"sampler":1,"target":{"node":92,"path":"rotation"}},{"sampler":2,"target":{"node":92,"path":"scale"}},{"sampler":3,"target":{"node":95,"path":"translation"}},{"sampler":4,"target":{"node":95,"path":"rotation"}},{"sampler":5,"target":{"node":95,"path":"scale"}}],"samplers":[{"input":362,"output":363,"interpolation":"LINEAR"},{"input":364,"output":365,"interpolation":"LINEAR"},{"input":366,"output":367,"interpolation":"LINEAR"},{"input":368,"output":369,"interpolation":"LINEAR"},{"input":370,"output":371,"interpolation":"LINEAR"},{"input":372,"output":373,"interpolation":"LINEAR"}]},{"name":"rudder_percent_key","channels":[{"sampler":0,"target":{"node":1,"path":"translation"}},{"sampler":1,"target":{"node":1,"path":"rotation"}},{"sampler":2,"target":{"node":1,"path":"scale"}}],"samplers":[{"input":374,"output":375,"interpolation":"LINEAR"},{"input":376,"output":377,"interpolation":"LINEAR"},{"input":378,"output":379,"interpolation":"LINEAR"}]},{"name":"thrust_rev_1","channels":[{"sampler":0,"target":{"node":115,"path":"translation"}},{"sampler":1,"target":{"node":115,"path":"rotation"}},{"sampler":2,"target":{"node":115,"path":"scale"}}],"samplers":[{"input":380,"output":381,"interpolation":"LINEAR"},{"input":382,"output":383,"interpolation":"LINEAR"},{"input":384,"output":385,"interpolation":"LINEAR"}]},{"name":"trimtab_elevator_key","channels":[{"sampler":0,"target":{"node":15,"path":"translation"}},{"sampler":1,"target":{"node":15,"path":"rotation"}},{"sampler":2,"target":{"node":15,"path":"scale"}},{"sampler":3,"target":{"node":162,"path":"translation"}},{"sampler":4,"target":{"node":162,"path":"rotation"}},{"sampler":5,"target":{"node":162,"path":"scale"}}],"samplers":[{"input":386,"output":387,"interpolation":"LINEAR"},{"input":388,"output":389,"interpolation":"LINEAR"},{"input":390,"output":391,"interpolation":"LINEAR"},{"input":392,"output":393,"interpolation":"LINEAR"},{"input":394,"output":395,"interpolation":"LINEAR"},{"input":396,"output":397,"interpolation":"LINEAR"}]},{"name":"l_gear","channels":[{"sampler":0,"target":{"node":62,"path":"translation"}},{"sampler":1,"target":{"node":62,"path":"rotation"}},{"sampler":2,"target":{"node":62,"path":"scale"}},{"sampler":3,"target":{"node":63,"path":"translation"}},{"sampler":4,"target":{"node":63,"path":"rotation"}},{"sampler":5,"target":{"node":63,"path":"scale"}},{"sampler":6,"target":{"node":64,"path":"translation"}},{"sampler":7,"target":{"node":64,"path":"rotation"}},{"sampler":8,"target":{"node":64,"path":"scale"}},{"sampler":9,"target":{"node":65,"path":"translation"}},{"sampler":10,"target":{"node":65,"path":"rotation"}},{"sampler":11,"target":{"node":65,"path":"scale"}},{"sampler":12,"target":{"node":66,"path":"translation"}},{"sampler":13,"target":{"node":66,"path":"rotation"}},{"sampler":14,"target":{"node":66,"path":"scale"}},{"sampler":15,"target":{"node":67,"path":"translation"}},{"sampler":16,"target":{"node":67,"path":"rotation"}},{"sampler":17,"target":{"node":67,"path":"scale"}},{"sampler":18,"target":{"node":68,"path":"translation"}},{"sampler":19,"target":{"node":68,"path":"rotation"}},{"sampler":20,"target":{"node":68,"path":"scale"}},{"sampler":21,"target":{"node":69,"path":"translation"}},{"sampler":22,"target":{"node":69,"path":"rotation"}},{"sampler":23,"target":{"node":69,"path":"scale"}},{"sampler":24,"target":{"node":70,"path":"translation"}},{"sampler":25,"target":{"node":70,"path":"rotation"}},{"sampler":26,"target":{"node":70,"path":"scale"}},{"sampler":27,"target":{"node":71,"path":"translation"}},{"sampler":28,"target":{"node":71,"path":"rotation"}},{"sampler":29,"target":{"node":71,"path":"scale"}},{"sampler":30,"target":{"node":72,"path":"translation"}},{"sampler":31,"target":{"node":72,"path":"rotation"}},{"sampler":32,"target":{"node":72,"path":"scale"}},{"sampler":33,"target":{"node":73,"path":"translation"}},{"sampler":34,"target":{"node":73,"path":"rotation"}},{"sampler":35,"target":{"node":73,"path":"scale"}},{"sampler":36,"target":{"node":74,"path":"translation"}},{"sampler":37,"target":{"node":74,"path":"rotation"}},{"sampler":38,"target":{"node":74,"path":"scale"}},{"sampler":39,"target":{"node":75,"path":"translation"}},{"sampler":40,"target":{"node":75,"path":"rotation"}},{"sampler":41,"target":{"node":75,"path":"scale"}},{"sampler":42,"target":{"node":76,"path":"translation"}},{"sampler":43,"target":{"node":76,"path":"rotation"}},{"sampler":44,"target":{"node":76,"path":"scale"}},{"sampler":45,"target":{"node":77,"path":"translation"}},{"sampler":46,"target":{"node":77,"path":"rotation"}},{"sampler":47,"target":{"node":77,"path":"scale"}},{"sampler":48,"target":{"node":78,"path":"translation"}},{"sampler":49,"target":{"node":78,"path":"rotation"}},{"sampler":50,"target":{"node":78,"path":"scale"}},{"sampler":51,"target":{"node":79,"path":"translation"}},{"sampler":52,"target":{"node":79,"path":"rotation"}},{"sampler":53,"target":{"node":79,"path":"scale"}},{"sampler":54,"target":{"node":80,"path":"translation"}},{"sampler":55,"target":{"node":80,"path":"rotation"}},{"sampler":56,"target":{"node":80,"path":"scale"}},{"sampler":57,"target":{"node":83,"path":"translation"}},{"sampler":58,"target":{"node":83,"path":"rotation"}},{"sampler":59,"target":{"node":83,"path":"scale"}},{"sampler":60,"target":{"node":84,"path":"translation"}},{"sampler":61,"target":{"node":84,"path":"rotation"}},{"sampler":62,"target":{"node":84,"path":"scale"}},{"sampler":63,"target":{"node":86,"path":"translation"}},{"sampler":64,"target":{"node":86,"path":"rotation"}},{"sampler":65,"target":{"node":86,"path":"scale"}},{"sampler":66,"target":{"node":87,"path":"translation"}},{"sampler":67,"target":{"node":87,"path":"rotation"}},{"sampler":68,"target":{"node":87,"path":"scale"}},{"sampler":69,"target":{"node":88,"path":"translation"}},{"sampler":70,"target":{"node":88,"path":"rotation"}},{"sampler":71,"target":{"node":88,"path":"scale"}},{"sampler":72,"target":{"node":91,"path":"translation"}},{"sampler":73,"target":{"node":91,"path":"rotation"}},{"sampler":74,"target":{"node":91,"path":"scale"}},{"sampler":75,"target":{"node":99,"path":"translation"}},{"sampler":76,"target":{"node":99,"path":"rotation"}},{"sampler":77,"target":{"node":99,"path":"scale"}},{"sampler":78,"target":{"node":100,"path":"translation"}},{"sampler":79,"target":{"node":100,"path":"rotation"}},{"sampler":80,"target":{"node":100,"path":"scale"}},{"sampler":81,"target":{"node":108,"path":"translation"}},{"sampler":82,"target":{"node":108,"path":"rotation"}},{"sampler":83,"target":{"node":108,"path":"scale"}},{"sampler":84,"target":{"node":107,"path":"translation"}},{"sampler":85,"target":{"node":107,"path":"rotation"}},{"sampler":86,"target":{"node":107,"path":"scale"}},{"sampler":87,"target":{"node":106,"path":"translation"}},{"sampler":88,"target":{"node":106,"path":"rotation"}},{"sampler":89,"target":{"node":106,"path":"scale"}},{"sampler":90,"target":{"node":104,"path":"translation"}},{"sampler":91,"target":{"node":104,"path":"rotation"}},{"sampler":92,"target":{"node":104,"path":"scale"}},{"sampler":93,"target":{"node":105,"path":"translation"}},{"sampler":94,"target":{"node":105,"path":"rotation"}},{"sampler":95,"target":{"node":105,"path":"scale"}},{"sampler":96,"target":{"node":128,"path":"translation"}},{"sampler":97,"target":{"node":128,"path":"rotation"}},{"sampler":98,"target":{"node":128,"path":"scale"}},{"sampler":99,"target":{"node":129,"path":"translation"}},{"sampler":100,"target":{"node":129,"path":"rotation"}},{"sampler":101,"target":{"node":129,"path":"scale"}},{"sampler":102,"target":{"node":127,"path":"translation"}},{"sampler":103,"target":{"node":127,"path":"rotation"}},{"sampler":104,"target":{"node":127,"path":"scale"}}],"samplers":[{"input":398,"output":399,"interpolation":"LINEAR"},{"input":400,"output":401,"interpolation":"LINEAR"},{"input":402,"output":403,"interpolation":"LINEAR"},{"input":404,"output":405,"interpolation":"LINEAR"},{"input":406,"output":407,"interpolation":"LINEAR"},{"input":408,"output":409,"interpolation":"LINEAR"},{"input":410,"output":411,"interpolation":"LINEAR"},{"input":412,"output":413,"interpolation":"LINEAR"},{"input":414,"output":415,"interpolation":"LINEAR"},{"input":416,"output":417,"interpolation":"LINEAR"},{"input":418,"output":419,"interpolation":"LINEAR"},{"input":420,"output":421,"interpolation":"LINEAR"},{"input":422,"output":423,"interpolation":"LINEAR"},{"input":424,"output":425,"interpolation":"LINEAR"},{"input":426,"output":427,"interpolation":"LINEAR"},{"input":428,"output":429,"interpolation":"LINEAR"},{"input":430,"output":431,"interpolation":"LINEAR"},{"input":432,"output":433,"interpolation":"LINEAR"},{"input":434,"output":435,"interpolation":"LINEAR"},{"input":436,"output":437,"interpolation":"LINEAR"},{"input":438,"output":439,"interpolation":"LINEAR"},{"input":440,"output":441,"interpolation":"LINEAR"},{"input":442,"output":443,"interpolation":"LINEAR"},{"input":444,"output":445,"interpolation":"LINEAR"},{"input":446,"output":447,"interpolation":"LINEAR"},{"input":448,"output":449,"interpolation":"LINEAR"},{"input":450,"output":451,"interpolation":"LINEAR"},{"input":452,"output":453,"interpolation":"LINEAR"},{"input":454,"output":455,"interpolation":"LINEAR"},{"input":456,"output":457,"interpolation":"LINEAR"},{"input":458,"output":459,"interpolation":"LINEAR"},{"input":460,"output":461,"interpolation":"LINEAR"},{"input":462,"output":463,"interpolation":"LINEAR"},{"input":464,"output":465,"interpolation":"LINEAR"},{"input":466,"output":467,"interpolation":"LINEAR"},{"input":468,"output":469,"interpolation":"LINEAR"},{"input":470,"output":471,"interpolation":"LINEAR"},{"input":472,"output":473,"interpolation":"LINEAR"},{"input":474,"output":475,"interpolation":"LINEAR"},{"input":476,"output":477,"interpolation":"LINEAR"},{"input":478,"output":479,"interpolation":"LINEAR"},{"input":480,"output":481,"interpolation":"LINEAR"},{"input":482,"output":483,"interpolation":"LINEAR"},{"input":484,"output":485,"interpolation":"LINEAR"},{"input":486,"output":487,"interpolation":"LINEAR"},{"input":488,"output":489,"interpolation":"LINEAR"},{"input":490,"output":491,"interpolation":"LINEAR"},{"input":492,"output":493,"interpolation":"LINEAR"},{"input":494,"output":495,"interpolation":"LINEAR"},{"input":496,"output":497,"interpolation":"LINEAR"},{"input":498,"output":499,"interpolation":"LINEAR"},{"input":500,"output":501,"interpolation":"LINEAR"},{"input":502,"output":503,"interpolation":"LINEAR"},{"input":504,"output":505,"interpolation":"LINEAR"},{"input":506,"output":507,"interpolation":"LINEAR"},{"input":508,"output":509,"interpolation":"LINEAR"},{"input":510,"output":511,"interpolation":"LINEAR"},{"input":512,"output":513,"interpolation":"LINEAR"},{"input":514,"output":515,"interpolation":"LINEAR"},{"input":516,"output":517,"interpolation":"LINEAR"},{"input":518,"output":519,"interpolation":"LINEAR"},{"input":520,"output":521,"interpolation":"LINEAR"},{"input":522,"output":523,"interpolation":"LINEAR"},{"input":524,"output":525,"interpolation":"LINEAR"},{"input":526,"output":527,"interpolation":"LINEAR"},{"input":528,"output":529,"interpolation":"LINEAR"},{"input":530,"output":531,"interpolation":"LINEAR"},{"input":532,"output":533,"interpolation":"LINEAR"},{"input":534,"output":535,"interpolation":"LINEAR"},{"input":536,"output":537,"interpolation":"LINEAR"},{"input":538,"output":539,"interpolation":"LINEAR"},{"input":540,"output":541,"interpolation":"LINEAR"},{"input":542,"output":543,"interpolation":"LINEAR"},{"input":544,"output":545,"interpolation":"LINEAR"},{"input":546,"output":547,"interpolation":"LINEAR"},{"input":548,"output":549,"interpolation":"LINEAR"},{"input":550,"output":551,"interpolation":"LINEAR"},{"input":552,"output":553,"interpolation":"LINEAR"},{"input":554,"output":555,"interpolation":"LINEAR"},{"input":556,"output":557,"interpolation":"LINEAR"},{"input":558,"output":559,"interpolation":"LINEAR"},{"input":560,"output":561,"interpolation":"LINEAR"},{"input":562,"output":563,"interpolation":"LINEAR"},{"input":564,"output":565,"interpolation":"LINEAR"},{"input":566,"output":567,"interpolation":"LINEAR"},{"input":568,"output":569,"interpolation":"LINEAR"},{"input":570,"output":571,"interpolation":"LINEAR"},{"input":572,"output":573,"interpolation":"LINEAR"},{"input":574,"output":575,"interpolation":"LINEAR"},{"input":576,"output":577,"interpolation":"LINEAR"},{"input":578,"output":579,"interpolation":"LINEAR"},{"input":580,"output":581,"interpolation":"LINEAR"},{"input":582,"output":583,"interpolation":"LINEAR"},{"input":584,"output":585,"interpolation":"LINEAR"},{"input":586,"output":587,"interpolation":"LINEAR"},{"input":588,"output":589,"interpolation":"LINEAR"},{"input":590,"output":591,"interpolation":"LINEAR"},{"input":592,"output":593,"interpolation":"LINEAR"},{"input":594,"output":595,"interpolation":"LINEAR"},{"input":596,"output":597,"interpolation":"LINEAR"},{"input":598,"output":599,"interpolation":"LINEAR"},{"input":600,"output":601,"interpolation":"LINEAR"},{"input":602,"output":603,"interpolation":"LINEAR"},{"input":604,"output":605,"interpolation":"LINEAR"},{"input":606,"output":607,"interpolation":"LINEAR"}]},{"name":"N1_1_Anim","channels":[{"sampler":0,"target":{"node":111,"path":"translation"}},{"sampler":1,"target":{"node":111,"path":"rotation"}},{"sampler":2,"target":{"node":111,"path":"scale"}}],"samplers":[{"input":608,"output":609,"interpolation":"LINEAR"},{"input":610,"output":611,"interpolation":"LINEAR"},{"input":612,"output":613,"interpolation":"LINEAR"}]},{"name":"r_aileron_percent_key","channels":[{"sampler":0,"target":{"node":214,"path":"translation"}},{"sampler":1,"target":{"node":214,"path":"rotation"}},{"sampler":2,"target":{"node":214,"path":"scale"}},{"sampler":3,"target":{"node":213,"path":"translation"}},{"sampler":4,"target":{"node":213,"path":"rotation"}},{"sampler":5,"target":{"node":213,"path":"scale"}}],"samplers":[{"input":614,"output":615,"interpolation":"LINEAR"},{"input":616,"output":617,"interpolation":"LINEAR"},{"input":618,"output":619,"interpolation":"LINEAR"},{"input":620,"output":621,"interpolation":"LINEAR"},{"input":622,"output":623,"interpolation":"LINEAR"},{"input":624,"output":625,"interpolation":"LINEAR"}]},{"name":"r_flap_percent_key","channels":[{"sampler":0,"target":{"node":180,"path":"translation"}},{"sampler":1,"target":{"node":180,"path":"rotation"}},{"sampler":2,"target":{"node":180,"path":"scale"}},{"sampler":3,"target":{"node":195,"path":"translation"}},{"sampler":4,"target":{"node":195,"path":"rotation"}},{"sampler":5,"target":{"node":204,"path":"translation"}},{"sampler":6,"target":{"node":204,"path":"rotation"}},{"sampler":7,"target":{"node":181,"path":"rotation"}},{"sampler":8,"target":{"node":196,"path":"translation"}},{"sampler":9,"target":{"node":196,"path":"rotation"}},{"sampler":10,"target":{"node":196,"path":"scale"}},{"sampler":11,"target":{"node":205,"path":"rotation"}}],"samplers":[{"input":626,"output":627,"interpolation":"LINEAR"},{"input":628,"output":629,"interpolation":"LINEAR"},{"input":630,"output":631,"interpolation":"LINEAR"},{"input":632,"output":633,"interpolation":"LINEAR"},{"input":634,"output":635,"interpolation":"LINEAR"},{"input":636,"output":637,"interpolation":"LINEAR"},{"input":638,"output":639,"interpolation":"LINEAR"},{"input":640,"output":641,"interpolation":"LINEAR"},{"input":642,"output":643,"interpolation":"LINEAR"},{"input":644,"output":645,"interpolation":"LINEAR"},{"input":646,"output":647,"interpolation":"LINEAR"},{"input":648,"output":649,"interpolation":"LINEAR"}]},{"name":"r_gear","channels":[{"sampler":0,"target":{"node":233,"path":"translation"}},{"sampler":1,"target":{"node":233,"path":"rotation"}},{"sampler":2,"target":{"node":233,"path":"scale"}},{"sampler":3,"target":{"node":234,"path":"translation"}},{"sampler":4,"target":{"node":234,"path":"rotation"}},{"sampler":5,"target":{"node":234,"path":"scale"}},{"sampler":6,"target":{"node":237,"path":"translation"}},{"sampler":7,"target":{"node":237,"path":"rotation"}},{"sampler":8,"target":{"node":237,"path":"scale"}},{"sampler":9,"target":{"node":239,"path":"translation"}},{"sampler":10,"target":{"node":239,"path":"rotation"}},{"sampler":11,"target":{"node":239,"path":"scale"}},{"sampler":12,"target":{"node":241,"path":"translation"}},{"sampler":13,"target":{"node":241,"path":"rotation"}},{"sampler":14,"target":{"node":241,"path":"scale"}},{"sampler":15,"target":{"node":243,"path":"translation"}},{"sampler":16,"target":{"node":243,"path":"rotation"}},{"sampler":17,"target":{"node":243,"path":"scale"}},{"sampler":18,"target":{"node":244,"path":"translation"}},{"sampler":19,"target":{"node":244,"path":"rotation"}},{"sampler":20,"target":{"node":244,"path":"scale"}},{"sampler":21,"target":{"node":254,"path":"translation"}},{"sampler":22,"target":{"node":254,"path":"rotation"}},{"sampler":23,"target":{"node":254,"path":"scale"}},{"sampler":24,"target":{"node":255,"path":"translation"}},{"sampler":25,"target":{"node":255,"path":"rotation"}},{"sampler":26,"target":{"node":255,"path":"scale"}},{"sampler":27,"target":{"node":256,"path":"translation"}},{"sampler":28,"target":{"node":256,"path":"rotation"}},{"sampler":29,"target":{"node":256,"path":"scale"}},{"sampler":30,"target":{"node":257,"path":"translation"}},{"sampler":31,"target":{"node":257,"path":"rotation"}},{"sampler":32,"target":{"node":257,"path":"scale"}},{"sampler":33,"target":{"node":258,"path":"translation"}},{"sampler":34,"target":{"node":258,"path":"rotation"}},{"sampler":35,"target":{"node":258,"path":"scale"}},{"sampler":36,"target":{"node":259,"path":"translation"}},{"sampler":37,"target":{"node":259,"path":"rotation"}},{"sampler":38,"target":{"node":259,"path":"scale"}},{"sampler":39,"target":{"node":260,"path":"translation"}},{"sampler":40,"target":{"node":260,"path":"rotation"}},{"sampler":41,"target":{"node":260,"path":"scale"}},{"sampler":42,"target":{"node":261,"path":"translation"}},{"sampler":43,"target":{"node":261,"path":"rotation"}},{"sampler":44,"target":{"node":261,"path":"scale"}},{"sampler":45,"target":{"node":262,"path":"translation"}},{"sampler":46,"target":{"node":262,"path":"rotation"}},{"sampler":47,"target":{"node":262,"path":"scale"}},{"sampler":48,"target":{"node":263,"path":"translation"}},{"sampler":49,"target":{"node":263,"path":"rotation"}},{"sampler":50,"target":{"node":263,"path":"scale"}},{"sampler":51,"target":{"node":264,"path":"translation"}},{"sampler":52,"target":{"node":264,"path":"rotation"}},{"sampler":53,"target":{"node":264,"path":"scale"}},{"sampler":54,"target":{"node":265,"path":"translation"}},{"sampler":55,"target":{"node":265,"path":"rotation"}},{"sampler":56,"target":{"node":265,"path":"scale"}},{"sampler":57,"target":{"node":266,"path":"translation"}},{"sampler":58,"target":{"node":266,"path":"rotation"}},{"sampler":59,"target":{"node":266,"path":"scale"}},{"sampler":60,"target":{"node":267,"path":"translation"}},{"sampler":61,"target":{"node":267,"path":"rotation"}},{"sampler":62,"target":{"node":267,"path":"scale"}},{"sampler":63,"target":{"node":268,"path":"translation"}},{"sampler":64,"target":{"node":268,"path":"rotation"}},{"sampler":65,"target":{"node":268,"path":"scale"}},{"sampler":66,"target":{"node":269,"path":"translation"}},{"sampler":67,"target":{"node":269,"path":"rotation"}},{"sampler":68,"target":{"node":269,"path":"scale"}},{"sampler":69,"target":{"node":270,"path":"translation"}},{"sampler":70,"target":{"node":270,"path":"rotation"}},{"sampler":71,"target":{"node":270,"path":"scale"}},{"sampler":72,"target":{"node":166,"path":"translation"}},{"sampler":73,"target":{"node":166,"path":"rotation"}},{"sampler":74,"target":{"node":166,"path":"scale"}},{"sampler":75,"target":{"node":183,"path":"translation"}},{"sampler":76,"target":{"node":183,"path":"rotation"}},{"sampler":77,"target":{"node":183,"path":"scale"}},{"sampler":78,"target":{"node":167,"path":"translation"}},{"sampler":79,"target":{"node":167,"path":"rotation"}},{"sampler":80,"target":{"node":167,"path":"scale"}},{"sampler":81,"target":{"node":184,"path":"translation"}},{"sampler":82,"target":{"node":184,"path":"rotation"}},{"sampler":83,"target":{"node":184,"path":"scale"}},{"sampler":84,"target":{"node":231,"path":"translation"}},{"sampler":85,"target":{"node":231,"path":"rotation"}},{"sampler":86,"target":{"node":231,"path":"scale"}},{"sampler":87,"target":{"node":236,"path":"translation"}},{"sampler":88,"target":{"node":236,"path":"rotation"}},{"sampler":89,"target":{"node":236,"path":"scale"}},{"sampler":90,"target":{"node":238,"path":"translation"}},{"sampler":91,"target":{"node":238,"path":"rotation"}},{"sampler":92,"target":{"node":238,"path":"scale"}},{"sampler":93,"target":{"node":274,"path":"translation"}},{"sampler":94,"target":{"node":274,"path":"rotation"}},{"sampler":95,"target":{"node":274,"path":"scale"}},{"sampler":96,"target":{"node":275,"path":"translation"}},{"sampler":97,"target":{"node":275,"path":"rotation"}},{"sampler":98,"target":{"node":275,"path":"scale"}},{"sampler":99,"target":{"node":161,"path":"translation"}},{"sampler":100,"target":{"node":161,"path":"rotation"}},{"sampler":101,"target":{"node":161,"path":"scale"}}],"samplers":[{"input":650,"output":651,"interpolation":"LINEAR"},{"input":652,"output":653,"interpolation":"LINEAR"},{"input":654,"output":655,"interpolation":"LINEAR"},{"input":656,"output":657,"interpolation":"LINEAR"},{"input":658,"output":659,"interpolation":"LINEAR"},{"input":660,"output":661,"interpolation":"LINEAR"},{"input":662,"output":663,"interpolation":"LINEAR"},{"input":664,"output":665,"interpolation":"LINEAR"},{"input":666,"output":667,"interpolation":"LINEAR"},{"input":668,"output":669,"interpolation":"LINEAR"},{"input":670,"output":671,"interpolation":"LINEAR"},{"input":672,"output":673,"interpolation":"LINEAR"},{"input":674,"output":675,"interpolation":"LINEAR"},{"input":676,"output":677,"interpolation":"LINEAR"},{"input":678,"output":679,"interpolation":"LINEAR"},{"input":680,"output":681,"interpolation":"LINEAR"},{"input":682,"output":683,"interpolation":"LINEAR"},{"input":684,"output":685,"interpolation":"LINEAR"},{"input":686,"output":687,"interpolation":"LINEAR"},{"input":688,"output":689,"interpolation":"LINEAR"},{"input":690,"output":691,"interpolation":"LINEAR"},{"input":692,"output":693,"interpolation":"LINEAR"},{"input":694,"output":695,"interpolation":"LINEAR"},{"input":696,"output":697,"interpolation":"LINEAR"},{"input":698,"output":699,"interpolation":"LINEAR"},{"input":700,"output":701,"interpolation":"LINEAR"},{"input":702,"output":703,"interpolation":"LINEAR"},{"input":704,"output":705,"interpolation":"LINEAR"},{"input":706,"output":707,"interpolation":"LINEAR"},{"input":708,"output":709,"interpolation":"LINEAR"},{"input":710,"output":711,"interpolation":"LINEAR"},{"input":712,"output":713,"interpolation":"LINEAR"},{"input":714,"output":715,"interpolation":"LINEAR"},{"input":716,"output":717,"interpolation":"LINEAR"},{"input":718,"output":719,"interpolation":"LINEAR"},{"input":720,"output":721,"interpolation":"LINEAR"},{"input":722,"output":723,"interpolation":"LINEAR"},{"input":724,"output":725,"interpolation":"LINEAR"},{"input":726,"output":727,"interpolation":"LINEAR"},{"input":728,"output":729,"interpolation":"LINEAR"},{"input":730,"output":731,"interpolation":"LINEAR"},{"input":732,"output":733,"interpolation":"LINEAR"},{"input":734,"output":735,"interpolation":"LINEAR"},{"input":736,"output":737,"interpolation":"LINEAR"},{"input":738,"output":739,"interpolation":"LINEAR"},{"input":740,"output":741,"interpolation":"LINEAR"},{"input":742,"output":743,"interpolation":"LINEAR"},{"input":744,"output":745,"interpolation":"LINEAR"},{"input":746,"output":747,"interpolation":"LINEAR"},{"input":748,"output":749,"interpolation":"LINEAR"},{"input":750,"output":751,"interpolation":"LINEAR"},{"input":752,"output":753,"interpolation":"LINEAR"},{"input":754,"output":755,"interpolation":"LINEAR"},{"input":756,"output":757,"interpolation":"LINEAR"},{"input":758,"output":759,"interpolation":"LINEAR"},{"input":760,"output":761,"interpolation":"LINEAR"},{"input":762,"output":763,"interpolation":"LINEAR"},{"input":764,"output":765,"interpolation":"LINEAR"},{"input":766,"output":767,"interpolation":"LINEAR"},{"input":768,"output":769,"interpolation":"LINEAR"},{"input":770,"output":771,"interpolation":"LINEAR"},{"input":772,"output":773,"interpolation":"LINEAR"},{"input":774,"output":775,"interpolation":"LINEAR"},{"input":776,"output":777,"interpolation":"LINEAR"},{"input":778,"output":779,"interpolation":"LINEAR"},{"input":780,"output":781,"interpolation":"LINEAR"},{"input":782,"output":783,"interpolation":"LINEAR"},{"input":784,"output":785,"interpolation":"LINEAR"},{"input":786,"output":787,"interpolation":"LINEAR"},{"input":788,"output":789,"interpolation":"LINEAR"},{"input":790,"output":791,"interpolation":"LINEAR"},{"input":792,"output":793,"interpolation":"LINEAR"},{"input":794,"output":795,"interpolation":"LINEAR"},{"input":796,"output":797,"interpolation":"LINEAR"},{"input":798,"output":799,"interpolation":"LINEAR"},{"input":800,"output":801,"interpolation":"LINEAR"},{"input":802,"output":803,"interpolation":"LINEAR"},{"input":804,"output":805,"interpolation":"LINEAR"},{"input":806,"output":807,"interpolation":"LINEAR"},{"input":808,"output":809,"interpolation":"LINEAR"},{"input":810,"output":811,"interpolation":"LINEAR"},{"input":812,"output":813,"interpolation":"LINEAR"},{"input":814,"output":815,"interpolation":"LINEAR"},{"input":816,"output":817,"interpolation":"LINEAR"},{"input":818,"output":819,"interpolation":"LINEAR"},{"input":820,"output":821,"interpolation":"LINEAR"},{"input":822,"output":823,"interpolation":"LINEAR"},{"input":824,"output":825,"interpolation":"LINEAR"},{"input":826,"output":827,"interpolation":"LINEAR"},{"input":828,"output":829,"interpolation":"LINEAR"},{"input":830,"output":831,"interpolation":"LINEAR"},{"input":832,"output":833,"interpolation":"LINEAR"},{"input":834,"output":835,"interpolation":"LINEAR"},{"input":836,"output":837,"interpolation":"LINEAR"},{"input":838,"output":839,"interpolation":"LINEAR"},{"input":840,"output":841,"interpolation":"LINEAR"},{"input":842,"output":843,"interpolation":"LINEAR"},{"input":844,"output":845,"interpolation":"LINEAR"},{"input":846,"output":847,"interpolation":"LINEAR"},{"input":848,"output":849,"interpolation":"LINEAR"},{"input":850,"output":851,"interpolation":"LINEAR"},{"input":852,"output":853,"interpolation":"LINEAR"}]},{"name":"r_spoiler_key","channels":[{"sampler":0,"target":{"node":185,"path":"translation"}},{"sampler":1,"target":{"node":185,"path":"rotation"}},{"sampler":2,"target":{"node":185,"path":"scale"}},{"sampler":3,"target":{"node":186,"path":"translation"}},{"sampler":4,"target":{"node":186,"path":"rotation"}},{"sampler":5,"target":{"node":186,"path":"scale"}},{"sampler":6,"target":{"node":187,"path":"translation"}},{"sampler":7,"target":{"node":187,"path":"rotation"}},{"sampler":8,"target":{"node":187,"path":"scale"}},{"sampler":9,"target":{"node":188,"path":"translation"}},{"sampler":10,"target":{"node":188,"path":"rotation"}},{"sampler":11,"target":{"node":188,"path":"scale"}},{"sampler":12,"target":{"node":189,"path":"translation"}},{"sampler":13,"target":{"node":189,"path":"rotation"}},{"sampler":14,"target":{"node":189,"path":"scale"}},{"sampler":15,"target":{"node":190,"path":"translation"}},{"sampler":16,"target":{"node":190,"path":"rotation"}},{"sampler":17,"target":{"node":190,"path":"scale"}},{"sampler":18,"target":{"node":191,"path":"translation"}},{"sampler":19,"target":{"node":191,"path":"rotation"}},{"sampler":20,"target":{"node":191,"path":"scale"}},{"sampler":21,"target":{"node":192,"path":"translation"}},{"sampler":22,"target":{"node":192,"path":"rotation"}},{"sampler":23,"target":{"node":192,"path":"scale"}},{"sampler":24,"target":{"node":193,"path":"translation"}},{"sampler":25,"target":{"node":193,"path":"rotation"}},{"sampler":26,"target":{"node":193,"path":"scale"}},{"sampler":27,"target":{"node":220,"path":"translation"}},{"sampler":28,"target":{"node":220,"path":"rotation"}},{"sampler":29,"target":{"node":220,"path":"scale"}},{"sampler":30,"target":{"node":222,"path":"translation"}},{"sampler":31,"target":{"node":222,"path":"rotation"}},{"sampler":32,"target":{"node":222,"path":"scale"}},{"sampler":33,"target":{"node":223,"path":"translation"}},{"sampler":34,"target":{"node":223,"path":"rotation"}},{"sampler":35,"target":{"node":223,"path":"scale"}},{"sampler":36,"target":{"node":224,"path":"translation"}},{"sampler":37,"target":{"node":224,"path":"rotation"}},{"sampler":38,"target":{"node":224,"path":"scale"}},{"sampler":39,"target":{"node":228,"path":"translation"}},{"sampler":40,"target":{"node":228,"path":"rotation"}},{"sampler":41,"target":{"node":228,"path":"scale"}},{"sampler":42,"target":{"node":202,"path":"rotation"}},{"sampler":43,"target":{"node":197,"path":"translation"}},{"sampler":44,"target":{"node":197,"path":"rotation"}},{"sampler":45,"target":{"node":209,"path":"rotation"}},{"sampler":46,"target":{"node":206,"path":"translation"}},{"sampler":47,"target":{"node":206,"path":"rotation"}},{"sampler":48,"target":{"node":210,"path":"rotation"}},{"sampler":49,"target":{"node":207,"path":"translation"}},{"sampler":50,"target":{"node":207,"path":"rotation"}},{"sampler":51,"target":{"node":211,"path":"rotation"}},{"sampler":52,"target":{"node":208,"path":"translation"}},{"sampler":53,"target":{"node":208,"path":"rotation"}}],"samplers":[{"input":854,"output":855,"interpolation":"LINEAR"},{"input":856,"output":857,"interpolation":"LINEAR"},{"input":858,"output":859,"interpolation":"LINEAR"},{"input":860,"output":861,"interpolation":"LINEAR"},{"input":862,"output":863,"interpolation":"LINEAR"},{"input":864,"output":865,"interpolation":"LINEAR"},{"input":866,"output":867,"interpolation":"LINEAR"},{"input":868,"output":869,"interpolation":"LINEAR"},{"input":870,"output":871,"interpolation":"LINEAR"},{"input":872,"output":873,"interpolation":"LINEAR"},{"input":874,"output":875,"interpolation":"LINEAR"},{"input":876,"output":877,"interpolation":"LINEAR"},{"input":878,"output":879,"interpolation":"LINEAR"},{"input":880,"output":881,"interpolation":"LINEAR"},{"input":882,"output":883,"interpolation":"LINEAR"},{"input":884,"output":885,"interpolation":"LINEAR"},{"input":886,"output":887,"interpolation":"LINEAR"},{"input":888,"output":889,"interpolation":"LINEAR"},{"input":890,"output":891,"interpolation":"LINEAR"},{"input":892,"output":893,"interpolation":"LINEAR"},{"input":894,"output":895,"interpolation":"LINEAR"},{"input":896,"output":897,"interpolation":"LINEAR"},{"input":898,"output":899,"interpolation":"LINEAR"},{"input":900,"output":901,"interpolation":"LINEAR"},{"input":902,"output":903,"interpolation":"LINEAR"},{"input":904,"output":905,"interpolation":"LINEAR"},{"input":906,"output":907,"interpolation":"LINEAR"},{"input":908,"output":909,"interpolation":"LINEAR"},{"input":910,"output":911,"interpolation":"LINEAR"},{"input":912,"output":913,"interpolation":"LINEAR"},{"input":914,"output":915,"interpolation":"LINEAR"},{"input":916,"output":917,"interpolation":"LINEAR"},{"input":918,"output":919,"interpolation":"LINEAR"},{"input":920,"output":921,"interpolation":"LINEAR"},{"input":922,"output":923,"interpolation":"LINEAR"},{"input":924,"output":925,"interpolation":"LINEAR"},{"input":926,"output":927,"interpolation":"LINEAR"},{"input":928,"output":929,"interpolation":"LINEAR"},{"input":930,"output":931,"interpolation":"LINEAR"},{"input":932,"output":933,"interpolation":"LINEAR"},{"input":934,"output":935,"interpolation":"LINEAR"},{"input":936,"output":937,"interpolation":"LINEAR"},{"input":938,"output":939,"interpolation":"LINEAR"},{"input":940,"output":941,"interpolation":"LINEAR"},{"input":942,"output":943,"interpolation":"LINEAR"},{"input":944,"output":945,"interpolation":"LINEAR"},{"input":946,"output":947,"interpolation":"LINEAR"},{"input":948,"output":949,"interpolation":"LINEAR"},{"input":950,"output":951,"interpolation":"LINEAR"},{"input":952,"output":953,"interpolation":"LINEAR"},{"input":954,"output":955,"interpolation":"LINEAR"},{"input":956,"output":957,"interpolation":"LINEAR"},{"input":958,"output":959,"interpolation":"LINEAR"},{"input":960,"output":961,"interpolation":"LINEAR"}]},{"name":"r_tire_key","channels":[{"sampler":0,"target":{"node":245,"path":"translation"}},{"sampler":1,"target":{"node":245,"path":"rotation"}},{"sampler":2,"target":{"node":245,"path":"scale"}},{"sampler":3,"target":{"node":248,"path":"translation"}},{"sampler":4,"target":{"node":248,"path":"rotation"}},{"sampler":5,"target":{"node":248,"path":"scale"}}],"samplers":[{"input":962,"output":963,"interpolation":"LINEAR"},{"input":964,"output":965,"interpolation":"LINEAR"},{"input":966,"output":967,"interpolation":"LINEAR"},{"input":968,"output":969,"interpolation":"LINEAR"},{"input":970,"output":971,"interpolation":"LINEAR"},{"input":972,"output":973,"interpolation":"LINEAR"}]},{"name":"thrust_rev_2","channels":[{"sampler":0,"target":{"node":169,"path":"translation"}},{"sampler":1,"target":{"node":169,"path":"rotation"}},{"sampler":2,"target":{"node":169,"path":"scale"}}],"samplers":[{"input":974,"output":975,"interpolation":"LINEAR"},{"input":976,"output":977,"interpolation":"LINEAR"},{"input":978,"output":979,"interpolation":"LINEAR"}]},{"name":"N1_2_Anim","channels":[{"sampler":0,"target":{"node":171,"path":"translation"}},{"sampler":1,"target":{"node":171,"path":"rotation"}},{"sampler":2,"target":{"node":171,"path":"scale"}}],"samplers":[{"input":980,"output":981,"interpolation":"LINEAR"},{"input":982,"output":983,"interpolation":"LINEAR"},{"input":984,"output":985,"interpolation":"LINEAR"}]},{"name":"r_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":198,"path":"translation"}},{"sampler":1,"target":{"node":198,"path":"rotation"}},{"sampler":2,"target":{"node":198,"path":"scale"}},{"sampler":3,"target":{"node":199,"path":"translation"}},{"sampler":4,"target":{"node":199,"path":"rotation"}},{"sampler":5,"target":{"node":199,"path":"scale"}},{"sampler":6,"target":{"node":226,"path":"translation"}},{"sampler":7,"target":{"node":226,"path":"rotation"}},{"sampler":8,"target":{"node":226,"path":"scale"}},{"sampler":9,"target":{"node":201,"path":"translation"}},{"sampler":10,"target":{"node":201,"path":"rotation"}},{"sampler":11,"target":{"node":201,"path":"scale"}}],"samplers":[{"input":986,"output":987,"interpolation":"LINEAR"},{"input":988,"output":989,"interpolation":"LINEAR"},{"input":990,"output":991,"interpolation":"LINEAR"},{"input":992,"output":993,"interpolation":"LINEAR"},{"input":994,"output":995,"interpolation":"LINEAR"},{"input":996,"output":997,"interpolation":"LINEAR"},{"input":998,"output":999,"interpolation":"LINEAR"},{"input":1000,"output":1001,"interpolation":"LINEAR"},{"input":1002,"output":1003,"interpolation":"LINEAR"},{"input":1004,"output":1005,"interpolation":"LINEAR"},{"input":1006,"output":1007,"interpolation":"LINEAR"},{"input":1008,"output":1009,"interpolation":"LINEAR"}]},{"name":"l_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":49,"path":"translation"}},{"sampler":1,"target":{"node":49,"path":"rotation"}},{"sampler":2,"target":{"node":49,"path":"scale"}},{"sampler":3,"target":{"node":50,"path":"translation"}},{"sampler":4,"target":{"node":50,"path":"rotation"}},{"sampler":5,"target":{"node":50,"path":"scale"}},{"sampler":6,"target":{"node":52,"path":"translation"}},{"sampler":7,"target":{"node":52,"path":"rotation"}},{"sampler":8,"target":{"node":52,"path":"scale"}},{"sampler":9,"target":{"node":47,"path":"translation"}},{"sampler":10,"target":{"node":47,"path":"rotation"}},{"sampler":11,"target":{"node":47,"path":"scale"}}],"samplers":[{"input":1010,"output":1011,"interpolation":"LINEAR"},{"input":1012,"output":1013,"interpolation":"LINEAR"},{"input":1014,"output":1015,"interpolation":"LINEAR"},{"input":1016,"output":1017,"interpolation":"LINEAR"},{"input":1018,"output":1019,"interpolation":"LINEAR"},{"input":1020,"output":1021,"interpolation":"LINEAR"},{"input":1022,"output":1023,"interpolation":"LINEAR"},{"input":1024,"output":1025,"interpolation":"LINEAR"},{"input":1026,"output":1027,"interpolation":"LINEAR"},{"input":1028,"output":1029,"interpolation":"LINEAR"},{"input":1030,"output":1031,"interpolation":"LINEAR"},{"input":1032,"output":1033,"interpolation":"LINEAR"}]},{"name":"door_cargo","channels":[{"sampler":0,"target":{"node":279,"path":"rotation"}},{"sampler":1,"target":{"node":281,"path":"translation"}},{"sampler":2,"target":{"node":281,"path":"rotation"}},{"sampler":3,"target":{"node":281,"path":"scale"}},{"sampler":4,"target":{"node":280,"path":"translation"}},{"sampler":5,"target":{"node":280,"path":"rotation"}},{"sampler":6,"target":{"node":280,"path":"scale"}}],"samplers":[{"input":1034,"output":1035,"interpolation":"LINEAR"},{"input":1036,"output":1037,"interpolation":"LINEAR"},{"input":1038,"output":1039,"interpolation":"LINEAR"},{"input":1040,"output":1041,"interpolation":"LINEAR"},{"input":1042,"output":1043,"interpolation":"LINEAR"},{"input":1044,"output":1045,"interpolation":"LINEAR"},{"input":1046,"output":1047,"interpolation":"LINEAR"}]},{"name":"door_passenger","channels":[{"sampler":0,"target":{"node":284,"path":"translation"}},{"sampler":1,"target":{"node":285,"path":"rotation"}}],"samplers":[{"input":1048,"output":1049,"interpolation":"LINEAR"},{"input":1050,"output":1051,"interpolation":"LINEAR"}]},{"name":"door_rear","channels":[{"sampler":0,"target":{"node":278,"path":"rotation"}},{"sampler":1,"target":{"node":277,"path":"translation"}}],"samplers":[{"input":1052,"output":1053,"interpolation":"LINEAR"},{"input":1054,"output":1055,"interpolation":"LINEAR"}]},{"name":"HANDLING_Wipers","channels":[{"sampler":0,"target":{"node":286,"path":"rotation"}},{"sampler":1,"target":{"node":287,"path":"rotation"}},{"sampler":2,"target":{"node":288,"path":"rotation"}},{"sampler":3,"target":{"node":289,"path":"rotation"}}],"samplers":[{"input":1056,"output":1057,"interpolation":"LINEAR"},{"input":1058,"output":1059,"interpolation":"LINEAR"},{"input":1060,"output":1061,"interpolation":"LINEAR"},{"input":1062,"output":1063,"interpolation":"LINEAR"}]},{"name":"l_slats_percent_key","channels":[{"sampler":0,"target":{"node":56,"path":"translation"}},{"sampler":1,"target":{"node":56,"path":"rotation"}},{"sampler":2,"target":{"node":56,"path":"scale"}},{"sampler":3,"target":{"node":55,"path":"translation"}},{"sampler":4,"target":{"node":55,"path":"rotation"}},{"sampler":5,"target":{"node":55,"path":"scale"}},{"sampler":6,"target":{"node":42,"path":"translation"}},{"sampler":7,"target":{"node":42,"path":"rotation"}},{"sampler":8,"target":{"node":42,"path":"scale"}},{"sampler":9,"target":{"node":30,"path":"translation"}},{"sampler":10,"target":{"node":30,"path":"rotation"}},{"sampler":11,"target":{"node":30,"path":"scale"}},{"sampler":12,"target":{"node":23,"path":"translation"}},{"sampler":13,"target":{"node":23,"path":"rotation"}},{"sampler":14,"target":{"node":23,"path":"scale"}}],"samplers":[{"input":1064,"output":1065,"interpolation":"LINEAR"},{"input":1066,"output":1067,"interpolation":"LINEAR"},{"input":1068,"output":1069,"interpolation":"LINEAR"},{"input":1070,"output":1071,"interpolation":"LINEAR"},{"input":1072,"output":1073,"interpolation":"LINEAR"},{"input":1074,"output":1075,"interpolation":"LINEAR"},{"input":1076,"output":1077,"interpolation":"LINEAR"},{"input":1078,"output":1079,"interpolation":"LINEAR"},{"input":1080,"output":1081,"interpolation":"LINEAR"},{"input":1082,"output":1083,"interpolation":"LINEAR"},{"input":1084,"output":1085,"interpolation":"LINEAR"},{"input":1086,"output":1087,"interpolation":"LINEAR"},{"input":1088,"output":1089,"interpolation":"LINEAR"},{"input":1090,"output":1091,"interpolation":"LINEAR"},{"input":1092,"output":1093,"interpolation":"LINEAR"}]},{"name":"r_slats_percent_key","channels":[{"sampler":0,"target":{"node":177,"path":"translation"}},{"sampler":1,"target":{"node":177,"path":"rotation"}},{"sampler":2,"target":{"node":177,"path":"scale"}},{"sampler":3,"target":{"node":230,"path":"translation"}},{"sampler":4,"target":{"node":230,"path":"rotation"}},{"sampler":5,"target":{"node":230,"path":"scale"}},{"sampler":6,"target":{"node":225,"path":"translation"}},{"sampler":7,"target":{"node":225,"path":"rotation"}},{"sampler":8,"target":{"node":225,"path":"scale"}},{"sampler":9,"target":{"node":221,"path":"translation"}},{"sampler":10,"target":{"node":221,"path":"rotation"}},{"sampler":11,"target":{"node":221,"path":"scale"}},{"sampler":12,"target":{"node":216,"path":"translation"}},{"sampler":13,"target":{"node":216,"path":"rotation"}},{"sampler":14,"target":{"node":216,"path":"scale"}}],"samplers":[{"input":1094,"output":1095,"interpolation":"LINEAR"},{"input":1096,"output":1097,"interpolation":"LINEAR"},{"input":1098,"output":1099,"interpolation":"LINEAR"},{"input":1100,"output":1101,"interpolation":"LINEAR"},{"input":1102,"output":1103,"interpolation":"LINEAR"},{"input":1104,"output":1105,"interpolation":"LINEAR"},{"input":1106,"output":1107,"interpolation":"LINEAR"},{"input":1108,"output":1109,"interpolation":"LINEAR"},{"input":1110,"output":1111,"interpolation":"LINEAR"},{"input":1112,"output":1113,"interpolation":"LINEAR"},{"input":1114,"output":1115,"interpolation":"LINEAR"},{"input":1116,"output":1117,"interpolation":"LINEAR"},{"input":1118,"output":1119,"interpolation":"LINEAR"},{"input":1120,"output":1121,"interpolation":"LINEAR"},{"input":1122,"output":1123,"interpolation":"LINEAR"}]},{"name":"Rudder_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":325,"path":"translation"}},{"sampler":1,"target":{"node":325,"path":"rotation"}}],"samplers":[{"input":1920,"output":1921,"interpolation":"LINEAR"},{"input":1920,"output":1922,"interpolation":"LINEAR"}]},{"name":"C_Door_02_Left_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":326,"path":"translation"}},{"sampler":1,"target":{"node":326,"path":"rotation"}}],"samplers":[{"input":1923,"output":1924,"interpolation":"LINEAR"},{"input":1923,"output":1925,"interpolation":"LINEAR"}]},{"name":"C_Door_02_right_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":327,"path":"translation"}},{"sampler":1,"target":{"node":327,"path":"rotation"}}],"samplers":[{"input":1923,"output":1926,"interpolation":"LINEAR"},{"input":1923,"output":1927,"interpolation":"LINEAR"}]},{"name":"DoorB_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":328,"path":"translation"}}],"samplers":[{"input":1920,"output":1928,"interpolation":"LINEAR"}]},{"name":"Door01_left_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":330,"path":"rotation"}}],"samplers":[{"input":1923,"output":1929,"interpolation":"LINEAR"}]},{"name":"Door01_right_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":331,"path":"rotation"}}],"samplers":[{"input":1923,"output":1930,"interpolation":"LINEAR"}]},{"name":"Cargo_Door_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":333,"path":"translation"}},{"sampler":1,"target":{"node":333,"path":"rotation"}}],"samplers":[{"input":1920,"output":1931,"interpolation":"LINEAR"},{"input":1920,"output":1932,"interpolation":"LINEAR"}]}],"asset":{"generator":"babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344","version":"2.0","extensions":{"ASOBO_asset_optimized":{"BoundingBoxMax":[30.037267684936523,12.393302917480469,32.94788360595703],"BoundingBoxMin":[-30.037269592285156,-4.272808074951172,-48.82345199584961],"MajorVersion":4,"MinorVersion":4,"UseCheckerboardMaterialForMissingTextures":true},"ASOBO_normal_map_convention":{"tangent_space_convention":"DirectX"}}},"bufferViews":[{"buffer":0,"byteLength":8320,"name":"bufferViewFloatMat4"},{"buffer":0,"byteLength":332640,"byteOffset":8320,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteLength":645024,"byteOffset":340960,"name":"bufferViewAnimationFloatVec3"},{"buffer":0,"byteLength":470528,"byteOffset":985984,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteLength":508500,"byteStride":36,"byteOffset":1456512,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":99222,"byteOffset":1965012,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":352416,"byteStride":48,"byteOffset":2064236,"target":34962,"name":"BufferViewVertex4Blend"},{"buffer":0,"byteLength":159636,"byteOffset":2416652,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":845424,"byteStride":36,"byteOffset":2576288,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":324,"byteOffset":3421712},{"buffer":0,"byteLength":972,"byteOffset":3422036},{"buffer":0,"byteLength":1296,"byteOffset":3423008},{"buffer":0,"byteLength":644,"byteOffset":3424304},{"buffer":0,"byteLength":1932,"byteOffset":3424948},{"buffer":0,"byteLength":2576,"byteOffset":3426880},{"buffer":0,"byteLength":1932,"byteOffset":3429456},{"buffer":0,"byteLength":2576,"byteOffset":3431388},{"buffer":0,"byteLength":972,"byteOffset":3433964},{"buffer":0,"byteLength":2576,"byteOffset":3434936},{"buffer":0,"byteLength":2576,"byteOffset":3437512},{"buffer":0,"byteLength":972,"byteOffset":3440088},{"buffer":0,"byteLength":1296,"byteOffset":3441060}],"extensionsRequired":["MSFT_texture_dds"],"materials":[{"name":"FUSELAGE1","normalTexture":{"index":2},"occlusionTexture":{"index":1},"pbrMetallicRoughness":{"baseColorTexture":{"index":0},"metallicRoughnessTexture":{"index":1}}},{"name":"LIVERY1","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":3}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}},{"name":"Livery_KLM2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":4}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}},{"name":"LIGHTSx","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.2}},{"name":"WINGS","normalTexture":{"index":7},"occlusionTexture":{"index":6},"pbrMetallicRoughness":{"baseColorTexture":{"index":5},"metallicRoughnessTexture":{"index":6}}},{"name":"FROST","alphaMode":"BLEND","normalTexture":{"index":10,"scale":0.84},"occlusionTexture":{"index":9},"pbrMetallicRoughness":{"metallicFactor":0.94,"roughnessFactor":0.05,"baseColorTexture":{"index":8},"metallicRoughnessTexture":{"index":9}},"extensions":{"ASOBO_material_blend_gbuffer":{"baseColorBlendFactor":0.99,"emissiveBlendFactor":0,"metallicBlendFactor":0.99,"normalBlendFactor":0.81,"occlusionBlendFactor":0,"roughnessBlendFactor":0.99},"ASOBO_material_draw_order":{"drawOrderOffset":50}},"extras":{"ASOBO_material_code":"GeoDecalFrosted"}},{"name":"Generic_LOD5","occlusionTexture":{"index":12},"pbrMetallicRoughness":{"baseColorTexture":{"index":11},"metallicRoughnessTexture":{"index":12}}},{"name":"ENGINE","normalTexture":{"index":15},"occlusionTexture":{"index":14},"pbrMetallicRoughness":{"baseColorTexture":{"index":13},"metallicRoughnessTexture":{"index":14}}},{"name":"Livery_KLM","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":16}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"FUSELAGE2","normalTexture":{"index":19},"occlusionTexture":{"index":18},"pbrMetallicRoughness":{"baseColorTexture":{"index":17},"metallicRoughnessTexture":{"index":18}}},{"name":"TAIL","normalTexture":{"index":22},"occlusionTexture":{"index":21},"pbrMetallicRoughness":{"baseColorTexture":{"index":20},"metallicRoughnessTexture":{"index":21}}},{"name":"DECALS2","alphaMode":"BLEND","normalTexture":{"index":24},"pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.3,"baseColorTexture":{"index":23}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":15}}},{"name":"LIVERY1_3","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":25}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":5}}},{"name":"FROST_LOW","alphaMode":"BLEND","occlusionTexture":{"index":27},"pbrMetallicRoughness":{"metallicFactor":0.94,"roughnessFactor":0.08,"baseColorTexture":{"index":26},"metallicRoughnessTexture":{"index":27}},"extensions":{"ASOBO_material_blend_gbuffer":{"baseColorBlendFactor":0.99,"emissiveBlendFactor":0,"metallicBlendFactor":0.66,"normalBlendFactor":0.81,"occlusionBlendFactor":0,"roughnessBlendFactor":0.99},"ASOBO_material_detail_map":{"UVScale":2,"detailMetalRoughAOTexture":{"index":28}},"ASOBO_material_draw_order":{"drawOrderOffset":4}},"extras":{"ASOBO_material_code":"GeoDecalFrosted"}},{"name":"Windshield_Low","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[1,1,1,0.01],"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_detail_map":{"UVScale":5,"detailColorTexture":{"index":29},"detailNormalTexture":{"index":30}}},"extras":{"ASOBO_material_code":"Windshield"}},{"name":"WINDSHIELD","alphaMode":"BLEND","occlusionTexture":{"index":31},"emissiveTexture":{"index":32},"pbrMetallicRoughness":{"baseColorFactor":[0.623529434,0.623529434,0.623529434,0.01],"metallicFactor":0,"roughnessFactor":0,"metallicRoughnessTexture":{"index":31}},"extensions":{"ASOBO_material_detail_map":{"UVScale":2,"detailColorTexture":{"index":33},"detailNormalTexture":{"index":34}}},"extras":{"ASOBO_material_code":"Windshield"}},{"name":"LIGHTS","occlusionTexture":{"index":35},"pbrMetallicRoughness":{"baseColorFactor":[0.9,0.9,0.9,1],"metallicRoughnessTexture":{"index":35}}},{"name":"UNDERCARRIAGE","normalTexture":{"index":38},"occlusionTexture":{"index":37},"pbrMetallicRoughness":{"baseColorTexture":{"index":36},"metallicRoughnessTexture":{"index":37}}},{"name":"RegistrationNumber2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"HUBLOT","normalTexture":{"index":41},"occlusionTexture":{"index":40},"emissiveTexture":{"index":42},"emissiveFactor":[0.48201438784599304,0.48171502351760864,0.4404016137123108],"pbrMetallicRoughness":{"baseColorTexture":{"index":39},"metallicRoughnessTexture":{"index":40}},"extensions":{"ASOBO_material_draw_order":{"drawOrderOffset":11}},"extras":{"ASOBO_material_code":"Porthole"}},{"name":"RegistrationNumber","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1],"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":8}}},{"name":"LIVERYDECALS","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":43}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}}],"meshes":[{"primitives":[{"attributes":{"COLOR_0":1129,"NORMAL":1126,"POSITION":1124,"TANGENT":1125,"TEXCOORD_0":1127,"TEXCOORD_1":1128},"indices":1130,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1129,"NORMAL":1126,"POSITION":1124,"TANGENT":1125,"TEXCOORD_0":1127,"TEXCOORD_1":1128},"indices":1130,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"StartIndex":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_C_Door_right"},{"primitives":[{"attributes":{"COLOR_0":1136,"NORMAL":1133,"POSITION":1131,"TANGENT":1132,"TEXCOORD_0":1134,"TEXCOORD_1":1135},"indices":1137,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_RGDoor"},{"primitives":[{"attributes":{"COLOR_0":1143,"NORMAL":1140,"POSITION":1138,"TANGENT":1139,"TEXCOORD_0":1141,"TEXCOORD_1":1142},"indices":1144,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1143,"NORMAL":1140,"POSITION":1138,"TANGENT":1139,"TEXCOORD_0":1141,"TEXCOORD_1":1142},"indices":1144,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":6,"StartIndex":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_C_Door_left"},{"primitives":[{"attributes":{"COLOR_0":1150,"NORMAL":1147,"POSITION":1145,"TANGENT":1146,"TEXCOORD_0":1148,"TEXCOORD_1":1149},"indices":1151,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_LGDoor"},{"primitives":[{"attributes":{"COLOR_0":1157,"NORMAL":1154,"POSITION":1152,"TANGENT":1153,"TEXCOORD_0":1155,"TEXCOORD_1":1156},"indices":1158,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Logo_Left"},{"primitives":[{"attributes":{"COLOR_0":1164,"NORMAL":1161,"POSITION":1159,"TANGENT":1160,"TEXCOORD_0":1162,"TEXCOORD_1":1163},"indices":1165,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_NavigationRed"},{"primitives":[{"attributes":{"COLOR_0":1171,"NORMAL":1168,"POSITION":1166,"TANGENT":1167,"TEXCOORD_0":1169,"TEXCOORD_1":1170},"indices":1172,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_NavigationWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1178,"NORMAL":1175,"POSITION":1173,"TANGENT":1174,"TEXCOORD_0":1176,"TEXCOORD_1":1177},"indices":1179,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_StrobeWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1607,"JOINTS_0":1605,"NORMAL":1602,"POSITION":1600,"TANGENT":1601,"TEXCOORD_0":1603,"TEXCOORD_1":1604,"WEIGHTS_0":1606},"indices":1608,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Spoiler_2_1_left"},{"primitives":[{"attributes":{"COLOR_0":1185,"NORMAL":1182,"POSITION":1180,"TANGENT":1181,"TEXCOORD_0":1183,"TEXCOORD_1":1184},"indices":1186,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Spoiler_2_left"},{"primitives":[{"attributes":{"COLOR_0":1192,"NORMAL":1189,"POSITION":1187,"TANGENT":1188,"TEXCOORD_0":1190,"TEXCOORD_1":1191},"indices":1193,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":96,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_1_left"},{"primitives":[{"attributes":{"COLOR_0":1199,"NORMAL":1196,"POSITION":1194,"TANGENT":1195,"TEXCOORD_0":1197,"TEXCOORD_1":1198},"indices":1200,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":76,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_FlapsKrueger_1_left"},{"primitives":[{"attributes":{"COLOR_0":1206,"NORMAL":1203,"POSITION":1201,"TANGENT":1202,"TEXCOORD_0":1204,"TEXCOORD_1":1205},"indices":1207,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":18,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_FROST_KRUEGER_L_1"},{"primitives":[{"attributes":{"COLOR_0":1213,"NORMAL":1210,"POSITION":1208,"TANGENT":1209,"TEXCOORD_0":1211,"TEXCOORD_1":1212},"indices":1214,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":113,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_left"},{"primitives":[{"attributes":{"COLOR_0":1220,"NORMAL":1217,"POSITION":1215,"TANGENT":1216,"TEXCOORD_0":1218,"TEXCOORD_1":1219},"indices":1221,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LWheel_01_blurred"},{"primitives":[{"attributes":{"COLOR_0":1227,"NORMAL":1224,"POSITION":1222,"TANGENT":1223,"TEXCOORD_0":1225,"TEXCOORD_1":1226},"indices":1228,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LWheel_01_still"},{"primitives":[{"attributes":{"COLOR_0":1234,"NORMAL":1231,"POSITION":1229,"TANGENT":1230,"TEXCOORD_0":1232,"TEXCOORD_1":1233},"indices":1235,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LWheel_02_blurred"},{"primitives":[{"attributes":{"COLOR_0":1241,"NORMAL":1238,"POSITION":1236,"TANGENT":1237,"TEXCOORD_0":1239,"TEXCOORD_1":1240},"indices":1242,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LWheel_02_still"},{"primitives":[{"attributes":{"COLOR_0":1248,"NORMAL":1245,"POSITION":1243,"TANGENT":1244,"TEXCOORD_0":1246,"TEXCOORD_1":1247},"indices":1249,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":150,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Landing_gear_Root_left"},{"primitives":[{"attributes":{"COLOR_0":1255,"NORMAL":1252,"POSITION":1250,"TANGENT":1251,"TEXCOORD_0":1253,"TEXCOORD_1":1254},"indices":1256,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":46,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Door04_left"},{"primitives":[{"attributes":{"COLOR_0":1262,"NORMAL":1259,"POSITION":1257,"TANGENT":1258,"TEXCOORD_0":1260,"TEXCOORD_1":1261},"indices":1263,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_1_blurred_left"},{"primitives":[{"attributes":{"COLOR_0":1269,"NORMAL":1266,"POSITION":1264,"TANGENT":1265,"TEXCOORD_0":1267,"TEXCOORD_1":1268},"indices":1270,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_1_slow_left"},{"primitives":[{"attributes":{"COLOR_0":1276,"NORMAL":1273,"POSITION":1271,"TANGENT":1272,"TEXCOORD_0":1274,"TEXCOORD_1":1275},"indices":1277,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":118,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_1_still_left"},{"primitives":[{"attributes":{"COLOR_0":1283,"NORMAL":1280,"POSITION":1278,"TANGENT":1279,"TEXCOORD_0":1281,"TEXCOORD_1":1282},"indices":1284,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":304,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Engine_Duct_left"},{"primitives":[{"attributes":{"COLOR_0":1290,"NORMAL":1287,"POSITION":1285,"TANGENT":1286,"TEXCOORD_0":1288,"TEXCOORD_1":1289},"indices":1291,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_LEFT"},{"primitives":[{"attributes":{"COLOR_0":1297,"NORMAL":1294,"POSITION":1292,"TANGENT":1293,"TEXCOORD_0":1295,"TEXCOORD_1":1296},"indices":1298,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_EngA"},{"primitives":[{"attributes":{"COLOR_0":1304,"NORMAL":1301,"POSITION":1299,"TANGENT":1300,"TEXCOORD_0":1302,"TEXCOORD_1":1303},"indices":1305,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":282,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Landing_Gear_NosePart16_center"},{"primitives":[{"attributes":{"COLOR_0":1311,"NORMAL":1308,"POSITION":1306,"TANGENT":1307,"TEXCOORD_0":1309,"TEXCOORD_1":1310},"indices":1312,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_LandingNose_Left"},{"primitives":[{"attributes":{"COLOR_0":1318,"NORMAL":1315,"POSITION":1313,"TANGENT":1314,"TEXCOORD_0":1316,"TEXCOORD_1":1317},"indices":1319,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_LandingNose_Right"},{"primitives":[{"attributes":{"COLOR_0":1325,"NORMAL":1322,"POSITION":1320,"TANGENT":1321,"TEXCOORD_0":1323,"TEXCOORD_1":1324},"indices":1326,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Taxi_Left"},{"primitives":[{"attributes":{"COLOR_0":1332,"NORMAL":1329,"POSITION":1327,"TANGENT":1328,"TEXCOORD_0":1330,"TEXCOORD_1":1331},"indices":1333,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Taxi_Right"},{"primitives":[{"attributes":{"COLOR_0":1339,"NORMAL":1336,"POSITION":1334,"TANGENT":1335,"TEXCOORD_0":1337,"TEXCOORD_1":1338},"indices":1340,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Logo_Right"},{"primitives":[{"attributes":{"COLOR_0":1346,"NORMAL":1343,"POSITION":1341,"TANGENT":1342,"TEXCOORD_0":1344,"TEXCOORD_1":1345},"indices":1347,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":304,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Engine_Duct_right"},{"primitives":[{"attributes":{"COLOR_0":1353,"NORMAL":1350,"POSITION":1348,"TANGENT":1349,"TEXCOORD_0":1351,"TEXCOORD_1":1352},"indices":1354,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_2_blurred_right"},{"primitives":[{"attributes":{"COLOR_0":1360,"NORMAL":1357,"POSITION":1355,"TANGENT":1356,"TEXCOORD_0":1358,"TEXCOORD_1":1359},"indices":1361,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_2_slow_right"},{"primitives":[{"attributes":{"COLOR_0":1367,"NORMAL":1364,"POSITION":1362,"TANGENT":1363,"TEXCOORD_0":1365,"TEXCOORD_1":1366},"indices":1368,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":120,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_2_still_right"},{"primitives":[{"attributes":{"COLOR_0":1374,"NORMAL":1371,"POSITION":1369,"TANGENT":1370,"TEXCOORD_0":1372,"TEXCOORD_1":1373},"indices":1375,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_RIGHT"},{"primitives":[{"attributes":{"COLOR_0":1381,"NORMAL":1378,"POSITION":1376,"TANGENT":1377,"TEXCOORD_0":1379,"TEXCOORD_1":1380},"indices":1382,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_EngB"},{"primitives":[{"attributes":{"COLOR_0":1388,"NORMAL":1385,"POSITION":1383,"TANGENT":1384,"TEXCOORD_0":1386,"TEXCOORD_1":1387},"indices":1389,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":68,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_FlapsKrueger_1_right"},{"primitives":[{"attributes":{"COLOR_0":1395,"NORMAL":1392,"POSITION":1390,"TANGENT":1391,"TEXCOORD_0":1393,"TEXCOORD_1":1394},"indices":1396,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_FROST_KRUEGER_R_1"},{"primitives":[{"attributes":{"COLOR_0":1402,"NORMAL":1399,"POSITION":1397,"TANGENT":1398,"TEXCOORD_0":1400,"TEXCOORD_1":1401},"indices":1403,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":82,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_right"},{"primitives":[{"attributes":{"COLOR_0":1409,"NORMAL":1406,"POSITION":1404,"TANGENT":1405,"TEXCOORD_0":1407,"TEXCOORD_1":1408},"indices":1410,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_1_right"},{"primitives":[{"attributes":{"COLOR_0":1416,"NORMAL":1413,"POSITION":1411,"TANGENT":1412,"TEXCOORD_0":1414,"TEXCOORD_1":1415},"indices":1417,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_NavigationGreen"},{"primitives":[{"attributes":{"COLOR_0":1423,"NORMAL":1420,"POSITION":1418,"TANGENT":1419,"TEXCOORD_0":1421,"TEXCOORD_1":1422},"indices":1424,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_NavigationWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1430,"NORMAL":1427,"POSITION":1425,"TANGENT":1426,"TEXCOORD_0":1428,"TEXCOORD_1":1429},"indices":1431,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_StrobeWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1437,"NORMAL":1434,"POSITION":1432,"TANGENT":1433,"TEXCOORD_0":1435,"TEXCOORD_1":1436},"indices":1438,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":154,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Spoiler_2_right"},{"primitives":[{"attributes":{"COLOR_0":1616,"JOINTS_0":1614,"NORMAL":1611,"POSITION":1609,"TANGENT":1610,"TEXCOORD_0":1612,"TEXCOORD_1":1613,"WEIGHTS_0":1615},"indices":1617,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":42,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Spoiler_2_1_right"},{"primitives":[{"attributes":{"COLOR_0":1444,"NORMAL":1441,"POSITION":1439,"TANGENT":1440,"TEXCOORD_0":1442,"TEXCOORD_1":1443},"indices":1445,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":32,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Door04_right"},{"primitives":[{"attributes":{"COLOR_0":1451,"NORMAL":1448,"POSITION":1446,"TANGENT":1447,"TEXCOORD_0":1449,"TEXCOORD_1":1450},"indices":1452,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_RWheel_01_blurred"},{"primitives":[{"attributes":{"COLOR_0":1458,"NORMAL":1455,"POSITION":1453,"TANGENT":1454,"TEXCOORD_0":1456,"TEXCOORD_1":1457},"indices":1459,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_RWheel_01_still"},{"primitives":[{"attributes":{"COLOR_0":1465,"NORMAL":1462,"POSITION":1460,"TANGENT":1461,"TEXCOORD_0":1463,"TEXCOORD_1":1464},"indices":1466,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_RWheel_02_blurred"},{"primitives":[{"attributes":{"COLOR_0":1472,"NORMAL":1469,"POSITION":1467,"TANGENT":1468,"TEXCOORD_0":1470,"TEXCOORD_1":1471},"indices":1473,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":192,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_RWheel_02_still"},{"primitives":[{"attributes":{"COLOR_0":1479,"NORMAL":1476,"POSITION":1474,"TANGENT":1475,"TEXCOORD_0":1477,"TEXCOORD_1":1478},"indices":1480,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":150,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Landing_gear_Root_right"},{"primitives":[{"attributes":{"COLOR_0":1486,"NORMAL":1483,"POSITION":1481,"TANGENT":1482,"TEXCOORD_0":1484,"TEXCOORD_1":1485},"indices":1487,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":345,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1486,"NORMAL":1483,"POSITION":1481,"TANGENT":1482,"TEXCOORD_0":1484,"TEXCOORD_1":1485},"indices":1487,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":274,"StartIndex":1035,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1486,"NORMAL":1483,"POSITION":1481,"TANGENT":1482,"TEXCOORD_0":1484,"TEXCOORD_1":1485},"indices":1487,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":317,"StartIndex":1857,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1486,"NORMAL":1483,"POSITION":1481,"TANGENT":1482,"TEXCOORD_0":1484,"TEXCOORD_1":1485},"indices":1487,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":16,"StartIndex":2808,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1486,"NORMAL":1483,"POSITION":1481,"TANGENT":1482,"TEXCOORD_0":1484,"TEXCOORD_1":1485},"indices":1487,"material":12,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":320,"StartIndex":2856,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Body_center"},{"primitives":[{"attributes":{"COLOR_0":1493,"NORMAL":1490,"POSITION":1488,"TANGENT":1489,"TEXCOORD_0":1491,"TEXCOORD_1":1492},"indices":1494,"material":13,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":836,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_FROST_FUSELAGE"},{"primitives":[{"attributes":{"COLOR_0":1500,"NORMAL":1497,"POSITION":1495,"TANGENT":1496,"TEXCOORD_0":1498,"TEXCOORD_1":1499},"indices":1501,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Beacon_Belly"},{"primitives":[{"attributes":{"COLOR_0":1507,"NORMAL":1504,"POSITION":1502,"TANGENT":1503,"TEXCOORD_0":1505,"TEXCOORD_1":1506},"indices":1508,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Beacon_Top"},{"primitives":[{"attributes":{"COLOR_0":1514,"NORMAL":1511,"POSITION":1509,"TANGENT":1510,"TEXCOORD_0":1512,"TEXCOORD_1":1513},"indices":1515,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_LandingWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1521,"NORMAL":1518,"POSITION":1516,"TANGENT":1517,"TEXCOORD_0":1519,"TEXCOORD_1":1520},"indices":1522,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_LandingWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1528,"NORMAL":1525,"POSITION":1523,"TANGENT":1524,"TEXCOORD_0":1526,"TEXCOORD_1":1527},"indices":1529,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_RunwayTurnOff_Left"},{"primitives":[{"attributes":{"COLOR_0":1535,"NORMAL":1532,"POSITION":1530,"TANGENT":1531,"TEXCOORD_0":1533,"TEXCOORD_1":1534},"indices":1536,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_RunwayTurnOff_Right"},{"primitives":[{"attributes":{"COLOR_0":1542,"NORMAL":1539,"POSITION":1537,"TANGENT":1538,"TEXCOORD_0":1540,"TEXCOORD_1":1541},"indices":1543,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_StrobeTail_Left"},{"primitives":[{"attributes":{"COLOR_0":1549,"NORMAL":1546,"POSITION":1544,"TANGENT":1545,"TEXCOORD_0":1547,"TEXCOORD_1":1548},"indices":1550,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_StrobeTail_Right"},{"primitives":[{"attributes":{"COLOR_0":1556,"NORMAL":1553,"POSITION":1551,"TANGENT":1552,"TEXCOORD_0":1554,"TEXCOORD_1":1555},"indices":1557,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Wing_Left"},{"primitives":[{"attributes":{"COLOR_0":1563,"NORMAL":1560,"POSITION":1558,"TANGENT":1559,"TEXCOORD_0":1561,"TEXCOORD_1":1562},"indices":1564,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_LIGHT_ASOBO_Wing_Right"},{"primitives":[{"attributes":{"COLOR_0":1570,"NORMAL":1567,"POSITION":1565,"TANGENT":1566,"TEXCOORD_0":1568,"TEXCOORD_1":1569},"indices":1571,"material":14,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":55,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_WINDSHIELD"},{"primitives":[{"attributes":{"COLOR_0":1625,"JOINTS_0":1623,"NORMAL":1620,"POSITION":1618,"TANGENT":1619,"TEXCOORD_0":1621,"TEXCOORD_1":1622,"WEIGHTS_0":1624},"indices":1626,"material":15,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":71,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1634,"JOINTS_0":1632,"NORMAL":1629,"POSITION":1627,"TANGENT":1628,"TEXCOORD_0":1630,"TEXCOORD_1":1631,"WEIGHTS_0":1633},"indices":1635,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1136,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1643,"JOINTS_0":1641,"NORMAL":1638,"POSITION":1636,"TANGENT":1637,"TEXCOORD_0":1639,"TEXCOORD_1":1640,"WEIGHTS_0":1642},"indices":1644,"material":16,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":108,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Wing_body_right"},{"primitives":[{"attributes":{"COLOR_0":1652,"JOINTS_0":1650,"NORMAL":1647,"POSITION":1645,"TANGENT":1646,"TEXCOORD_0":1648,"TEXCOORD_1":1649,"WEIGHTS_0":1651},"indices":1653,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":67,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Undercarriage_right"},{"primitives":[{"attributes":{"COLOR_0":1661,"JOINTS_0":1659,"NORMAL":1656,"POSITION":1654,"TANGENT":1655,"TEXCOORD_0":1657,"TEXCOORD_1":1658,"WEIGHTS_0":1660},"indices":1662,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Spoiler_1_right"},{"primitives":[{"attributes":{"COLOR_0":1670,"JOINTS_0":1668,"NORMAL":1665,"POSITION":1663,"TANGENT":1664,"TEXCOORD_0":1666,"TEXCOORD_1":1667,"WEIGHTS_0":1669},"indices":1671,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":164,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FlapsKrueger_2_right"},{"primitives":[{"attributes":{"COLOR_0":1679,"JOINTS_0":1677,"NORMAL":1674,"POSITION":1672,"TANGENT":1673,"TEXCOORD_0":1675,"TEXCOORD_1":1676,"WEIGHTS_0":1678},"indices":1680,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":202,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Flaps_2_right"},{"primitives":[{"attributes":{"COLOR_0":1688,"JOINTS_0":1686,"NORMAL":1683,"POSITION":1681,"TANGENT":1682,"TEXCOORD_0":1684,"TEXCOORD_1":1685,"WEIGHTS_0":1687},"indices":1689,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Aileron_right"},{"primitives":[{"attributes":{"COLOR_0":1697,"JOINTS_0":1695,"NORMAL":1692,"POSITION":1690,"TANGENT":1691,"TEXCOORD_0":1693,"TEXCOORD_1":1694,"WEIGHTS_0":1696},"indices":1698,"material":15,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":71,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1706,"JOINTS_0":1704,"NORMAL":1701,"POSITION":1699,"TANGENT":1700,"TEXCOORD_0":1702,"TEXCOORD_1":1703,"WEIGHTS_0":1705},"indices":1707,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1129,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1715,"JOINTS_0":1713,"NORMAL":1710,"POSITION":1708,"TANGENT":1709,"TEXCOORD_0":1711,"TEXCOORD_1":1712,"WEIGHTS_0":1714},"indices":1716,"material":16,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":122,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1724,"JOINTS_0":1722,"NORMAL":1719,"POSITION":1717,"TANGENT":1718,"TEXCOORD_0":1720,"TEXCOORD_1":1721,"WEIGHTS_0":1723},"indices":1725,"material":18,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Wing_body_left"},{"primitives":[{"attributes":{"COLOR_0":1733,"JOINTS_0":1731,"NORMAL":1728,"POSITION":1726,"TANGENT":1727,"TEXCOORD_0":1729,"TEXCOORD_1":1730,"WEIGHTS_0":1732},"indices":1734,"material":17,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":67,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Undercarriage_left"},{"primitives":[{"attributes":{"COLOR_0":1742,"JOINTS_0":1740,"NORMAL":1737,"POSITION":1735,"TANGENT":1736,"TEXCOORD_0":1738,"TEXCOORD_1":1739,"WEIGHTS_0":1741},"indices":1743,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":22,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Spoiler_1_left"},{"primitives":[{"attributes":{"COLOR_0":1751,"JOINTS_0":1749,"NORMAL":1746,"POSITION":1744,"TANGENT":1745,"TEXCOORD_0":1747,"TEXCOORD_1":1748,"WEIGHTS_0":1750},"indices":1752,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":136,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FlapsKrueger_2_left"},{"primitives":[{"attributes":{"COLOR_0":1760,"JOINTS_0":1758,"NORMAL":1755,"POSITION":1753,"TANGENT":1754,"TEXCOORD_0":1756,"TEXCOORD_1":1757,"WEIGHTS_0":1759},"indices":1761,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":160,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Flaps_2_left"},{"primitives":[{"attributes":{"COLOR_0":1769,"JOINTS_0":1767,"NORMAL":1764,"POSITION":1762,"TANGENT":1763,"TEXCOORD_0":1765,"TEXCOORD_1":1766,"WEIGHTS_0":1768},"indices":1770,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":92,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Aileron_left"},{"primitives":[{"attributes":{"COLOR_0":1778,"JOINTS_0":1776,"NORMAL":1773,"POSITION":1771,"TANGENT":1772,"TEXCOORD_0":1774,"TEXCOORD_1":1775,"WEIGHTS_0":1777},"indices":1779,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":62,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FROST_KRUEGER_L_2"},{"primitives":[{"attributes":{"COLOR_0":1787,"JOINTS_0":1785,"NORMAL":1782,"POSITION":1780,"TANGENT":1781,"TEXCOORD_0":1783,"TEXCOORD_1":1784,"WEIGHTS_0":1786},"indices":1788,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":62,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FROST_KRUEGER_R_2"},{"primitives":[{"attributes":{"COLOR_0":1796,"JOINTS_0":1794,"NORMAL":1791,"POSITION":1789,"TANGENT":1790,"TEXCOORD_0":1792,"TEXCOORD_1":1793,"WEIGHTS_0":1795},"indices":1797,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":483,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FROST_WINGL"},{"primitives":[{"attributes":{"COLOR_0":1805,"JOINTS_0":1803,"NORMAL":1800,"POSITION":1798,"TANGENT":1799,"TEXCOORD_0":1801,"TEXCOORD_1":1802,"WEIGHTS_0":1804},"indices":1806,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":483,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_FROST_WINGR"},{"primitives":[{"attributes":{"COLOR_0":1577,"NORMAL":1574,"POSITION":1572,"TANGENT":1573,"TEXCOORD_0":1575,"TEXCOORD_1":1576},"indices":1578,"material":19,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":272,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Porthole_Blocker_center"},{"primitives":[{"attributes":{"COLOR_0":1814,"JOINTS_0":1812,"NORMAL":1809,"POSITION":1807,"TANGENT":1808,"TEXCOORD_0":1810,"TEXCOORD_1":1811,"WEIGHTS_0":1813},"indices":1815,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":326,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Engine_Left"},{"primitives":[{"attributes":{"COLOR_0":1823,"JOINTS_0":1821,"NORMAL":1818,"POSITION":1816,"TANGENT":1817,"TEXCOORD_0":1819,"TEXCOORD_1":1820,"WEIGHTS_0":1822},"indices":1824,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":326,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x4_Engine_Right"},{"primitives":[{"attributes":{"COLOR_0":1584,"NORMAL":1581,"POSITION":1579,"TANGENT":1580,"TEXCOORD_0":1582,"TEXCOORD_1":1583},"indices":1585,"material":20,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_RegNumber"},{"primitives":[{"attributes":{"COLOR_0":1591,"NORMAL":1588,"POSITION":1586,"TANGENT":1587,"TEXCOORD_0":1589,"TEXCOORD_1":1590},"indices":1592,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3603,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageB"},{"primitives":[{"attributes":{"COLOR_0":1598,"NORMAL":1595,"POSITION":1593,"TANGENT":1594,"TEXCOORD_0":1596,"TEXCOORD_1":1597},"indices":1599,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":787,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Livery_KLM_FuselageA"},{"primitives":[{"attributes":{"COLOR_0":1825,"NORMAL":1826,"POSITION":1827,"TANGENT":1828,"TEXCOORD_0":1829,"TEXCOORD_1":1830},"indices":1831,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1820,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Rudder_center.001"},{"primitives":[{"attributes":{"COLOR_0":1832,"NORMAL":1833,"POSITION":1834,"TANGENT":1835,"TEXCOORD_0":1836,"TEXCOORD_1":1837},"indices":1838,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_Left.002"},{"primitives":[{"attributes":{"COLOR_0":1839,"NORMAL":1840,"POSITION":1841,"TANGENT":1842,"TEXCOORD_0":1843,"TEXCOORD_1":1844},"indices":1845,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_right.002"},{"primitives":[{"attributes":{"COLOR_0":1846,"NORMAL":1847,"POSITION":1848,"TANGENT":1849,"TEXCOORD_0":1850,"TEXCOORD_1":1851},"indices":1852,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":302,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_DoorB.001"},{"primitives":[{"attributes":{"COLOR_0":1853,"NORMAL":1854,"POSITION":1855,"TEXCOORD_0":1856,"TEXCOORD_1":1857},"indices":1858,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":21,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageA.005"},{"primitives":[{"attributes":{"COLOR_0":1859,"NORMAL":1860,"POSITION":1861,"TANGENT":1862,"TEXCOORD_0":1863,"TEXCOORD_1":1864},"indices":1865,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_R_Door01_left.001"},{"primitives":[{"attributes":{"COLOR_0":1866,"NORMAL":1867,"POSITION":1868,"TANGENT":1869,"TEXCOORD_0":1870,"TEXCOORD_1":1871},"indices":1872,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Door01_right.001"},{"primitives":[{"attributes":{"COLOR_0":1873,"NORMAL":1874,"POSITION":1875,"TANGENT":1876,"TEXCOORD_0":1877,"TEXCOORD_1":1878},"indices":1879,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4114,"VertexType":"VTX","VertexVersion":2}}}],"name":"livery_vstab"},{"primitives":[{"attributes":{"COLOR_0":1880,"NORMAL":1881,"POSITION":1882,"TANGENT":1883,"TEXCOORD_0":1884,"TEXCOORD_1":1885},"indices":1886,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":40,"VertexType":"VTX","VertexVersion":2}}}],"name":"Cargo_Door_LIVERYDECAL"},{"primitives":[{"attributes":{"COLOR_0":1887,"NORMAL":1888,"POSITION":1889,"TEXCOORD_0":1890,"TEXCOORD_1":1891},"indices":1892,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":306,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.002"},{"primitives":[{"attributes":{"COLOR_0":1893,"NORMAL":1894,"POSITION":1895,"TANGENT":1896,"TEXCOORD_0":1897,"TEXCOORD_1":1898},"indices":1899,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2812,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.004"},{"primitives":[{"attributes":{"COLOR_0":1900,"NORMAL":1901,"POSITION":1902,"TEXCOORD_0":1903,"TEXCOORD_1":1904},"indices":1905,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":13128,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.001"},{"primitives":[{"attributes":{"COLOR_0":1906,"NORMAL":1907,"POSITION":1908,"TANGENT":1909,"TEXCOORD_0":1910,"TEXCOORD_1":1911},"indices":1912,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":112,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.003"},{"primitives":[{"attributes":{"COLOR_0":1913,"NORMAL":1914,"POSITION":1915,"TANGENT":1916,"TEXCOORD_0":1917,"TEXCOORD_1":1918},"indices":1919,"material":21,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3832,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.008"}],"nodes":[{"name":"HIPS","children":[1,2,6,8,12,14,130,156,160,276,279,281,282,283,286,288,290]},{"translation":[0.00000191479921,9.241079,-36.3505249],"rotation":[0.351553828,0.6135225,0.351553649,0.6135227],"scale":[1,1,0.9999999],"name":"Tail_Rudder_center"},{"translation":[-0.726416945,-1.95301223,23.6319084],"rotation":[0.427315861,0.516586959,-0.473471433,0.5712827],"scale":[1,0.99999994,1],"name":"Door_Right02_center","children":[3,4,5]},{"translation":[0.458667755,-0.0267460346,0.552114964],"rotation":[0.512122333,-0.626890063,-0.3186886,-0.49313],"scale":[1.00000012,1,0.99999994],"name":"Door_Right03_center"},{"translation":[-0.00000381469727,0.000004172325,-0.00000381469727],"rotation":[-0.427316219,-0.516587,0.4734716,0.5712822],"scale":[0.999998748,0.999999762,0.9999996],"mesh":0,"name":"C_Door_right"},{"translation":[0.114679337,-0.11825192,0.424622059],"rotation":[-0.427315861,-0.5165871,0.473471284,0.571282744],"scale":[0.9999999,0.99999994,1],"mesh":1,"name":"Livery_KLM_RGDoor"},{"translation":[-0.731975853,-1.761568,25.1424141],"rotation":[-0.0471240319,0.7069722,-0.06672683,0.7025078],"scale":[1.00000012,1,0.9999999],"name":"Door_Right01_center","children":[7]},{"translation":[-0.7503414,-0.0338468552,0.414570749],"rotation":[-0.396525681,-0.50923115,0.5034293,0.574465036],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Right03_hydraulic01_center"},{"translation":[0.723948359,-1.95345688,23.5944271],"rotation":[0.00493113929,0.705479443,-0.0346209928,0.707867146],"scale":[0.9999999,0.99999994,0.99999994],"name":"Door_Left02_center","children":[9,10,11]},{"translation":[0.3847618,-0.58023,-0.0432002544],"rotation":[0.7827109,0.116333261,0.33318314,0.5126591],"scale":[1.00000012,1.00000072,1.00000048],"name":"Door_Left03_center"},{"translation":[-0.000009536743,0.00000524520874,0.00000381469727],"rotation":[-0.00493113929,-0.705479443,0.034621,0.707867146],"scale":[1,1.00000012,1.00000012],"mesh":2,"name":"C_Door_left"},{"translation":[0.05247307,-0.443425417,0.06258595],"rotation":[-0.004931191,-0.7054795,0.03462106,0.7078671],"scale":[1,1.00000012,1.00000012],"mesh":3,"name":"Livery_KLM_LGDoor"},{"translation":[0.7319975,-1.76198089,25.1398849],"rotation":[-0.0667134,0.7025059,-0.0471375138,0.7069745],"scale":[0.9999999,1.00000012,0.9999999],"name":"Door_Left01_center","children":[13]},{"translation":[-0.7485962,-0.05103779,-0.416645736],"rotation":[-0.00976675749,-0.791484535,0.164192423,0.58864063],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Left03_hydraulic01_center"},{"name":"Wing_left","children":[15,18,127,128]},{"translation":[1.450443,1.40532589,-32.1805077],"rotation":[-0.699695766,0.021218136,0.08916643,0.7085372],"scale":[1,0.99999994,0.99999994],"name":"Trim_Elevator_left","children":[16,17]},{"translation":[4.46584272,4.07697868,0.00621420145],"rotation":[0.7352894,0.102221251,0.101580471,0.662255049],"scale":[0.9999998,0.9999999,0.9999999],"name":"Elevator_left"},{"translation":[2.06527,1.33728981,0.291667283],"rotation":[-0.08916645,-0.7085372,-0.699695766,-0.021218054],"scale":[1.00000012,1,0.99999994],"mesh":4,"name":"LIGHT_ASOBO_Logo_Left"},{"translation":[3.348375,-0.123601377,-1.04428136],"rotation":[0.00473341,0.2594188,0.0519678928,0.964354157],"scale":[1.00000048,1.0000006,1.00000024],"name":"WING_BONE_LEFT_00","children":[19,56,59,62,102,104,106,107,108,110,119,120,121,122,124,126]},{"translation":[8.314296,-0.00000137090683,-5.364418e-7],"rotation":[-8.754432e-8,1.20198811e-8,-3.7252903e-9,1],"scale":[1.00000012,0.99999994,1],"name":"WING_BONE_LEFT_01","children":[20,43,45,47,49,53,54,55]},{"translation":[6.33785439,-0.03361386,-0.00021648407],"rotation":[7.636845e-8,8.58562856e-8,-3.72529e-9,1],"scale":[1.00000024,0.99999994,1.00000012],"name":"WING_BONE_LEFT_02","children":[21,31,32,33,35,36,37,38,39,40,41,42]},{"translation":[6.566532,-0.00651597977,0.002133131],"rotation":[7.497147e-8,6.48724452e-8,-1.63912773e-7,1],"scale":[0.9999999,1,0.9999999],"name":"WING_BONE_LEFT_03","children":[22,27,28,29,30]},{"translation":[5.34786224,0.0235242844,-0.00155836344],"rotation":[-5.220064e-7,-2.883608e-7,3.72529065e-8,1],"scale":[0.99999994,0.99999994,0.999999762],"name":"WING_BONE_LEFT_04","children":[23,24,25,26]},{"translation":[-0.04543686,0.288306952,1.03098464],"rotation":[0.682595,0.02664601,-0.03207462,0.7296063],"scale":[1.00000072,1.00000083,1.00000048],"name":"FlapsKrueger_5_left"},{"translation":[0.660989761,0.0385291576,1.23135138],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":5,"name":"LIGHT_ASOBO_NavigationRed"},{"translation":[5.1418705,0.203219891,-1.33749044],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":6,"name":"LIGHT_ASOBO_NavigationWing_Left"},{"translation":[1.00637817,0.0480079651,1.13949251],"rotation":[-0.05196794,-0.964354157,0.004732894,-0.2594186],"scale":[0.999999464,0.9999996,0.9999998],"mesh":7,"name":"LIGHT_ASOBO_StrobeWing_Left"},{"translation":[-0.2617283,0.11290288,0.0147028565],"rotation":[0.009747561,-0.0007136329,0.9998518,0.0141735217],"scale":[1.00000024,1.00000048,0.99999994],"name":"Wing_Spoiler_2_5_left"},{"translation":[-0.004673004,-0.00971519947,-0.461001784],"rotation":[0.008513641,-0.0145073226,0.00494640833,0.9998463],"scale":[1.00000083,0.9999997,1.00000012],"name":"Aileron_1_left"},{"translation":[3.998932,0.0289180279,-0.344465554],"rotation":[0.008513387,-0.0145070786,0.00494640134,0.999846339],"scale":[1.00000072,0.9999997,1.00000012],"name":"Aileron_2_left"},{"translation":[0.03655243,0.36692667,1.46626389],"rotation":[0.682594657,0.026645815,-0.0320744365,0.729606569],"scale":[1.000001,1.00000048,1.00000048],"name":"FlapsKrueger_4_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Wing_Spoiler_2_3_left"},{"translation":[0.214468,0.01886487,-0.6683294],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Wing_Spoiler_2_2_left"},{"translation":[6.303793,-0.008411646,-0.6237762],"rotation":[-0.00684345234,0.6832026,0.0139844446,0.730062962],"scale":[0.99999994,1.00000036,1.00000024],"name":"Flaps_3_left","children":[34]},{"translation":[-0.111465216,-0.127858162,-2.3174572],"rotation":[0.703286,-0.0672622249,-0.0638457462,0.704832137],"scale":[0.999999464,0.999998331,0.999998868],"name":"flap_hydrolics_19_left"},{"translation":[0.214487076,0.019739747,-0.6686902],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_2_left"},{"translation":[0.204582214,-0.17100656,-0.421413481],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_2_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Hydrolic1_SPOILER_2_3_left"},{"translation":[2.60530663,-0.109168291,-0.32803908],"rotation":[0.00760348374,0.6947899,0.00263366452,0.719167769],"scale":[0.9999992,0.999999344,1.00000107],"name":"Hydrolic2_SPOILER_2_3_left"},{"translation":[4.93304634,-0.0184860229,-0.506818056],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_4_left"},{"translation":[4.92433929,-0.07270765,-0.265460849],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_4_left"},{"translation":[4.93304634,-0.0184860229,-0.506819963],"rotation":[0.00760329235,0.6947918,0.00263375067,0.719166],"scale":[0.999999046,0.9999996,1.000001],"name":"Wing_Spoiler_2_4_left"},{"translation":[-0.2762127,0.432390571,2.03908443],"rotation":[0.682594657,0.0266456641,-0.0320743136,0.729606569],"scale":[1.00000131,0.9999998,1],"name":"FlapsKrueger_3_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Wing_Spoiler_2_1_left","children":[44]},{"translation":[-0.00446128845,0.128245,3.35860157],"rotation":[0.0248633735,-0.8570692,-0.04156179,0.5129199],"scale":[1.00000024,0.9999982,1.00000036],"mesh":8,"skin":0,"name":"Spoiler_2_1_left"},{"translation":[2.86842632,-0.255201161,-1.31981921],"rotation":[-0.00684322044,0.6832027,0.0139845619,0.730062842],"scale":[0.9999999,0.999999762,1.00000012],"name":"Flaps_2_left","children":[46]},{"translation":[-0.08635807,-0.170148611,2.576231],"rotation":[0.729701459,-0.14941819,-0.107722856,0.6584875],"scale":[0.999999762,0.999998748,0.999999464],"name":"flap_hydrolics_18_left"},{"translation":[1.75635815,0.1111089,-1.07744527],"rotation":[-0.00158689881,-0.0932033658,0.008658969,0.995608151],"scale":[0.999999166,0.999999166,0.9999998],"name":"Wing_Spoiler_1_4_left","children":[48]},{"translation":[0,6.556511e-7,-0.00000309944153],"rotation":[-0.0102724442,-0.168275,-0.0600607246,0.983855069],"scale":[1.00002253,1.00000155,0.9999774],"mesh":9,"name":"Spoiler_2_left"},{"translation":[1.266262,-0.357050836,-0.87978965],"rotation":[0.0357552953,-0.105803363,0.0137958294,0.9936483],"scale":[0.999999,0.9999991,0.9999996],"name":"Hydrolic2_Flaps_1_1_left","children":[50,52]},{"translation":[-0.002585411,0.30455035,-0.6518159],"rotation":[-0.0045641847,-0.004072023,-0.000149001367,0.9999813],"scale":[1.00000012,0.99999994,0.99999994],"name":"Flaps_1_1_left","children":[51]},{"translation":[0.5234699,-0.56279856,-0.07738066],"rotation":[-0.0439668447,-0.153274342,-0.0555402227,0.985641539],"scale":[1.0000006,1.0000006,1.00000072],"mesh":10,"name":"FLAPS_1_1_LEFT_1"},{"translation":[-0.0025844574,0.304550469,-0.651815653],"rotation":[0.00173283485,-0.0000230509668,-0.000235040134,0.9999985],"scale":[1.00000024,0.999999642,1],"name":"Hydrolic1_Flaps_1_1_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic1_SPOILER_2_1_left"},{"translation":[4.08401966,-0.29387182,-0.499293],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic2_SPOILER_2_1_left"},{"translation":[-1.92368126,0.48232764,2.70130849],"rotation":[0.6825947,0.0266455319,-0.0320741422,0.729606569],"scale":[1.00000143,1.00000024,1.00000024],"name":"FlapsKrueger_2_left"},{"translation":[1.22019815,0.462972224,3.0046103],"rotation":[0.682609856,0.0262488779,-0.031650465,0.7296253],"scale":[0.9999991,0.999999464,0.9999997],"name":"FlapsKrueger_1_left","children":[57,58]},{"translation":[-0.05399704,-0.430566549,0.5395656],"rotation":[-0.6521564,-0.250215322,0.169562936,0.695221364],"scale":[1.00000107,0.9999992,1.000001],"mesh":11,"name":"FLAPSKRUEGER_1_LEFT_1"},{"translation":[-4.343968,-4.05272341,-0.25176844],"rotation":[-0.652155936,-0.2502154,0.1695626,0.695221841],"scale":[1.00000024,0.9999996,1.00000024],"mesh":12,"name":"FROST_KRUEGER_L_1"},{"translation":[5.42593765,-0.5243263,-3.44257951],"rotation":[-0.047746323,0.516863644,0.00933413,0.854684234],"scale":[0.999999046,0.9999994,0.999999642],"name":"Flaps_1_left","children":[60,61]},{"translation":[0.00532531738,-0.341880441,2.4792347],"rotation":[0.723513842,0.00672937743,0.05795717,0.6878397],"scale":[1.0000006,0.999999642,1],"name":"flap_hydrolics_17_left"},{"translation":[0.05366087,-0.5436171,-0.0224170685],"rotation":[0.066437535,-0.717635334,-0.06825059,0.689875],"scale":[1.00000036,1.00000048,1.00000083],"mesh":13,"name":"FLAPS_1_LEFT_1"},{"translation":[3.86463928,-0.591216445,-3.30302334],"rotation":[0.4957455,-0.06434884,0.8660403,-0.008359094],"scale":[0.9999995,0.9999992,0.9999999],"name":"Wheel_Base_left","children":[63,64,68,75,79,82,83,100,101]},{"translation":[0.238498211,0.6228665,-0.060988903],"rotation":[-0.7381156,-0.653139,0.109995052,0.128436789],"scale":[0.999999762,0.9999995,1.0000006],"name":"Landing_Gear_18_left"},{"translation":[0.3341503,2.01456714,-0.263353348],"rotation":[-0.7060459,0.0425602868,-0.7058247,-0.0387211032],"scale":[0.99999994,1.00000072,0.9999997],"name":"Landing_Gear_33_left","children":[65]},{"translation":[-0.117916107,0.148765087,-0.04537821],"rotation":[-0.984737754,0.008130156,-0.173853,0.0007824776],"scale":[0.9999992,1.00000107,0.9999999],"name":"Landing_Gear_37_left","children":[66,67]},{"translation":[-0.667953968,-0.574824452,-0.007077217],"rotation":[-0.508839,-0.4962332,0.4942222,0.5005796],"scale":[0.9999965,1.00000238,1.00000072],"name":"Landing_Gear_17_left"},{"translation":[-0.220382929,2.38418579e-7,-0.112304211],"rotation":[-4.22581365e-8,-4.030838e-8,3.632154e-8,1],"scale":[0.9999999,1.00000083,0.9999992],"name":"Landing_Gear_31_left"},{"translation":[0.66707325,2.00849175,-0.241577148],"rotation":[-0.7096821,-0.09555769,-0.696978,0.0379722454],"scale":[0.99999994,1.00000072,0.9999998],"name":"Landing_Gear_34_left","children":[69]},{"translation":[-0.09678888,0.1311264,0.0691962242],"rotation":[-0.8397728,-0.406130165,0.352002054,0.07703619],"scale":[0.999999046,1.00000119,0.9999998],"name":"Landing_Gear_38_left","children":[70]},{"translation":[-0.006328702,-0.943199158,0.00322252512],"rotation":[-0.7569836,-0.6488944,0.07686616,0.001832599],"scale":[0.9999984,1.00000346,0.9999983],"name":"Landing_Gear_32_left","children":[71,74]},{"translation":[0,-2.38418579e-7,4.76837158e-7],"rotation":[-1.71364093e-7,-3.35274137e-8,5.960465e-8,1],"scale":[0.99999994,0.9999995,1.00000036],"name":"Landing_Gear_27_left","children":[72,73]},{"translation":[-0.161371708,0.885039,-0.0548084974],"rotation":[0.0121803228,-0.607089639,0.0937830061,0.7889858],"scale":[0.999996841,0.9999983,1.00000453],"name":"Landing_Gear_28_left"},{"translation":[0.0539302826,0.152822375,-0.0107142925],"rotation":[-0.04510645,0.07957641,0.09312738,0.9914436],"scale":[0.9999985,0.9999958,1.00000453],"name":"Landing_Gear_23_left"},{"translation":[-1.28527832,0.0296032429,0.135627866],"rotation":[-0.0498267226,0.05795893,-0.0002607252,0.9970747],"scale":[0.99999404,1.00000179,1.00000525],"name":"Landing_Gear_29_left"},{"translation":[0.276956558,1.2843008,-0.173484325],"rotation":[-0.708400846,-0.000837276748,-0.70367527,-0.0548514463],"scale":[0.9999982,1.00000179,1],"name":"Landing_Gear_20_left","children":[76]},{"translation":[-0.008528233,0.0648286343,-0.0042090416],"rotation":[0.5267732,0.43828246,-0.377283126,0.6229574],"scale":[1,1,0.999999464],"name":"Landing_Gear_21_left","children":[77,78]},{"translation":[-0.00144147873,-0.162924767,-0.0667929649],"rotation":[0.5143717,-0.5180526,0.4851355,0.4813385],"scale":[0.99999845,1.00000036,1.00000072],"name":"Landing_Gear_19_left"},{"translation":[-9.536743e-7,-0.13403368,-0.00518023968],"rotation":[4.84279781e-8,-9.413213e-8,3.74281157e-8,1],"scale":[1.00000012,0.99999994,1.00000048],"name":"Landing_Gear_41_left"},{"translation":[0.2054596,2.51543021,0.0104985237],"rotation":[0.05778034,0.701247156,0.707739532,0.06339251],"scale":[1.00000048,1.0000006,0.9999989],"name":"Landing_Gear_07_left","children":[80,81]},{"translation":[0.713954,-0.125073433,0.177424431],"rotation":[-0.444532126,-0.450933218,0.5486535,0.5459211],"scale":[1.000001,1.00000107,0.999999046],"name":"landing_gear08_left"},{"translation":[0.302407265,-0.1270957,-0.1663909],"rotation":[-0.4445324,-0.450934261,0.548653364,0.545920134],"scale":[0.999999642,1.00000262,0.999999166],"name":"landing_gear01_left"},{"translation":[0.2576151,2.26505852,-0.121347904],"rotation":[-0.7060459,0.0425600223,-0.705824733,-0.0387208536],"scale":[1.00000036,1.00000167,1.00000012],"name":"landing_gear07_left"},{"translation":[0.37328434,3.202888,-0.0094332695],"rotation":[-0.001716404,-0.707084954,-0.00556211546,0.7071046],"scale":[0.9999992,1.00000048,0.99999994],"name":"Landing_Gear_10_left","children":[84,85,86,98,99]},{"translation":[0.02512598,-0.339024067,0.11894083],"rotation":[-0.53749454,-0.5397919,-0.461148649,0.455045432],"scale":[0.9999951,0.999999046,1.00000632],"name":"Landing_Gear_08_left"},{"translation":[-0.106812954,-0.1869855,0.245285511],"rotation":[-0.99862957,-4.82746259e-7,4.917588e-7,-0.05233586],"scale":[1.00000107,1.00000143,0.9999998],"name":"landing_gear05_left"},{"translation":[0,0.00338745117,-0.0809435844],"rotation":[-0.99862957,-1.53951171e-10,-6.803354e-11,-0.0523355044],"scale":[0.99999994,0.999999762,1],"name":"Landing_Gear_09_left","children":[87,88,89,92,95]},{"translation":[0.04093027,-0.241693735,-0.0619039536],"rotation":[-0.500420034,-0.500418,0.499581784,-0.499579519],"scale":[0.9999992,1.000001,1],"name":"Landing_Gear_35_left"},{"translation":[0.0474247932,-0.24166441,0.0612587929],"rotation":[-0.5004198,-0.500417769,0.499582082,-0.499579728],"scale":[0.9999991,1.000001,0.9999999],"name":"Landing_Gear_36_left"},{"translation":[0.09416151,0.312451124,0.243170738],"rotation":[0.5010935,-0.499796718,0.49570924,0.50336957],"scale":[1.00000036,1.00000036,1.00000012],"name":"Landing_Gear_06_left","children":[90,91]},{"translation":[0.414316177,0.08274412,-0.02635479],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear03_left"},{"translation":[0.217025757,0.08245802,-0.258730173],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear02_left"},{"translation":[0.0517382622,-0.00169229507,0.681097031],"rotation":[-8.662515e-7,9.862437e-15,7.1051156500000006e-15,1],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_01_key_left","children":[93,94]},{"translation":[-4.76837158e-7,-4.76837158e-7,0],"rotation":[0.0009201447,-1.25249119e-14,-3.5526872100000003e-15,0.9999996],"scale":[0.999952137,1.000008,1.0000416],"mesh":14,"name":"LWheel_01_blurred"},{"translation":[4.76837158e-7,0,-0.00000190734863],"rotation":[0.00001512464,-0.00444018934,0.00318110641,0.9999851],"scale":[1.00001037,0.999988437,1.00000322],"mesh":15,"name":"LWheel_01_still"},{"translation":[0.03893137,-0.00159454346,-0.7607932],"rotation":[-1,-3.5525578200000003e-15,1.26194213e-14,1.19248815e-8],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_02_key_left","children":[96,97]},{"translation":[0,-2.38418579e-7,0],"rotation":[0.0009060062,-0.004437104,0.00318526686,0.9999847],"scale":[1.00001,0.9999903,1.00000131],"mesh":16,"name":"LWheel_02_blurred"},{"translation":[-4.76837158e-7,0.000005722046,0.000011920929],"rotation":[-1,1.03147613e-7,1.32915375e-7,-1.94402332e-7],"scale":[1.00001013,0.9999891,1.00000179],"mesh":17,"name":"LWheel_02_still"},{"translation":[0.0153021812,-0.474268675,-0.275248051],"rotation":[-0.9986295,-5.223288e-7,0.00000105891706,-0.05233606],"scale":[1.000003,0.999992669,1.00000656],"name":"landing_gear06_left"},{"translation":[-0.106812,-0.491230726,-0.296488762],"rotation":[-0.9992415,-2.31640115e-7,-0.00000165028121,-0.0389420353],"scale":[0.9999983,1.00000632,0.9999982],"name":"landing_gear04_left"},{"translation":[1.22382164,-0.348029673,-0.153943539],"rotation":[0.00730145676,-0.7070985,0.00345581421,0.707069039],"scale":[0.999999464,1.00000012,1],"name":"Landing_Gear_14_left"},{"translation":[-0.0100827217,0.00238108635,0.00680065155],"rotation":[-0.7060458,0.0425598063,-0.705824852,-0.0387206674],"scale":[0.999999464,1.00000048,1.00000072],"mesh":18,"name":"Landing_gear_Root_left"},{"translation":[7.87326145,-0.4715016,-1.4636035],"rotation":[-0.04368639,0.5110596,0.006458442,0.85841006],"scale":[1.0000267,0.9999997,0.9999734],"name":"Spoiler_hydrolics_06_left","children":[103]},{"translation":[0.30559063,0.37230444,0.0004930496],"rotation":[-0.00121602661,0.0246534385,-0.364978939,0.93068856],"scale":[0.999999,0.999998868,1.00000012],"name":"Spoiler_hydrolics_05_left"},{"translation":[2.3125658,-0.8711244,-4.775808],"rotation":[0.6289141,0.328698784,-0.377832532,0.594698846],"scale":[0.999999,1.00000024,0.9999997],"name":"Landing_Gear_15_left","children":[105]},{"translation":[-0.107633591,0.367097139,0.221658289],"rotation":[-0.579571843,0.415744662,-0.575418234,-0.400183469],"scale":[0.9999995,1.000001,0.9999995],"name":"Landing_Gear_16_left"},{"translation":[1.24259949,-1.15350151,-2.95930552],"rotation":[0.479384363,-0.257725239,0.833346248,0.09644882],"scale":[0.9999996,0.999999344,0.9999994],"name":"Door02_left"},{"translation":[3.96934652,-0.816748261,-2.69679284],"rotation":[0.538764954,-0.0777338743,0.838860333,-0.00181733642],"scale":[0.9999999,0.9999993,0.9999994],"name":"Door03_left"},{"translation":[3.8755126,-0.573711038,-3.31409645],"rotation":[-0.96442163,0.05358719,-0.258697569,-0.009747672],"scale":[1,0.9999997,1],"name":"WING_DOOR02_left","children":[109]},{"translation":[0.119513988,-0.0409513861,-0.00462818146],"rotation":[-0.9999388,-0.009707425,0.000407344516,0.00529700425],"scale":[1.00000072,0.9999996,0.9999997],"mesh":19,"name":"Door04_left"},{"translation":[5.868531,-0.6075288,2.41399121],"rotation":[0.007325325,-0.259887159,-0.06454417,0.9634517],"scale":[0.9999994,0.999999344,0.999999642],"name":"Engine_PIVOT_LEFT_1","children":[111,115,117,118]},{"translation":[0.187080383,-1.39431429,7.75744867],"rotation":[-0.706999362,-0.004892461,0.7069988,-0.0167527739],"scale":[1,1,0.99999994],"name":"Reactor_Prop_Still_left","children":[112,113,114]},{"translation":[2.09180021,0,-0.000005722046],"rotation":[1.12611218e-7,-0.7071068,-8.231805e-8,0.7071067],"scale":[0.9999999,0.9999998,0.999998569],"mesh":20,"name":"1_blurred_left"},{"translation":[2.09180164,-3.57627869e-7,-0.000005722046],"rotation":[-0.7071002,-0.00308519369,-0.707099855,-0.00308541069],"scale":[1.00000012,1,0.9999999],"mesh":21,"name":"1_slow_left"},{"translation":[2.091803,0.00000238418579,-9.536743e-7],"rotation":[-0.7071068,-4.206454e-8,0.7071068,1.42821847e-7],"scale":[0.9999995,0.99999994,0.999999762],"mesh":22,"name":"1_still_left"},{"translation":[0.185770988,-1.42669415,2.07120037],"rotation":[-0.00841917,-0.000007856129,0.0153245768,0.9998472],"scale":[0.997038,1.00016522,1.00284588],"name":"Reactor_Back_left","children":[116]},{"translation":[9.536743e-7,-8.34465e-7,2.90572643e-7],"rotation":[-5.23868771e-9,-1.99391472e-8,-9.537325e-8,1],"scale":[0.9999994,1.0000006,0.999999762],"mesh":23,"name":"Engine_Duct_left"},{"translation":[0.188099861,-1.456358,4.35355],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":24,"name":"FX_EXHAUST_LEFT"},{"translation":[0.170079231,-1.13339186,4.487426],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":25,"name":"Livery_KLM_EngA"},{"translation":[3.62843657,-0.5176573,-4.124836],"rotation":[-0.0436866172,0.511059642,0.00645813253,0.8584101],"scale":[0.999999642,0.999999046,0.9999993],"name":"Spoiler_1_1_left"},{"translation":[7.982996,-0.0362906456,-1.76054883],"rotation":[-0.0436880365,0.511059463,0.006455744,0.8584102],"scale":[1.00002742,0.9999997,0.999972761],"name":"Spoiler_1_3_left"},{"translation":[5.91475,-0.2239846,-2.897406],"rotation":[-0.0452547148,0.504299164,0.005931459,0.862322],"scale":[1.000028,0.9999999,0.9999706],"name":"Spoiler_1_2_left"},{"translation":[5.84781456,-0.608062744,-2.62398887],"rotation":[-0.043685995,0.5110597,0.006459456,0.85841006],"scale":[0.9999993,0.999998748,0.9999998],"name":"Spoiler_hydrolics_04_left","children":[123]},{"translation":[0.266388416,0.3188628,-0.007379055],"rotation":[-0.00605567638,0.0124739613,0.4357108,0.899979949],"scale":[1.00000525,1.00001335,0.9999815],"name":"Spoiler_hydrolics_03_left"},{"translation":[3.50820732,-0.7972355,-3.85419559],"rotation":[-0.04368655,0.511059642,0.006458112,0.8584101],"scale":[0.9999995,0.999999,0.9999994],"name":"Spoiler_hydrolics_01_left","children":[125]},{"translation":[0.2856431,0.290298223,0.00000190734863],"rotation":[0.6595856,0.287899733,0.275730371,0.637207448],"scale":[1.00000024,1.00000024,1.00000012],"name":"Spoiler_hydrolics_02_left"},{"translation":[12.9740458,-1.4153657,6.55199146],"rotation":[0.00732529536,-0.2598874,-0.06454403,0.963451564],"scale":[1.00000036,1.00000012,1.00000107],"name":"Engine_PIVOT_LEFT_2"},{"translation":[0.317629337,-0.32808125,-5.10369],"rotation":[-0.997071862,-0.0764705241,2.86940356e-8,-1.9079441e-7],"scale":[0.99999994,0.99999994,1],"name":"Door03_Hydraulic01_left"},{"translation":[0.6497253,-2.102611,-5.016356],"rotation":[0.490909845,0.490909845,-0.508927763,0.508927941],"name":"WING_DOOR03_left","children":[129]},{"translation":[0.07994127,0.32234937,-0.158693552],"name":"Door03_Hydraulic02_left"},{"translation":[0,-1.84435129,23.1178951],"rotation":[0.0270323772,0,0,0.999634564],"name":"Landing_Gear_NosePart16_center","children":[131,133,135,144,146,147,149,151,152,153,154,155]},{"translation":[0.226090789,-0.9272857,0.305862427],"rotation":[-0.0270318538,0.00418857532,-0.00003651558,0.9996258],"scale":[1.00000012,1.00000024,0.9999999],"name":"Landing_Gear_NosePart10_center","children":[132]},{"translation":[-0.0236788,0.00500941277,-0.220270157],"rotation":[0.0352128372,0.09999999,-0.00323027675,0.994358957],"scale":[1,1,0.99999994],"name":"Landing_Gear_NosePart10_center001"},{"translation":[-0.229184151,-0.9398352,0.313922882],"rotation":[-0.0270323772,-4.13823678e-8,-1.43921968e-8,0.999634564],"scale":[1.00000012,1.00000024,1.00000024],"name":"Landing_Gear_NosePart09_center","children":[134]},{"translation":[0.0319646746,0.0176465511,-0.229705811],"rotation":[0.0384532958,-0.0858134,-0.00141277455,0.995567858],"scale":[1.00000012,0.9999998,1.00000024],"name":"Landing_Gear_NosePart09_center001"},{"translation":[-3.14321369e-9,-0.9186151,-0.05517769],"rotation":[-2.33349866e-7,-0.1679142,-4.27881552e-8,0.985801637],"scale":[1.00000012,1.00000012,0.9999998],"name":"Gear_Wheel_center","children":[136,141]},{"translation":[0.025592804,-0.410430431,0.0496406555],"rotation":[0.000342083629,0.205400854,0.009056285,0.978636],"scale":[1.00000012,0.9999996,0.9999997],"name":"Landing_Gear_NosePart13_center","children":[137,140]},{"translation":[-0.005656481,-0.0457814932,-0.172786713],"rotation":[0.7665125,-1.98397316e-7,1.3196258e-7,0.6422294],"scale":[0.9999999,1.00000072,1.00000024],"name":"Landing_Gear_NosePart14_center","children":[138,139]},{"translation":[0.008430719,-0.368497849,-0.329550982],"rotation":[-0.7748584,-0.00707002264,-0.005481687,0.632071555],"scale":[0.99999994,0.999999464,1.00000048],"name":"gear_pipe_point_3_center"},{"translation":[0.002431035,0.0204620361,-0.0752792358],"rotation":[-0.7826159,-0.00700203935,-0.00556876557,0.6224405],"scale":[1.00000012,1,1.00000012],"name":"gear_pipe_point_4_center"},{"translation":[-0.00845921,-0.307320476,-0.00150299072],"rotation":[0.000004078425,-0.0004563113,-0.008934856,0.99996],"scale":[0.9999999,1.00000012,0.99999994],"name":"Wheel_center"},{"translation":[-0.0414872169,0.002967,-0.12130928],"rotation":[-0.5139819,-0.64576596,0.48561582,-0.2880733],"scale":[1.00000072,1.00000012,0.999999762],"name":"Landing_Gear_NosePart15_center","children":[142,143]},{"translation":[0.289751053,0.00052285206,-0.0499343872],"rotation":[-0.5000002,-0.500000358,0.499999583,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_1_center"},{"translation":[0.212629318,0.0005228169,-0.05453205],"rotation":[-0.500000238,-0.5000002,0.499999732,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_5_center"},{"translation":[0.2793044,-0.5019189,-0.021528244],"rotation":[0.63214463,-0.3321479,-0.34455055,0.609389842],"scale":[1.00000024,0.99999994,0.9999997],"name":"Door_Left02_hydraulic02_center","children":[145]},{"translation":[0.021283865,0.03582573,-0.04520595],"rotation":[0.0583817624,0.4792682,-0.534093261,0.6940015],"scale":[1.00000012,1.00000024,0.99999994],"name":"Door_Left02_hydraulic01_center"},{"translation":[-0.000778198242,-0.671867967,0.21672821],"rotation":[-0.00007376257,-0.8692236,0.494419247,0.0000236660471],"name":"Landing_Gear_NosePart07_center"},{"translation":[-0.5013134,-0.144065619,0.170331955],"rotation":[0.429701567,0.4297139,-0.5615561,0.56156677],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart04_center","children":[148]},{"translation":[0.00000190734863,1.1920929e-7,-1.76764107],"rotation":[0,0,2.27373675e-13,1],"name":"Landing_Gear_NosePart05_center"},{"translation":[-0.2793044,-0.501918554,-0.02152443],"rotation":[-0.593563855,-0.336227626,0.3405706,0.647027552],"scale":[0.99999994,1,1],"name":"Door_Right02_hydraulic02_center","children":[150]},{"translation":[-0.021283865,-0.0358276367,0.0452079773],"rotation":[0.04388803,0.429552048,-0.5823844,0.6887579],"scale":[0.99999994,1.00000048,0.99999994],"name":"Door_Right02_hydraulic01_center"},{"translation":[0,-3.57627869e-7,0],"rotation":[-0.0270323772,0,0,0.999634564],"mesh":26,"name":"LANDING_GEAR_NOSEPART16_CENTER_1"},{"translation":[0.312226921,-0.197624326,0.1374836],"rotation":[2.220446e-16,-1,0,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":27,"name":"LIGHT_ASOBO_LandingNose_Left"},{"translation":[-0.306189775,-0.196983218,0.138235092],"rotation":[2.220446e-16,-1,0,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":28,"name":"LIGHT_ASOBO_LandingNose_Right"},{"translation":[0.174989372,-0.328628778,0.1374855],"rotation":[1.0657997500000001e-15,-1,1.11758753e-8,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":29,"name":"LIGHT_ASOBO_Taxi_Left"},{"translation":[-0.169818163,-0.327804923,0.138235092],"rotation":[1.0657997500000001e-15,-1,1.11758753e-8,7.54979e-8],"scale":[1,0.999999642,0.999999642],"mesh":30,"name":"LIGHT_ASOBO_Taxi_Right"},{"translation":[0.007133007,-0.478288829,23.7857571],"rotation":[0.00000354928,-0.7505983,0.6607588,-0.0000114836384],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart06_center","children":[157]},{"translation":[0,-0.09894562,1.36242163],"rotation":[0.009296398,-4.547671e-13,5.11612942e-13,0.9999568],"name":"Landing_Gear_NosePart02_center","children":[158,159]},{"translation":[0,0.27699852,0.04716277],"rotation":[0.1933725,0,-1.158739e-13,0.9811255],"name":"Landing_Gear_NosePart01_center"},{"translation":[1.49011612e-8,0.07812691,-0.0590516329],"rotation":[0.0038900394,-0.00000305861067,0.0000105023964,0.99999243],"scale":[0.9999999,0.9999996,1.00000036],"name":"Landing_Gear_NosePart03_center"},{"rotation":[-1,0,0,-1.62920685e-7],"name":"Wing_right","children":[161,162,165,274]},{"translation":[-0.317629337,0.32808125,5.10369],"rotation":[-0.997071862,-0.0764705241,1.94817673e-8,-1.84558758e-7],"scale":[0.9999999,1.00000024,0.9999999],"name":"Door03_Hydraulic01_right"},{"translation":[-1.450443,-1.40532589,32.1805077],"rotation":[-0.6996959,0.02121799,0.08916648,0.7085371],"scale":[1.00000012,1.00000024,0.9999999],"name":"Trim_Elevator_right","children":[163,164]},{"translation":[-4.46584368,-4.07698631,-0.00621521473],"rotation":[0.7352896,0.102219775,0.1015787,0.662255347],"scale":[1.0000006,1.00000024,1.0000006],"name":"Elevator_right"},{"translation":[-2.0646615,-1.33726311,-0.2853936],"rotation":[-0.0212182011,-0.699696064,0.7085369,0.08916638],"scale":[0.999999464,1.00000024,0.99999994],"mesh":31,"name":"LIGHT_ASOBO_Logo_Right"},{"translation":[-3.348375,0.123601377,1.04428136],"rotation":[0.004733401,0.259418637,0.0519678779,0.964354157],"scale":[1,1,0.9999999],"name":"WING_BONE_RIGHT_00","children":[166,167,168,177,180,183,185,186,187,188,190,192,194,231,233,273]},{"translation":[-1.24259973,1.15350306,2.95930767],"rotation":[0.479384154,-0.2577262,0.833346,0.09644934],"scale":[1.0000006,1.00000012,0.99999994],"name":"Door02_right"},{"translation":[-3.96934962,0.816749454,2.69679642],"rotation":[0.538764834,-0.07773489,0.8388602,-0.001816788],"scale":[1.0000006,1.00000048,1.00000012],"name":"Door03_right"},{"translation":[-5.868534,0.60752964,-2.41399217],"rotation":[0.00732532656,-0.259887159,-0.064544186,0.9634517],"scale":[1,1.00000012,1.00000012],"name":"Engine_PIVOT_RIGHT_1","children":[169,171,175,176]},{"translation":[-0.1857748,1.42669618,-2.070343],"rotation":[-0.00838642847,-3.57871585e-7,0.0153054669,0.9998477],"scale":[0.999999762,1.00000048,1],"name":"Reactor_Back_right","children":[170]},{"translation":[0.00000381469727,0.0000147819519,-0.0008557439],"rotation":[-1,1.11758524e-7,5.40167875e-8,1.26659828e-7],"scale":[1.00000107,1.00000143,1.00000072],"mesh":32,"name":"Engine_Duct_right"},{"translation":[-0.187087059,1.39431691,-7.757461],"rotation":[-0.70699966,-0.004893535,0.7069985,-0.0167538542],"scale":[1.00000036,0.9999999,0.9999994],"name":"Reactor_Prop_Still_right","children":[172,173,174]},{"translation":[-2.09181356,0.00000262260437,0.000002861023],"rotation":[0.707106352,-0.00000134672428,0.7071072,-0.00000114838178],"scale":[1.00000072,1.00000012,0.9999983],"mesh":33,"name":"2_blurred_right"},{"translation":[-2.091815,0.000002861023,0.000002861023],"rotation":[0.00308636879,-0.7071007,-0.00308673177,0.7070994],"scale":[1.00000072,1.00000012,0.999999762],"mesh":34,"name":"2_slow_right"},{"translation":[-2.09181643,2.38418579e-7,0.000008583069],"rotation":[0.00000142476176,0.707106352,0.00000106651316,0.7071072],"scale":[1.00000107,0.99999994,0.9999989],"mesh":35,"name":"2_still_right"},{"translation":[-0.188096046,1.45635879,-4.35354853],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":36,"name":"FX_EXHAUST_RIGHT"},{"translation":[-0.172901154,1.133304,-4.48742437],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":37,"name":"Livery_KLM_EngB"},{"translation":[-1.22019887,-0.462972879,-3.0046134],"rotation":[0.682610035,0.0262489542,-0.0316506177,0.7296251],"scale":[1.00000012,1.00000072,1.00000048],"name":"FlapsKrueger_1_right","children":[178,179]},{"translation":[0.0344409943,0.430824518,-0.540390551],"rotation":[0.6952215,0.169562757,0.250215232,0.652156353],"scale":[0.999999166,0.99999845,0.999999],"mesh":38,"name":"FLAPSKRUEGER_1_RIGHT_1"},{"translation":[4.344075,4.047225,0.2517715],"rotation":[0.695221364,0.16956304,0.250215232,0.6521565],"scale":[0.9999997,0.9999996,0.9999996],"mesh":39,"name":"FROST_KRUEGER_R_1"},{"translation":[-5.42594433,0.5245416,3.44597554],"rotation":[-0.04774639,0.5168637,0.00933412,0.854684234],"scale":[1.00000024,1.0000006,1.0000006],"name":"Flaps_1_right","children":[181,182]},{"translation":[-0.005323887,0.341879964,-2.47923374],"rotation":[0.7235138,0.006729279,0.05795712,0.687839746],"scale":[0.9999998,0.9999999,1.00000012],"name":"flap_hydrolics_17_right"},{"translation":[-0.06590319,0.5249982,0.00364017487],"rotation":[0.6898752,-0.0682501,0.7176352,-0.0664377958],"scale":[0.9999999,1,1.00000012],"mesh":40,"name":"FLAPS_1_RIGHT_1"},{"translation":[-2.31256652,0.8711257,4.775813],"rotation":[0.6289141,0.328698874,-0.377832651,0.5946988],"scale":[1.00000024,1.00000036,1.00000048],"name":"Landing_Gear_15_right","children":[184]},{"translation":[0.107634544,-0.3670988,-0.2216587],"rotation":[-0.579570949,0.415745556,-0.575418353,-0.400183737],"scale":[1.00000083,1.000002,0.99999845],"name":"Landing_Gear_16_right"},{"translation":[-3.62844014,0.5168278,4.12484026],"rotation":[-0.04368652,0.5110595,0.00645816652,0.8584102],"scale":[0.9999996,1.0000006,1.00000012],"name":"Spoiler_1_1_right"},{"translation":[-5.914755,0.223984957,2.89741],"rotation":[-0.04528014,0.5080569,0.00573390163,0.860113442],"scale":[0.9999406,1.00000036,1.00005925],"name":"Spoiler_1_2_right"},{"translation":[-7.98300171,0.0362910032,1.76055336],"rotation":[-0.0436879,0.5110594,0.00645576557,0.8584102],"scale":[0.999996543,0.999997437,1.00000763],"name":"Spoiler_1_3_right"},{"translation":[-3.50821,0.7972367,3.85419965],"rotation":[-0.0436865352,0.5110595,0.00645813067,0.8584102],"scale":[1.0000006,1.00000012,1.00000024],"name":"Spoiler_hydrolics_01_right","children":[189]},{"translation":[-0.2856431,-0.2902993,0.00000143051147],"rotation":[0.659585953,0.287899345,0.27573052,0.6372072],"scale":[1.00000048,1.00000048,1.00000083],"name":"Spoiler_hydrolics_02_right"},{"translation":[-5.847822,0.6080638,2.62399244],"rotation":[-0.0436855778,0.5110596,0.006460557,0.8584101],"scale":[0.9999967,0.9999998,1.000003],"name":"Spoiler_hydrolics_04_right","children":[191]},{"translation":[-0.266388416,-0.318862677,0.00736522675],"rotation":[-0.00608323934,0.0124876853,0.435711771,0.8999791],"scale":[0.9999625,1.00002575,1.00001311],"name":"Spoiler_hydrolics_03_right"},{"translation":[-7.873269,0.471502423,1.46360469],"rotation":[-0.043686796,0.5110597,0.00645971065,0.85841006],"scale":[1.00001478,1,0.9999853],"name":"Spoiler_hydrolics_06_right","children":[193]},{"translation":[-0.3056016,-0.3723048,-0.000500679],"rotation":[-0.00120041845,0.0246579,-0.3649802,0.9306879],"scale":[0.999999464,1.00000393,0.999998748],"name":"Spoiler_hydrolics_05_right"},{"translation":[-8.314303,0.00000125169754,0.00000160932541],"rotation":[-8.894129e-8,1.06228981e-7,-5.58793456e-9,1],"scale":[1,1.00000048,1],"name":"WING_BONE_RIGHT_01","children":[195,197,198,202,203,226,228,230]},{"translation":[-2.87029362,0.254272521,1.324141],"rotation":[-0.006843229,0.6832025,0.0139845656,0.730062962],"scale":[1.00000024,0.99999994,0.999999762],"name":"Flaps_2_right","children":[196]},{"translation":[0.08635962,0.170149446,-2.57623672],"rotation":[0.7297014,-0.149418682,-0.107723,0.658487439],"scale":[1.00000083,0.999999,1.00000119],"name":"flap_hydrolics_18_right"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic1_SPOILER_2_1_right"},{"translation":[-1.26626873,0.35705173,0.8797917],"rotation":[0.0357553177,-0.105803348,0.0137958387,0.9936483],"scale":[1.0000006,1.00000012,0.999999642],"name":"Hydrolic2_Flaps_1_1_right","children":[199,201]},{"translation":[0.00258350372,-0.3061065,0.6527736],"rotation":[-0.00456417026,-0.004072003,-0.000149014391,0.9999813],"scale":[1.00000036,0.99999994,1.00000036],"name":"Flaps_1_1_right","children":[200]},{"translation":[-0.67619133,0.5609306,0.008673191],"rotation":[-0.985641539,0.0555401742,-0.153274238,-0.0439666323],"scale":[0.9999994,1.0000006,1.000001],"mesh":41,"name":"FLAPS_1_1_RIGHT_1"},{"translation":[0.0025806427,-0.3045506,0.651814461],"rotation":[0.00173285324,-0.000023034203,-0.000235056825,0.9999985],"scale":[1.00000036,1.00000012,0.99999994],"name":"Hydrolic1_Flaps_1_1_right"},{"translation":[-4.084032,0.293872416,0.4992954],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic2_SPOILER_2_1_right"},{"translation":[-6.337867,0.0336145163,0.000215947628],"rotation":[7.916242e-8,9.260839e-8,-3.539026e-8,1],"scale":[0.99999994,0.9999999,1.00000012],"name":"WING_BONE_RIGHT_02","children":[204,206,207,208,209,210,211,212,222,223,224,225]},{"translation":[-6.30582237,0.00921285152,0.6295024],"rotation":[-0.006843452,0.683202565,0.0139844473,0.730062962],"scale":[1.00000012,1.00000048,1.0000006],"name":"Flaps_3_right","children":[205]},{"translation":[0.111464262,0.127858639,2.31747055],"rotation":[0.703286,-0.06726212,-0.06384566,0.704832137],"scale":[1.00000191,0.999998868,0.999999642],"name":"flap_hydrolics_19_right"},{"translation":[-0.2144928,-0.019741416,0.668693066],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic1_SPOILER_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic1_SPOILER_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic1_SPOILER_2_4_right"},{"translation":[-0.2045784,0.171005368,0.421416372],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic2_SPOILER_2_2_right"},{"translation":[-2.60531425,0.109168172,0.328037649],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic2_SPOILER_2_3_right"},{"translation":[-4.924349,0.07270646,0.26546222],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic2_SPOILER_2_4_right"},{"translation":[-6.56654739,0.00651466846,-0.00213181973],"rotation":[7.636844e-8,-3.37604327e-8,-2.71946135e-7,1],"scale":[1.00000036,1.00000024,1.00000012],"name":"WING_BONE_RIGHT_03","children":[213,214,215,220,221]},{"translation":[0.00313949585,0.007908225,0.4665305],"rotation":[0.00851354748,-0.0145073244,0.00494639948,0.999846339],"scale":[1.0000006,1.00000048,1.00000072],"name":"Aileron_1_right"},{"translation":[-3.99923325,-0.02995944,0.348880529],"rotation":[0.008513322,-0.0145071112,0.004946362,0.999846339],"scale":[1.0000006,0.9999998,1.00000048],"name":"Aileron_2_right"},{"translation":[-5.34786224,-0.0235247612,0.00155442953],"rotation":[-5.206093e-7,-2.95578445e-7,4.65661358e-8,1],"scale":[1.00000012,0.999999762,1.00000024],"name":"WING_BONE_RIGHT_04","children":[216,217,218,219]},{"translation":[0.045425415,-0.2883048,-1.03098571],"rotation":[0.682595,0.0266460124,-0.0320746265,0.7296063],"scale":[0.9999999,1.00000083,1.0000006],"name":"FlapsKrueger_5_right"},{"translation":[-0.6659126,-0.038210392,-1.22074091],"rotation":[-0.259418547,0.00473311124,0.964354157,0.0519677028],"scale":[0.9999999,0.99999994,0.9999999],"mesh":42,"name":"LIGHT_ASOBO_NavigationGreen"},{"translation":[-5.1413517,-0.203313112,1.33965993],"rotation":[-0.259418547,0.00473311124,0.964354157,0.0519677028],"scale":[0.9999999,0.99999994,0.9999999],"mesh":43,"name":"LIGHT_ASOBO_NavigationWing_Right"},{"translation":[-0.9967365,-0.0491733551,-1.130012],"rotation":[-0.2594183,0.004733398,0.9643543,0.05196754],"scale":[0.9999999,0.99999994,0.9999998],"mesh":44,"name":"LIGHT_ASOBO_StrobeWing_Right"},{"translation":[0.2617283,-0.112903118,-0.0147076249],"rotation":[0.009750019,-0.0007162161,0.9998518,0.0141735421],"scale":[1.00000048,1.0000006,1.00000036],"name":"Wing_Spoiler_2_5_right"},{"translation":[-0.0365695953,-0.3669269,-1.4662689],"rotation":[0.682594657,0.0266457219,-0.0320744,0.7296066],"scale":[0.99999994,1.00000048,1],"name":"FlapsKrueger_4_right"},{"translation":[-0.214468,-0.018866539,0.668332756],"rotation":[0.00760329748,0.6947902,0.0026336154,0.7191675],"scale":[0.9999999,1.00000107,1.00000012],"name":"Wing_Spoiler_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.00760334125,0.6947902,0.00263350061,0.7191675],"scale":[0.9999999,1.0000006,0.9999999],"name":"Wing_Spoiler_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603228,0.6947921,0.00263381517,0.7191656],"scale":[0.9999999,1.00000072,0.9999999],"name":"Wing_Spoiler_2_4_right"},{"translation":[0.2762146,-0.432391644,-2.03908229],"rotation":[0.6825947,0.0266456585,-0.0320743,0.729606569],"scale":[1.00000083,1.00000048,1.00000048],"name":"FlapsKrueger_3_right"},{"translation":[-1.75636578,-0.111109138,1.0774467],"rotation":[-0.00158696191,-0.0932033658,0.008658969,0.995608151],"scale":[1.00002742,0.999999762,0.9999723],"name":"Wing_Spoiler_1_4_right","children":[227]},{"translation":[0.0000190734863,-0.00000178813934,0.000004529953],"rotation":[-0.983855069,0.06006053,-0.168275133,-0.0102719525],"scale":[1.00000036,1.00000119,1.00000215],"mesh":45,"name":"Spoiler_2_right"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.007352814,0.694946051,0.00291815167,0.71901834],"scale":[1.00000024,1,1.0000006],"name":"Wing_Spoiler_2_1_right","children":[229]},{"translation":[0.00445753336,-0.128248334,-3.35856247],"rotation":[0.5129199,-0.04156178,0.8570692,-0.024863895],"scale":[0.9999995,0.999999464,1.00000036],"mesh":46,"skin":1,"name":"Spoiler_2_1_right"},{"translation":[1.923686,-0.482328415,-2.70131159],"rotation":[0.6825947,0.026645679,-0.03207439,0.729606569],"scale":[0.9999993,1.00000012,1.00000036],"name":"FlapsKrueger_2_right"},{"translation":[-3.87551522,0.573712,3.3141005],"rotation":[-0.96442163,0.0535871238,-0.258697569,-0.009747602],"scale":[1.00000048,0.9999999,0.999999762],"name":"WING_DOOR02_right","children":[232]},{"translation":[-0.09166145,-0.014839083,0.04367876],"rotation":[-0.0269495845,0.00046797446,-0.000238912427,0.99963665],"scale":[1.00000107,1.00000155,1.00000119],"mesh":47,"name":"Door04_right"},{"translation":[-3.864641,0.5912173,3.303027],"rotation":[0.4957456,-0.0643499047,0.86604017,-0.008358427],"scale":[1.00000072,0.99999994,0.9999998],"name":"Wheel_Base_right","children":[234,237,254,255,256,260,264,271,272]},{"translation":[-0.205456257,-2.515431,-0.0104970932],"rotation":[0.0577802733,0.7012474,0.7077393,0.0633924752],"scale":[1.00000012,1.00000191,0.99999845],"name":"Landing_Gear_07_right","children":[235,236]},{"translation":[-0.302409172,0.1270957,0.16639185],"rotation":[-0.444534153,-0.450937033,0.5486514,0.545918345],"scale":[1.0000006,1.00000083,0.999999166],"name":"landing_gear01_right"},{"translation":[-0.7139559,0.12507534,-0.177423239],"rotation":[-0.444530368,-0.45093137,0.548656,0.545921445],"scale":[1.00000155,1.00000143,0.99999845],"name":"landing_gear08_right"},{"translation":[-0.373281956,-3.21106887,0.009433746],"rotation":[-0.00171652681,-0.707084954,-0.00556244049,0.7071046],"scale":[1.00000024,1.00000048,1.00000083],"name":"Landing_Gear_10_right","children":[238,239,251,252,253]},{"translation":[-0.0251255035,0.339024067,-0.118941784],"rotation":[-0.5374941,-0.539788663,-0.461154252,0.4550439],"scale":[0.999981344,0.9999963,1.00002265],"name":"Landing_Gear_08_right"},{"translation":[4.76837158e-7,-0.00338840485,0.08094406],"rotation":[-0.99862957,-4.432793e-8,3.406478e-7,-0.05233552],"scale":[0.999999762,1.00000036,1.00000024],"name":"Landing_Gear_09_right","children":[240,243,244,245,248]},{"translation":[-0.09416199,-0.312451124,-0.243170738],"rotation":[0.501094043,-0.499797136,0.495709479,0.5033683],"scale":[1.00000107,1.0000006,1.00000012],"name":"Landing_Gear_06_right","children":[241,242]},{"translation":[-0.217030048,-0.08245611,0.2587304],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear02_right"},{"translation":[-0.414316177,-0.08274174,0.0263545513],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear03_right"},{"translation":[-0.04093027,0.24169302,0.0619034767],"rotation":[-0.5004197,-0.5004178,0.4995824,-0.4995793],"scale":[1.00000024,1.00000048,1.00000072],"name":"Landing_Gear_35_right"},{"translation":[-0.04742527,0.2416637,-0.06125927],"rotation":[-0.5004193,-0.500418067,0.499582171,-0.499579877],"scale":[1.00000048,0.99999845,1.00000107],"name":"Landing_Gear_36_right"},{"translation":[-0.0517377853,-0.00623846054,-0.681098],"rotation":[-8.662516e-7,-1.002765e-14,2.13181821e-13,1],"scale":[1.00007963,0.999921441,0.999999166],"name":"tire_01_key_right","children":[246,247]},{"translation":[4.76837158e-7,4.76837158e-7,4.76837158e-7],"rotation":[0.000920144666,2.69792046e-8,-2.67717026e-9,0.9999996],"mesh":48,"name":"RWheel_01_blurred"},{"translation":[9.536743e-7,-0.008128881,-0.000937461853],"rotation":[0.0000154558329,-0.00443635741,0.00316293933,0.999985158],"scale":[0.999991357,1.00001156,0.9999996],"mesh":49,"name":"RWheel_01_still"},{"translation":[-0.0389318466,-0.006542444,0.759859562],"rotation":[-1,-9.94863236e-14,9.66441757e-14,1.19248815e-8],"scale":[1.000081,0.9999192,0.999999642],"name":"tire_02_key_right","children":[249,250]},{"translation":[-4.76837158e-7,2.38418579e-7,0],"rotation":[0.0009060062,-0.00443710433,0.003185267,0.9999847],"scale":[0.99999994,1,1],"mesh":50,"name":"RWheel_02_blurred"},{"translation":[-0.0000514984131,0.008122206,0.000939846039],"rotation":[-1,0.0000212657651,0.00000359690239,-1.539263e-8],"scale":[0.999991536,1.00001192,0.9999965],"mesh":51,"name":"RWheel_02_still"},{"translation":[0.106811047,0.491230726,0.296488762],"rotation":[-0.9992415,0.00000166204075,-0.00000249417667,-0.0389420055],"scale":[1.00004983,0.9999272,1.000025],"name":"landing_gear04_right"},{"translation":[0.106812477,0.186984062,-0.245285988],"rotation":[-0.99862957,-5.59745729e-7,9.06202558e-7,-0.0523358621],"scale":[1.00000143,1,0.99999994],"name":"landing_gear05_right"},{"translation":[-0.0153021812,0.474267721,0.275247574],"rotation":[-0.998629451,-4.54888777e-7,0.000002030508,-0.0523382],"scale":[1.00000143,1.0000006,0.9999997],"name":"landing_gear06_right"},{"translation":[-1.22381783,0.348030329,0.153943539],"rotation":[0.00730130542,-0.7070985,0.00345573318,0.707069039],"scale":[0.99999994,1.00000036,1.00000048],"name":"Landing_Gear_14_right"},{"translation":[-0.2384944,-0.622866631,0.0609898567],"rotation":[-0.738115668,-0.6531392,0.109994896,0.128436044],"scale":[1,1.00000024,1],"name":"Landing_Gear_18_right"},{"translation":[-0.27695322,-1.28430152,0.173485756],"rotation":[-0.708400846,-0.000836311956,-0.7036754,-0.05485084],"scale":[1.00000143,1,0.9999993],"name":"Landing_Gear_20_right","children":[257]},{"translation":[0.008528233,-0.06482935,0.00420856476],"rotation":[0.526773155,0.4382799,-0.377282143,0.622959852],"scale":[1.0000037,1.00000608,0.9999915],"name":"Landing_Gear_21_right","children":[258,259]},{"translation":[0.00144290924,0.1629262,0.06679213],"rotation":[0.5143709,-0.5180562,0.4851327,0.481338263],"scale":[0.999991357,1.00000036,1.00000954],"name":"Landing_Gear_19_right"},{"translation":[0.00000238418579,0.134036064,0.00517952442],"rotation":[1.680337e-8,-3.11589247e-7,3.5556468e-8,1],"scale":[0.9999948,1.00000739,0.9999984],"name":"Landing_Gear_41_right"},{"translation":[-0.334146976,-2.01456738,0.263353348],"rotation":[-0.7060457,0.0425617956,-0.7058248,-0.03872242],"scale":[1.000001,1.00000024,1.00000072],"name":"Landing_Gear_33_right","children":[261]},{"translation":[0.117917061,-0.148765087,0.04537964],"rotation":[-0.984737754,0.008130239,-0.17385301,0.0007825128],"scale":[0.999999762,0.9999993,1.00000167],"name":"Landing_Gear_37_right","children":[262,263]},{"translation":[0.667953134,0.5748277,0.00707626343],"rotation":[-0.5088381,-0.496233046,0.494221658,0.5005811],"scale":[0.999994457,1.00000381,1.00000322],"name":"Landing_Gear_17_right"},{"translation":[0.167813063,0.00268483162,0.00000238418579],"rotation":[-6.41455244e-8,-4.106647e-8,4.51690951e-8,1],"scale":[1.00000083,1.00000048,1.00000107],"name":"Landing_Gear_31_right"},{"translation":[-0.667070866,-2.00849319,0.2415781],"rotation":[-0.709682167,-0.09555723,-0.6969779,0.0379721373],"scale":[1.00000048,0.999999762,1.00000131],"name":"Landing_Gear_34_right","children":[265]},{"translation":[0.09678888,-0.131126165,-0.0691990852],"rotation":[-0.839773059,-0.406130224,0.352001667,0.07703543],"scale":[1.00000072,1.00000048,0.9999989],"name":"Landing_Gear_38_right","children":[266]},{"translation":[0.006328821,0.9432006,-0.00322312117],"rotation":[-0.756983638,-0.64889437,0.07686701,0.00183209206],"scale":[0.999998748,1.000002,1.00000048],"name":"Landing_Gear_32_right","children":[267,270]},{"translation":[-4.76837158e-7,-4.76837158e-7,-0.00000166893],"rotation":[-2.79384949e-7,-5.963352e-8,5.96058953e-8,1],"scale":[1.000005,1.00000274,0.9999952],"name":"Landing_Gear_27_right","children":[268,269]},{"translation":[-0.05392933,-0.152823448,0.0107153654],"rotation":[-0.0451062471,0.07957671,0.0931274,0.9914436],"scale":[1.00000119,1.00000083,0.999998748],"name":"Landing_Gear_23_right"},{"translation":[0.161372185,-0.885045052,0.0548145771],"rotation":[0.0121787246,-0.607089758,0.093779996,0.788986],"scale":[1.00000322,1.00000012,0.999995232],"name":"Landing_Gear_28_right"},{"translation":[1.28528214,-0.0296049118,-0.135630727],"rotation":[-0.0498265065,0.05795823,-0.000260304631,0.997074842],"scale":[0.9999991,1.00000632,0.9999972],"name":"Landing_Gear_29_right"},{"translation":[-0.257612228,-2.26505971,0.121347904],"rotation":[-0.706045747,0.04255996,-0.7058249,-0.0387206227],"scale":[1,1.0000006,1.000001],"name":"landing_gear07_right"},{"translation":[0.0100951195,-0.002379179,-0.006793499],"rotation":[-0.706045866,0.0425607264,-0.7058248,-0.03871934],"scale":[1.00000119,1.000001,0.9999996],"mesh":52,"name":"Landing_gear_Root_right"},{"translation":[-12.9740658,1.4153682,-6.55199766],"rotation":[-0.9643542,0.05196784,-0.259418547,-0.004733256],"scale":[1.00000119,1.00000036,0.999999],"name":"Engine_PIVOT_RIGHT_2"},{"translation":[-0.6497253,2.102611,5.016356],"rotation":[0.4909097,0.490909636,-0.508927763,0.508928239],"scale":[0.9999998,1,1.000001],"name":"WING_DOOR03_right","children":[275]},{"translation":[-0.07994223,-0.3223496,0.15869379],"rotation":[1.22518031e-7,1.05239437e-7,-1.40098223e-7,1],"scale":[1.00000012,0.9999995,1.0000006],"name":"Door03_Hydraulic02_right"},{"translation":[-0.6216232,1.38451254,-26.3910179],"rotation":[0,-1,0,-7.54979e-8],"name":"BACK_DOOR","children":[277,278]},{"translation":[1.51670659,0.0593546629,0.09595871],"name":"Rear_door"},{"translation":[1.66407359,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Rear_door_pivot"},{"translation":[-2.802113,0.120608084,17.4044781],"rotation":[0,0,0.9848078,0.173648223],"scale":[1.59984982,1.59984982,1.59984982],"name":"CARGO_DOOR","children":[280]},{"translation":[-0.07027137,-0.09023255,0.115065575],"rotation":[0.00000272992838,0.00000128662873,0.9999597,-0.008979633],"scale":[0.625058949,0.625058949,0.6250587],"name":"CARGO_DOOR_HINGE"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[-0.164798126,-0.98632735,-4.44642041e-7,-0.000002661212],"scale":[1.00000024,1.00000024,1],"name":"CARGO_PISTON"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[0.7071068,0,0,0.7071067],"scale":[0.7524738,0.752473652,0.752473652],"name":"CARGO_PISTON001"},{"translation":[0.6120134,1.38451254,22.0964947],"name":"FRONT_DOOR","children":[284,285]},{"translation":[1.51670647,0.0593546629,0.09595871],"name":"Passenger_door"},{"translation":[1.66407371,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Passenger_door_pivot"},{"translation":[0.190857127,0.9710189,27.28954],"rotation":[-0.5561995,0.243252084,0.728066444,-0.318417639],"scale":[1.00000012,1.00000012,1.00000036],"name":"LeftWiper","children":[287]},{"translation":[0.00000190734863,-0.3225479,0.09060097],"rotation":[0.061628297,-0.7044163,-0.0616281778,0.7044159],"scale":[0.9999997,0.999999762,1],"name":"LeftWiper_Aux1"},{"translation":[-0.190857157,0.97101897,27.28954],"rotation":[-0.318417519,-0.728066444,0.243252143,0.5561996],"scale":[1,0.99999994,0.99999994],"name":"RightWiper","children":[289]},{"translation":[-0.00000381469727,0.322551727,-0.09060049],"rotation":[0.06162833,-0.704416156,-0.06162816,0.7044159],"scale":[1.00000012,1,1],"name":"RightWiper_Aux1"},{"rotation":[-8.742278e-8,0,0,1],"mesh":53,"name":"Body_center"},{"mesh":54,"name":"FROST_FUSELAGE"},{"translation":[3.16649675e-7,-2.545454,1.60331059],"rotation":[0,-1,0,7.54979e-8],"mesh":55,"name":"LIGHT_ASOBO_Beacon_Belly"},{"translation":[0.0008451908,3.87055969,-0.13583234],"rotation":[0,-1,0,7.54979e-8],"mesh":56,"name":"LIGHT_ASOBO_Beacon_Top"},{"translation":[3.424549,-0.176594272,3.16573286],"rotation":[0,-1,0,7.54979e-8],"mesh":57,"name":"LIGHT_ASOBO_LandingWing_Left"},{"translation":[-3.42732048,-0.176593766,3.17954969],"rotation":[-7.54979e-8,-1,-7.54979e-8,-5.6999333100000005e-15],"mesh":58,"name":"LIGHT_ASOBO_LandingWing_Right"},{"translation":[3.36336136,-0.176594272,3.26802778],"rotation":[0,-1,0,7.54979e-8],"mesh":59,"name":"LIGHT_ASOBO_RunwayTurnOff_Left"},{"translation":[-3.36571121,-0.176593781,3.267181],"rotation":[0,-1,0,-4.371139e-8],"mesh":60,"name":"LIGHT_ASOBO_RunwayTurnOff_Right"},{"translation":[0.7143089,1.52168274,-37.00236],"rotation":[0,-1,0,7.54979e-8],"mesh":61,"name":"LIGHT_ASOBO_StrobeTail_Left"},{"translation":[-0.7061607,1.52168584,-37.0003777],"rotation":[0,-1,0,7.54979e-8],"mesh":62,"name":"LIGHT_ASOBO_StrobeTail_Right"},{"translation":[2.73906183,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":63,"name":"LIGHT_ASOBO_Wing_Left"},{"translation":[-2.73759484,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":64,"name":"LIGHT_ASOBO_Wing_Right"},{"mesh":65,"name":"WINDSHIELD"},{"translation":[-26.0779648,2.60006762,-15.256813],"mesh":66,"skin":2,"name":"Wing_body_right"},{"mesh":67,"skin":3,"name":"Undercarriage_right"},{"translation":[-6.70049953,0.205205679,-6.49973631],"mesh":68,"skin":4,"name":"Spoiler_1_right"},{"translation":[-18.7203178,1.64729238,-8.41523552],"mesh":69,"skin":5,"name":"FLAPSKRUEGER_2_RIGHT_1"},{"translation":[-16.5319614,0.8568734,-9.7475],"mesh":70,"skin":6,"name":"FLAPS_2_RIGHT_1"},{"translation":[-23.1434269,2.084283,-12.9893723],"mesh":71,"skin":7,"name":"Aileron_right"},{"translation":[-0.000002861023,2.38418579e-7,0],"mesh":72,"skin":8,"name":"Wing_body_left"},{"mesh":73,"skin":9,"name":"Undercarriage_left"},{"translation":[6.70049763,0.205205679,-6.499737],"mesh":74,"skin":10,"name":"Spoiler_1_left"},{"translation":[18.7673969,1.6507802,-8.411348],"mesh":75,"skin":11,"name":"FLAPSKRUEGER_2_LEFT_1"},{"translation":[17.0303764,0.9264157,-9.990757],"mesh":76,"skin":12,"name":"FLAPS_2_LEFT_1"},{"translation":[23.0969028,2.07969546,-12.9645138],"mesh":77,"skin":13,"name":"Aileron_left"},{"translation":[0,0,0.375976563],"mesh":78,"skin":14,"name":"FROST_KRUEGER_L_2"},{"translation":[0,0,0.375976563],"mesh":79,"skin":15,"name":"FROST_KRUEGER_R_2"},{"mesh":80,"skin":16,"name":"FROST_WINGL"},{"mesh":81,"skin":17,"name":"FROST_WINGR"},{"translation":[2.57077742,1.38609684,21.8967667],"scale":[0.99999994,1,1.00000012],"mesh":82,"name":"Porthole_Blocker_center"},{"mesh":83,"skin":18,"name":"Engine_Left"},{"mesh":84,"skin":19,"name":"Engine_Right"},{"translation":[0.000472832,2.099659,-22.4412289],"mesh":85,"name":"Livery_KLM_RegNumber"},{"translation":[0.000183820724,1.52902293,-3.89724731],"mesh":86,"name":"Livery_KLM_FuselageB"},{"translation":[0,3.52926064,-4.46892834],"mesh":87,"name":"Livery_KLM_FuselageA"},{"translation":[-0.000002663216946530156,9.241080284118652,-36.35052490234375],"rotation":[0.28291264176368713,0.5717583298683167,0.4160439670085907,0.6480435132980347],"mesh":88,"name":"Rudder_LIVERYDECAL"},{"translation":[0.7220770120620728,-1.9521019458770752,23.631929397583008],"rotation":[0.715813398361206,0.03603672236204147,0.6965124607086182,0.034396108239889145],"mesh":89,"name":"C_Door_02_Left_LIVERYDECALS"},{"translation":[-0.726417064666748,-1.9530106782913208,23.631912231445312],"rotation":[-0.03489641100168228,0.6998390555381775,-0.03553038462996483,0.7125623822212219],"mesh":90,"name":"C_Door_02_right_LIVERYDECALS"},{"translation":[-2.3514771461486816,1.3771086931228638,-26.49029541015625],"mesh":91,"name":"DoorB_LIVERYDECAL"},{"mesh":92,"name":"Livery_KLM_FuselageA.001"},{"translation":[0.6497254371643066,-2.1026113033294678,-5.016356945037842],"rotation":[0.712636411190033,0.7015312910079956,-0.0006685919361189008,0.001663838280364871],"mesh":93,"name":"Door01_left_LIVERYDECAL"},{"translation":[-0.6497254967689514,-2.102611780166626,-5.016357421875],"rotation":[-0.0016642240807414055,-0.0006689373985864222,-0.7015330791473389,0.7126347422599792],"mesh":94,"name":"Door01_right_LIVERYDECAL"},{"mesh":95,"name":"livery_vstab"},{"translation":[-2.7386319637298584,-0.0703480988740921,17.432857513427734],"mesh":96,"name":"Cargo_Door_LIVERYDECAL"},{"mesh":97,"name":"Plane.001"},{"mesh":98,"name":"Plane.002"},{"mesh":99,"name":"Plane.005"},{"mesh":100,"name":"Plane.006"},{"scale":[1.0019999742507935,1,1],"mesh":101,"name":"Plane.010"}],"scene":0,"scenes":[{"nodes":[0,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338]}],"skins":[{"inverseBindMatrices":0,"joints":[19,20,31,32,41,43],"skeleton":19,"name":"skeleton #0"},{"inverseBindMatrices":1,"joints":[194,203,222,223,224,228],"skeleton":194,"name":"skeleton #1"},{"inverseBindMatrices":2,"joints":[0,160,165,194,203,212,215],"skeleton":0,"name":"skeleton #2"},{"inverseBindMatrices":3,"joints":[160,165],"skeleton":160,"name":"skeleton #3"},{"inverseBindMatrices":4,"joints":[165,185,186,187],"skeleton":165,"name":"skeleton #4"},{"inverseBindMatrices":5,"joints":[165,177,194,203,212,215,216,221,225,230],"skeleton":165,"name":"skeleton #5"},{"inverseBindMatrices":6,"joints":[0,160,165,194,195,203,204],"skeleton":0,"name":"skeleton #6"},{"inverseBindMatrices":7,"joints":[0,160,165,194,203,212,213,214],"skeleton":0,"name":"skeleton #7"},{"inverseBindMatrices":8,"joints":[0,14,18,19,20,21,22],"skeleton":0,"name":"skeleton #8"},{"inverseBindMatrices":9,"joints":[14,18],"skeleton":14,"name":"skeleton #9"},{"inverseBindMatrices":10,"joints":[18,119,120,121],"skeleton":18,"name":"skeleton #10"},{"inverseBindMatrices":11,"joints":[18,19,20,21,22,23,30,42,55,56],"skeleton":18,"name":"skeleton #11"},{"inverseBindMatrices":12,"joints":[0,14,18,19,20,33,45],"skeleton":0,"name":"skeleton #12"},{"inverseBindMatrices":13,"joints":[0,14,18,19,20,21,28,29],"skeleton":0,"name":"skeleton #13"},{"inverseBindMatrices":14,"joints":[0,14,18,19,20,21,22,23,30,42,55],"skeleton":0,"name":"skeleton #14"},{"inverseBindMatrices":15,"joints":[0,160,165,194,203,212,215,216,221,225,230],"skeleton":0,"name":"skeleton #15"},{"inverseBindMatrices":16,"joints":[0,14,18,19,20,21,22],"skeleton":0,"name":"skeleton #8_1"},{"inverseBindMatrices":17,"joints":[0,160,165,194,203,212,215],"skeleton":0,"name":"skeleton #2_1"},{"inverseBindMatrices":18,"joints":[18,19,110],"skeleton":18,"name":"skeleton #16"},{"inverseBindMatrices":19,"joints":[165,168,194],"skeleton":165,"name":"skeleton #17"}],"textures":[{"extensions":{"MSFT_texture_dds":{"source":0}}},{"extensions":{"MSFT_texture_dds":{"source":1}}},{"extensions":{"MSFT_texture_dds":{"source":2}}},{"extensions":{"MSFT_texture_dds":{"source":3}}},{"extensions":{"MSFT_texture_dds":{"source":4}}},{"extensions":{"MSFT_texture_dds":{"source":5}}},{"extensions":{"MSFT_texture_dds":{"source":6}}},{"extensions":{"MSFT_texture_dds":{"source":7}}},{"extensions":{"MSFT_texture_dds":{"source":8}}},{"extensions":{"MSFT_texture_dds":{"source":9}}},{"extensions":{"MSFT_texture_dds":{"source":10}}},{"extensions":{"MSFT_texture_dds":{"source":11}}},{"extensions":{"MSFT_texture_dds":{"source":12}}},{"extensions":{"MSFT_texture_dds":{"source":13}}},{"extensions":{"MSFT_texture_dds":{"source":14}}},{"extensions":{"MSFT_texture_dds":{"source":15}}},{"extensions":{"MSFT_texture_dds":{"source":4}}},{"extensions":{"MSFT_texture_dds":{"source":16}}},{"extensions":{"MSFT_texture_dds":{"source":17}}},{"extensions":{"MSFT_texture_dds":{"source":18}}},{"extensions":{"MSFT_texture_dds":{"source":19}}},{"extensions":{"MSFT_texture_dds":{"source":20}}},{"extensions":{"MSFT_texture_dds":{"source":21}}},{"extensions":{"MSFT_texture_dds":{"source":22}}},{"extensions":{"MSFT_texture_dds":{"source":23}}},{"extensions":{"MSFT_texture_dds":{"source":3}}},{"extensions":{"MSFT_texture_dds":{"source":24}}},{"extensions":{"MSFT_texture_dds":{"source":25}}},{"extensions":{"MSFT_texture_dds":{"source":26}}},{"extensions":{"MSFT_texture_dds":{"source":27}}},{"extensions":{"MSFT_texture_dds":{"source":28}}},{"extensions":{"MSFT_texture_dds":{"source":29}}},{"extensions":{"MSFT_texture_dds":{"source":30}}},{"extensions":{"MSFT_texture_dds":{"source":31}}},{"extensions":{"MSFT_texture_dds":{"source":32}}},{"extensions":{"MSFT_texture_dds":{"source":33}}},{"extensions":{"MSFT_texture_dds":{"source":34}}},{"extensions":{"MSFT_texture_dds":{"source":35}}},{"extensions":{"MSFT_texture_dds":{"source":36}}},{"extensions":{"MSFT_texture_dds":{"source":37}}},{"extensions":{"MSFT_texture_dds":{"source":38}}},{"extensions":{"MSFT_texture_dds":{"source":39}}},{"extensions":{"MSFT_texture_dds":{"source":40}}},{"extensions":{"MSFT_texture_dds":{"source":41}}}],"extensionsUsed":["ASOBO_normal_map_convention","ASOBO_material_draw_order","ASOBO_material_blend_gbuffer","ASOBO_material_detail_map","ASOBO_material_windshield_v2","MSFT_texture_dds","ASOBO_asset_optimized"],"buffers":[{"byteLength":3442356,"uri":"B787_lod4.bin"}],"images":[{"uri":"787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERY1_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"LIVERY_KLM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE2_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_DECALS2_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_DECALS2_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_LOW_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_LOW_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_DETAIL_LOW_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP01_LOW_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_DETAIL_LOW_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DEFAULTDIRT_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP02_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP01_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_DETAIL_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIGHTS_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_UNDERCARRIAGE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_HUBLOT_EMIS.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"}]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.bin new file mode 100644 index 00000000..b12a293e Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.gltf new file mode 100644 index 00000000..4d394876 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod5.gltf @@ -0,0 +1 @@ +{"accessors":[{"bufferView":0,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":0,"byteOffset":448,"componentType":5126,"count":7,"type":"MAT4","name":"accessorInverseBindMatrices"},{"bufferView":1,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":1608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":2412,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":2412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":3216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":3216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":4824,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":4020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":7236,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":4824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":6432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":5628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":6432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":9648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":7236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":12060,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":8040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":12864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":8844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":14472,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":9648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":16080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":10452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":16884,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":11256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":12060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":19296,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":12864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":21708,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":13668,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":22512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":14472,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":24120,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":15276,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":26532,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":16080,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":25728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":16884,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":17688,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":31356,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":18492,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":28944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":19296,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":33768,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":20100,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":32160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":20904,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":35376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":21708,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":36180,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":22512,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":23316,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":38592,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":24120,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":41004,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":24924,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":41808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":25728,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":43416,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":26532,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":45828,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":27336,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":45024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":28140,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":28944,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":50652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":29748,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":48240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":30552,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":53064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":31356,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":55476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":32160,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":51456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":32964,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":33768,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":60300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":34572,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":54672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":35376,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":62712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":36180,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":57888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":36984,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":65124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":37788,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":38592,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":61104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":39396,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":69948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":40200,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":72360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":41004,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":64320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":41808,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":74772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":42612,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":43416,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":67536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":44220,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":79596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":45024,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":82008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":45828,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":70752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":46632,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":84420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":47436,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":86832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":48240,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":73968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":49044,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":89244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":49848,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":91656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":50652,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":77184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":51456,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":94068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":52260,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":96480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":53064,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":80400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":53868,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":98892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":54672,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":101304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":55476,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":83616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":56280,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":103716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":57084,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":86832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":57488,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":106128,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":57892,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":88448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":58296,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":107340,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":58700,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":108552,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":59104,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":90064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":59508,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":109764,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":59912,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":110976,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":60316,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":91680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":60720,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":112188,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":61124,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":113400,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":61528,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":93296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":61932,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":114612,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":62336,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":115824,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":62740,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":94912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":63144,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":117036,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":63548,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":118248,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":63952,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":96528,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":64356,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":119460,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":64760,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":120672,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":65164,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":98144,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":65568,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":121884,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":65972,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":123096,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":66376,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":99760,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":66780,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":124308,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":67184,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":125520,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":67588,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":101376,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":67992,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":126732,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":68396,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":127944,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":68800,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":102992,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":69204,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":129156,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":69608,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":104608,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70012,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":106224,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":70416,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":130368,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":70820,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":107840,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":71224,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":131580,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":71628,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":132792,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":72032,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":109456,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":72436,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":134004,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":72840,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":111072,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":73244,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":135216,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":73648,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":112688,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":74052,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":136428,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":74456,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":137640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":74860,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":114304,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":75264,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":138852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":75668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":140064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":76072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":115920,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":76476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":141276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":76880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":142488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":77284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":117536,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":77688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":143700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":78092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":144912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":78496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":119152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":78900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":146124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":79304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":147336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":79708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":120768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":80112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":148548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":80516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":149760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":80920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":122384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":81324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":150972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":81728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":152184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":82132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":124000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":82536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":153396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":82940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":154608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":83344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":125616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":83748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":155820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":84152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":157032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":84556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":127232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":84960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":158244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":85364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":159456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":85768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":128848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":86172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":160668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":86576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":161880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":86980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":130464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":87384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":163092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":87788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":164304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":88192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":132080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":88596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":165516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":89000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":166728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":89404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":133696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":89808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":167940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":90212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":169152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":90616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":135312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":91020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":170364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":91424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":171576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":91828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":136928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":92232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":172788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":92636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":174000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":93040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":138544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":93444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":175212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":93848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":176424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":94252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":140160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":94656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":177636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":95060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":178848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":95464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":141776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":95868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":180060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":96272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":181272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":96676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":143392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":97080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":182484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":97484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":183696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":97888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":145008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":98292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":184908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":98696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":186120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":99100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":146624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":99504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":187332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":99908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":188544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":100312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":148240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":100716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":189756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":101120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":190968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":101524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":149856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":101928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":192180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":102332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":193392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":102736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":151472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":103140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":194604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":103544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":195816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":103948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":153088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":104352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":197028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":104756,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":198240,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":105560,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":154704,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":106364,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":200652,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":107168,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":203064,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":107972,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":157920,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":108776,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":205476,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":109580,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":207888,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":110384,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":161136,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":111188,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":210300,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":111992,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":212712,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":112796,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":164352,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":113600,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":215124,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":114404,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":217536,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":115208,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":167568,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":116012,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":219948,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":116816,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":222360,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":117620,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":170784,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":118424,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":224772,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":119228,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":227184,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":120032,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":174000,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":120836,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":229596,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":121640,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":232008,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":122444,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":177216,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":123248,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":234420,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":124052,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":236832,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":124856,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":180432,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":125660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":239244,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":126464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":241656,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":127268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":183648,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":128072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":244068,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":128876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":246480,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":129680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":186864,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":130484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":248892,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":131288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":251304,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":132092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":190080,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":132896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":253716,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":133700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":256128,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":134504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":193296,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":135308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":258540,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":136112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":260952,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":136916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":196512,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":137720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":263364,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":138524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":265776,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":139328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":199728,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":140132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":268188,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":140936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":270600,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":141740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":202944,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":142544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":273012,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":143348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":275424,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":144152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":206160,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":144956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":277836,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":145760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":280248,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":146564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":209376,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":147368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":282660,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":148172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":285072,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":148976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":212592,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":149780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":287484,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":150584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":289896,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":151388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":215808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":152192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":292308,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":152996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":294720,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":153800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":219024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":154604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":297132,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":155408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":299544,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":156212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":222240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":157016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":301956,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":157820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":304368,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":158624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":225456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":159428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":306780,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":160232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":309192,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":161036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":228672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":161840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":311604,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":162644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":314016,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":163448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":231888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":164252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":316428,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":165056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":318840,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":165860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":235104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":166664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":321252,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":167468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":323664,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":168272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":238320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":169076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":326076,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":169880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":328488,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":170684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":241536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":171488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":330900,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":172292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":333312,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":173096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":244752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":173900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":335724,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":174704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":338136,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":175508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":247968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":176312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":340548,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":177116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":342960,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":177920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":251184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":178724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":345372,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":179528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":347784,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":180332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":254400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":181136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":350196,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":181940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":352608,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":182744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":257616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":183548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":355020,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":184352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":357432,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":185156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":260832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":185960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":359844,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":186764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":362256,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":187568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":264048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":188372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":364668,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":189176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":367080,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":189580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":267264,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":189984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":368292,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":190388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":369504,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":190792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":268880,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":191196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":370716,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":191600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":371928,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":192004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":270496,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":192408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":373140,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":192812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":374352,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":193216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":272112,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":193620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":375564,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":194024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":376776,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":194428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":273728,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":194832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":377988,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":195236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":275344,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":195640,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":276960,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196044,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":379200,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":196448,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":278576,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":196852,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":380412,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":197256,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":280192,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":197660,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":381624,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":198464,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":281808,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":199268,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":384036,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":200072,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":386448,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":200876,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":285024,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":201680,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":388860,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":202484,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":391272,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":203288,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":288240,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":204092,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":393684,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":204896,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":396096,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":205700,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":291456,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":206504,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":398508,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":207308,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":400920,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":208112,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":294672,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":208916,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":403332,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":209720,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":405744,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":210524,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":297888,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":211328,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":408156,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":212132,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":410568,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":212936,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":301104,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":213740,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":412980,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":214544,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":415392,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":215348,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":304320,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":216152,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":417804,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":216956,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":420216,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":217760,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":307536,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":218564,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":422628,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":219368,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":425040,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":220172,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":310752,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":220976,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":427452,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":221780,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":429864,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":222584,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":313968,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":223388,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":432276,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":224192,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":434688,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":224996,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":317184,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":225800,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":437100,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":226604,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":439512,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":227408,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":320400,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":228212,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":441924,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":229016,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":444336,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":229820,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":323616,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":230624,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":446748,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":231428,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":449160,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":232232,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":326832,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":233036,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":451572,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":233840,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":453984,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":234644,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":330048,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":235448,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":456396,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":236252,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":458808,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":237056,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":333264,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":237860,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":461220,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":238664,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":463632,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":239468,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":336480,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":240272,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":466044,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":241076,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":468456,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":241880,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":339696,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":242684,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":470868,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":243488,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":473280,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":244292,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":342912,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":245096,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":475692,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":245900,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":478104,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":246704,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":346128,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":247508,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":480516,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":248312,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":482928,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":249116,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":349344,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":249920,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":485340,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":250724,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":487752,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":251528,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":352560,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":252332,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":490164,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":253136,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":492576,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":253940,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":355776,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":254744,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":494988,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":255548,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":497400,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":256352,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":358992,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":257156,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":499812,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":257960,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":502224,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":258764,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":362208,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":259568,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":504636,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":260372,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":507048,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":261176,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":365424,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":261980,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":509460,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":262784,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":511872,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":263588,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":368640,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":264392,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":514284,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":265196,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":516696,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":266000,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":371856,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":266804,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":519108,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":267608,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":521520,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":268412,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":375072,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":269216,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":523932,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":270020,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":526344,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":270824,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":378288,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":271628,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":528756,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":272432,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":531168,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":273236,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":381504,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":274040,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":533580,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":274844,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":535992,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":275648,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":384720,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":276452,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":538404,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":277256,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":540816,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":278060,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":387936,"componentType":5126,"count":201,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":278864,"componentType":5126,"count":201,"min":[0],"max":[6.66666651],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":543228,"componentType":5126,"count":201,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":279668,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":545640,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":280072,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":391152,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":280476,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":546852,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":280880,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":548064,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":281284,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":392768,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":281688,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":549276,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":282092,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":550488,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":282496,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":394384,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":282900,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":551700,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":283304,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":552912,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":283708,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":396000,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":284112,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":554124,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":284516,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":555336,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":284920,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":397616,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":285324,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":556548,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":285728,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":557760,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":286132,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":399232,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":286536,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":558972,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":286940,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":560184,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":287344,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":400848,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":287748,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":561396,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":288152,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":562608,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":288556,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":402464,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":288960,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":563820,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":289364,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":565032,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":289768,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":404080,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":290172,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":566244,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":290576,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":567456,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":290980,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":405696,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":291384,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":568668,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":291788,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":569880,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":292192,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":407312,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":292596,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":571092,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":293000,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":572304,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":293404,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":408928,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":293808,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":573516,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":294212,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":574728,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":294616,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":410544,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":295020,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":575940,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":295424,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":577152,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":295828,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":412160,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":296232,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":578364,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":296636,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":413776,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297040,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":579576,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":297444,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":415392,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":297848,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":417008,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":298252,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":580788,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":298656,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":418624,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299060,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":420240,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":299464,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":582000,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":299868,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":421856,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300272,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":423472,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":300676,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":583212,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301080,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":425088,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":301484,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":584424,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":301888,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":426704,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":302292,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":585636,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":302696,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":586848,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":303100,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":428320,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":303504,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":588060,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":303908,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":589272,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":304312,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":429936,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":304716,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":590484,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":305120,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":591696,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":305524,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":431552,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":305928,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":592908,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":306332,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":594120,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":306736,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":433168,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":307140,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":595332,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":307544,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":596544,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":307948,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":434784,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":308352,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":597756,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":308756,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":598968,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":309160,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":436400,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":309564,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":600180,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":309968,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":601392,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":310372,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":438016,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":310776,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":602604,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":311180,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":603816,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":311584,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":439632,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":311988,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":605028,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":312392,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":606240,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":312796,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":441248,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":313200,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":607452,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":313604,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":608664,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":314008,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":442864,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":314412,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":609876,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":314816,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":611088,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":315220,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":444480,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":315624,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":612300,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":316028,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":446096,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":316432,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":613512,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":316836,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":447712,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":317240,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":614724,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":317644,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":615936,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":318048,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":449328,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":318452,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":617148,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":318856,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":618360,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":319260,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":450944,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":319664,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":452560,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320068,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":619572,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320472,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454176,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320484,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454224,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320496,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454272,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320508,"componentType":5126,"count":3,"min":[0],"max":[0.06666667],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454320,"componentType":5126,"count":3,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":320520,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":620784,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":320924,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":454368,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":321328,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":621996,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":321732,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":623208,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":322136,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":455984,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":322540,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":624420,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":322944,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":625632,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":323348,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":457600,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":323752,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":626844,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":324156,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":628056,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":324560,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":459216,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":324964,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":629268,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":325368,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":630480,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":325772,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":460832,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":326176,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":631692,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":326580,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":632904,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":326984,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":462448,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":327388,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":634116,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":327792,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":635328,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":328196,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":464064,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":328600,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":636540,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":329004,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":637752,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":329408,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":465680,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":329812,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":638964,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":330216,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":640176,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":330620,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":467296,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":331024,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":641388,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":1,"byteOffset":331428,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":642600,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":1,"byteOffset":331832,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":3,"byteOffset":468912,"componentType":5126,"count":101,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":1,"byteOffset":332236,"componentType":5126,"count":101,"min":[0],"max":[3.33333325],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":643812,"componentType":5126,"count":101,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":4,"componentType":5126,"count":16,"min":[-0.07582969963550568,-0.802740216255188,-0.799527108669281],"max":[0.03561084717512131,0.0010426774388179183,0.6260731816291809],"type":"VEC3","name":"x5_C_Door_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":12,"componentType":5120,"count":16,"type":"VEC4","name":"x5_C_Door_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":16,"componentType":5120,"count":16,"type":"VEC4","name":"x5_C_Door_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":20,"componentType":5122,"count":16,"type":"VEC2","name":"x5_C_Door_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":24,"componentType":5122,"count":16,"type":"VEC2","name":"x5_C_Door_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":28,"componentType":5123,"count":16,"type":"VEC4","name":"x5_C_Door_right_vertices#0_COLOR_0"},{"bufferView":5,"componentType":5123,"count":24,"type":"SCALAR","name":"x5_C_Door_right_indices#0"},{"bufferView":4,"byteOffset":576,"componentType":5126,"count":14,"min":[-0.08399135619401932,-0.7955362796783447,-0.76180100440979],"max":[0.059951599687337875,0.0030883168801665306,0.6639270186424255],"type":"VEC3","name":"x5_C_Door_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":588,"componentType":5120,"count":14,"type":"VEC4","name":"x5_C_Door_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":592,"componentType":5120,"count":14,"type":"VEC4","name":"x5_C_Door_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":596,"componentType":5122,"count":14,"type":"VEC2","name":"x5_C_Door_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":600,"componentType":5122,"count":14,"type":"VEC2","name":"x5_C_Door_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":604,"componentType":5123,"count":14,"type":"VEC4","name":"x5_C_Door_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":48,"componentType":5123,"count":24,"type":"SCALAR","name":"x5_C_Door_left_indices#0"},{"bufferView":4,"byteOffset":1080,"componentType":5126,"count":110,"min":[-5.2562079429626465,-0.33915409445762634,-3.1015846729278564],"max":[4.0751471519470215,1.1468309164047241,2.173492431640625],"type":"VEC3","name":"x4_Flaps_2_left001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":1092,"componentType":5120,"count":110,"type":"VEC4","name":"x4_Flaps_2_left001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":1096,"componentType":5120,"count":110,"type":"VEC4","name":"x4_Flaps_2_left001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":1100,"componentType":5122,"count":110,"type":"VEC2","name":"x4_Flaps_2_left001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":1104,"componentType":5122,"count":110,"type":"VEC2","name":"x4_Flaps_2_left001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":1108,"componentType":5123,"count":110,"type":"VEC4","name":"x4_Flaps_2_left001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":96,"componentType":5123,"count":180,"type":"SCALAR","name":"x4_Flaps_2_left001_indices#0"},{"bufferView":4,"byteOffset":5040,"componentType":5126,"count":50,"min":[-3.462224006652832,-0.2411312758922577,-2.4887919425964355],"max":[3.980475425720215,1.4083316326141357,0.0872662365436554],"type":"VEC3","name":"x4_Flaps_1_left001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":5052,"componentType":5120,"count":50,"type":"VEC4","name":"x4_Flaps_1_left001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":5056,"componentType":5120,"count":50,"type":"VEC4","name":"x4_Flaps_1_left001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":5060,"componentType":5122,"count":50,"type":"VEC2","name":"x4_Flaps_1_left001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":5064,"componentType":5122,"count":50,"type":"VEC2","name":"x4_Flaps_1_left001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":5068,"componentType":5123,"count":50,"type":"VEC4","name":"x4_Flaps_1_left001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":456,"componentType":5123,"count":72,"type":"SCALAR","name":"x4_Flaps_1_left001_indices#0"},{"bufferView":4,"byteOffset":6840,"componentType":5126,"count":208,"min":[-0.9337426424026489,-3.8331615924835205,-1.2372901439666748],"max":[0.9637306332588196,-2.640296459197998,1.3530880212783813],"type":"VEC3","name":"x5_Landing_gear_Root_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":6852,"componentType":5120,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":6856,"componentType":5120,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":6860,"componentType":5122,"count":208,"type":"VEC2","name":"x5_Landing_gear_Root_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":6864,"componentType":5122,"count":208,"type":"VEC2","name":"x5_Landing_gear_Root_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":6868,"componentType":5123,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":600,"componentType":5123,"count":528,"type":"SCALAR","name":"x5_Landing_gear_Root_left_indices#0"},{"bufferView":4,"byteOffset":14328,"componentType":5126,"count":32,"min":[0.2986450493335724,-2.5987346172332764,-0.8714854717254639],"max":[0.6099698543548584,-0.41588810086250305,1.7047114372253418],"type":"VEC3","name":"x5_Door04_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":14340,"componentType":5120,"count":32,"type":"VEC4","name":"x5_Door04_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":14344,"componentType":5120,"count":32,"type":"VEC4","name":"x5_Door04_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":14348,"componentType":5122,"count":32,"type":"VEC2","name":"x5_Door04_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":14352,"componentType":5122,"count":32,"type":"VEC2","name":"x5_Door04_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":14356,"componentType":5123,"count":32,"type":"VEC4","name":"x5_Door04_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1656,"componentType":5123,"count":60,"type":"SCALAR","name":"x5_Door04_left_indices#0"},{"bufferView":4,"byteOffset":15480,"componentType":5126,"count":71,"min":[-1.4504354000091553,-1.4424867630004883,-1.2827162742614746],"max":[1.4187357425689697,1.4424872398376465,-0.004564391449093819],"type":"VEC3","name":"x5_1_blurred_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":15492,"componentType":5120,"count":71,"type":"VEC4","name":"x5_1_blurred_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":15496,"componentType":5120,"count":71,"type":"VEC4","name":"x5_1_blurred_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":15500,"componentType":5122,"count":71,"type":"VEC2","name":"x5_1_blurred_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":15504,"componentType":5122,"count":71,"type":"VEC2","name":"x5_1_blurred_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":15508,"componentType":5123,"count":71,"type":"VEC4","name":"x5_1_blurred_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":1776,"componentType":5123,"count":270,"type":"SCALAR","name":"x5_1_blurred_left_indices#0"},{"bufferView":4,"byteOffset":18036,"componentType":5126,"count":71,"min":[-1.4503744840621948,-1.4411083459854126,0.004562959540635347],"max":[1.4213157892227173,1.443753719329834,1.282714605331421],"type":"VEC3","name":"x5_1_slow_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":18048,"componentType":5120,"count":71,"type":"VEC4","name":"x5_1_slow_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":18052,"componentType":5120,"count":71,"type":"VEC4","name":"x5_1_slow_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":18056,"componentType":5122,"count":71,"type":"VEC2","name":"x5_1_slow_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":18060,"componentType":5122,"count":71,"type":"VEC2","name":"x5_1_slow_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":18064,"componentType":5123,"count":71,"type":"VEC4","name":"x5_1_slow_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2316,"componentType":5123,"count":270,"type":"SCALAR","name":"x5_1_slow_left_indices#0"},{"bufferView":4,"byteOffset":20592,"componentType":5126,"count":263,"min":[-1.448843002319336,-1.4470993280410767,-1.2827186584472656],"max":[1.4488394260406494,1.4505829811096191,0],"type":"VEC3","name":"x5_1_still_left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":20604,"componentType":5120,"count":263,"type":"VEC4","name":"x5_1_still_left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":20608,"componentType":5120,"count":263,"type":"VEC4","name":"x5_1_still_left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":20612,"componentType":5122,"count":263,"type":"VEC2","name":"x5_1_still_left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":20616,"componentType":5122,"count":263,"type":"VEC2","name":"x5_1_still_left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":20620,"componentType":5123,"count":263,"type":"VEC4","name":"x5_1_still_left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":2856,"componentType":5123,"count":354,"type":"SCALAR","name":"x5_1_still_left_indices#0"},{"bufferView":4,"byteOffset":30060,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_LEFT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":30072,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":30076,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":30080,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":30084,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":30088,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3564,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_LEFT_indices#0"},{"bufferView":4,"byteOffset":30204,"componentType":5126,"count":104,"min":[-0.49840134382247925,-2.084338665008545,-0.5694869756698608],"max":[0.5081031322479248,-1.1832025051116943,0.395904004573822],"type":"VEC3","name":"x5_Landing_Gear_NosePart16_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":30216,"componentType":5120,"count":104,"type":"VEC4","name":"x5_Landing_Gear_NosePart16_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":30220,"componentType":5120,"count":104,"type":"VEC4","name":"x5_Landing_Gear_NosePart16_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":30224,"componentType":5122,"count":104,"type":"VEC2","name":"x5_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":30228,"componentType":5122,"count":104,"type":"VEC2","name":"x5_Landing_Gear_NosePart16_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":30232,"componentType":5123,"count":104,"type":"VEC4","name":"x5_Landing_Gear_NosePart16_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":3576,"componentType":5123,"count":264,"type":"SCALAR","name":"x5_Landing_Gear_NosePart16_center_indices#0"},{"bufferView":4,"byteOffset":33948,"componentType":5126,"count":70,"min":[-1.4504361152648926,-1.4424867630004883,-1.2827130556106567],"max":[1.4187363386154175,1.4424872398376465,-0.004360597115010023],"type":"VEC3","name":"x5_2_blurred_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":33960,"componentType":5120,"count":70,"type":"VEC4","name":"x5_2_blurred_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":33964,"componentType":5120,"count":70,"type":"VEC4","name":"x5_2_blurred_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":33968,"componentType":5122,"count":70,"type":"VEC2","name":"x5_2_blurred_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":33972,"componentType":5122,"count":70,"type":"VEC2","name":"x5_2_blurred_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":33976,"componentType":5123,"count":70,"type":"VEC4","name":"x5_2_blurred_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4104,"componentType":5123,"count":270,"type":"SCALAR","name":"x5_2_blurred_right_indices#0"},{"bufferView":4,"byteOffset":36468,"componentType":5126,"count":70,"min":[-1.4503744840621948,-1.4411083459854126,0.0043591661378741264],"max":[1.4213157892227173,1.443753719329834,1.2827115058898926],"type":"VEC3","name":"x5_2_slow_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":36480,"componentType":5120,"count":70,"type":"VEC4","name":"x5_2_slow_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":36484,"componentType":5120,"count":70,"type":"VEC4","name":"x5_2_slow_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":36488,"componentType":5122,"count":70,"type":"VEC2","name":"x5_2_slow_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":36492,"componentType":5122,"count":70,"type":"VEC2","name":"x5_2_slow_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":36496,"componentType":5123,"count":70,"type":"VEC4","name":"x5_2_slow_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":4644,"componentType":5123,"count":270,"type":"SCALAR","name":"x5_2_slow_right_indices#0"},{"bufferView":4,"byteOffset":38988,"componentType":5126,"count":280,"min":[-1.4488445520401,-1.447099208831787,-1.282717227935791],"max":[1.4488409757614136,1.4505828619003296,0],"type":"VEC3","name":"x5_2_still_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":39000,"componentType":5120,"count":280,"type":"VEC4","name":"x5_2_still_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":39004,"componentType":5120,"count":280,"type":"VEC4","name":"x5_2_still_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":39008,"componentType":5122,"count":280,"type":"VEC2","name":"x5_2_still_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":39012,"componentType":5122,"count":280,"type":"VEC2","name":"x5_2_still_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":39016,"componentType":5123,"count":280,"type":"VEC4","name":"x5_2_still_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5184,"componentType":5123,"count":360,"type":"SCALAR","name":"x5_2_still_right_indices#0"},{"bufferView":4,"byteOffset":49068,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_RIGHT_vertices#0_POSITION"},{"bufferView":4,"byteOffset":49080,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":49084,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":49088,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":49092,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":49096,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5904,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_RIGHT_indices#0"},{"bufferView":4,"byteOffset":49212,"componentType":5126,"count":50,"min":[-3.9804773330688477,-0.4158135652542114,-2.4887897968292236],"max":[3.462224245071411,1.3139322996139526,0.08726312220096588],"type":"VEC3","name":"x4_Flaps_1_right001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":49224,"componentType":5120,"count":50,"type":"VEC4","name":"x4_Flaps_1_right001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":49228,"componentType":5120,"count":50,"type":"VEC4","name":"x4_Flaps_1_right001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":49232,"componentType":5122,"count":50,"type":"VEC2","name":"x4_Flaps_1_right001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":49236,"componentType":5122,"count":50,"type":"VEC2","name":"x4_Flaps_1_right001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":49240,"componentType":5123,"count":50,"type":"VEC4","name":"x4_Flaps_1_right001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":5916,"componentType":5123,"count":72,"type":"SCALAR","name":"x4_Flaps_1_right001_indices#0"},{"bufferView":4,"byteOffset":51012,"componentType":5126,"count":92,"min":[-4.573563098907471,-0.2826979458332062,-3.344491958618164],"max":[4.757794380187988,1.2163735628128052,2.07806396484375],"type":"VEC3","name":"x4_Flaps_2_right001_vertices#0_POSITION"},{"bufferView":4,"byteOffset":51024,"componentType":5120,"count":92,"type":"VEC4","name":"x4_Flaps_2_right001_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":51028,"componentType":5120,"count":92,"type":"VEC4","name":"x4_Flaps_2_right001_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":51032,"componentType":5122,"count":92,"type":"VEC2","name":"x4_Flaps_2_right001_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":51036,"componentType":5122,"count":92,"type":"VEC2","name":"x4_Flaps_2_right001_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":51040,"componentType":5123,"count":92,"type":"VEC4","name":"x4_Flaps_2_right001_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6060,"componentType":5123,"count":168,"type":"SCALAR","name":"x4_Flaps_2_right001_indices#0"},{"bufferView":4,"byteOffset":54324,"componentType":5126,"count":37,"min":[-0.6099686622619629,-2.5987343788146973,-0.8714852333068848],"max":[-0.2986454665660858,-0.41588783264160156,1.704709768295288],"type":"VEC3","name":"x5_Door04_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":54336,"componentType":5120,"count":37,"type":"VEC4","name":"x5_Door04_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":54340,"componentType":5120,"count":37,"type":"VEC4","name":"x5_Door04_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":54344,"componentType":5122,"count":37,"type":"VEC2","name":"x5_Door04_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":54348,"componentType":5122,"count":37,"type":"VEC2","name":"x5_Door04_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":54352,"componentType":5123,"count":37,"type":"VEC4","name":"x5_Door04_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6396,"componentType":5123,"count":63,"type":"SCALAR","name":"x5_Door04_right_indices#0"},{"bufferView":4,"byteOffset":55656,"componentType":5126,"count":208,"min":[-0.9637332558631897,2.632397413253784,-1.3530915975570679],"max":[0.9338980913162231,3.8252041339874268,1.2363409996032715],"type":"VEC3","name":"x5_Landing_gear_Root_right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":55668,"componentType":5120,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":55672,"componentType":5120,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":55676,"componentType":5122,"count":208,"type":"VEC2","name":"x5_Landing_gear_Root_right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":55680,"componentType":5122,"count":208,"type":"VEC2","name":"x5_Landing_gear_Root_right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":55684,"componentType":5123,"count":208,"type":"VEC4","name":"x5_Landing_gear_Root_right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":6522,"componentType":5123,"count":528,"type":"SCALAR","name":"x5_Landing_gear_Root_right_indices#0"},{"bufferView":4,"byteOffset":63144,"componentType":5126,"count":476,"min":[-9.380219459533691,-2.3647284507751465,-39.498870849609375],"max":[9.380221366882324,12.377949714660645,28.476634979248047],"type":"VEC3","name":"x5_Body_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":63156,"componentType":5120,"count":476,"type":"VEC4","name":"x5_Body_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":63160,"componentType":5120,"count":476,"type":"VEC4","name":"x5_Body_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":63164,"componentType":5122,"count":476,"type":"VEC2","name":"x5_Body_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":63168,"componentType":5122,"count":476,"type":"VEC2","name":"x5_Body_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":63172,"componentType":5123,"count":476,"type":"VEC4","name":"x5_Body_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":7578,"componentType":5123,"count":777,"type":"SCALAR","name":"x5_Body_center_indices#1"},{"bufferView":4,"byteOffset":80280,"componentType":5126,"count":26,"min":[-1.6292920112609863,1.131760597229004,25.061002731323242],"max":[1.6292920112609863,1.8075342178344727,26.98503875732422],"type":"VEC3","name":"x5_WINDSHIELD_vertices#0_POSITION"},{"bufferView":4,"byteOffset":80292,"componentType":5120,"count":26,"type":"VEC4","name":"x5_WINDSHIELD_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":80296,"componentType":5120,"count":26,"type":"VEC4","name":"x5_WINDSHIELD_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":80300,"componentType":5122,"count":26,"type":"VEC2","name":"x5_WINDSHIELD_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":80304,"componentType":5122,"count":26,"type":"VEC2","name":"x5_WINDSHIELD_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":80308,"componentType":5123,"count":26,"type":"VEC4","name":"x5_WINDSHIELD_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9132,"componentType":5123,"count":60,"type":"SCALAR","name":"x5_WINDSHIELD_indices#0"},{"bufferView":4,"byteOffset":81216,"componentType":5126,"count":3,"min":[-0.03306722640991211,0.0470188707113266,0.07366704940795898],"max":[-0.01431417465209961,0.06633410602807999,0.07678556442260742],"type":"VEC3","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81228,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81232,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81236,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81240,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81244,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9252,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_LandingWing_Right_indices#0"},{"bufferView":4,"byteOffset":81324,"componentType":5126,"count":3,"min":[0.025082111358642578,0.0470188707113266,0.05144834518432617],"max":[0.041039466857910156,0.06633411347866058,0.06078958511352539],"type":"VEC3","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81336,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81340,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81344,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81348,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81352,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9258,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_LandingWing_Left_indices#0"},{"bufferView":4,"byteOffset":81432,"componentType":5126,"count":3,"min":[0.06098461151123047,0.014184713363647461,-0.019765853881835938],"max":[0.07079386711120605,0.03238396346569061,-9.5367431640625e-7],"type":"VEC3","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81444,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81448,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81452,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81456,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81460,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9264,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Wing_Left_indices#0"},{"bufferView":4,"byteOffset":81540,"componentType":5126,"count":3,"min":[-0.06932544708251953,0.015733569860458374,-0.016122817993164062],"max":[-0.059476613998413086,0.032518431544303894,0.0058917999267578125],"type":"VEC3","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81552,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81556,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81560,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81564,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81568,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9270,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Wing_Right_indices#0"},{"bufferView":4,"byteOffset":81648,"componentType":5126,"count":3,"min":[-0.004686951637268066,0.018764734268188477,-0.00374603271484375],"max":[-0.002954244613647461,0.021648406982421875,-0.002735137939453125],"type":"VEC3","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81660,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81664,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81668,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81672,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81676,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9276,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_StrobeTail_Right_indices#0"},{"bufferView":4,"byteOffset":81756,"componentType":5126,"count":3,"min":[0.011102437973022461,0.018764615058898926,-0.00572967529296875],"max":[0.013572514057159424,0.020845651626586914,-0.004261016845703125],"type":"VEC3","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81768,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81772,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81776,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81780,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81784,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeTail_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9282,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_StrobeTail_Left_indices#0"},{"bufferView":4,"byteOffset":81864,"componentType":5126,"count":3,"min":[-0.05218672752380371,-0.01686510443687439,0.019605159759521484],"max":[-0.03882431983947754,0.004947096109390259,0.037015438079833984],"type":"VEC3","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81876,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81880,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81884,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81888,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":81892,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9288,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right_indices#0"},{"bufferView":4,"byteOffset":81972,"componentType":5126,"count":3,"min":[0.04707932472229004,-0.01686510443687439,0.006795406341552734],"max":[0.0535123348236084,0.004947096109390259,0.026953697204589844],"type":"VEC3","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":81984,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":81988,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":81992,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":81996,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":82000,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9294,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left_indices#0"},{"bufferView":4,"byteOffset":82080,"componentType":5126,"count":4,"min":[-0.012800686061382294,-0.07480287551879883,-0.06730921566486359],"max":[-0.004207842983305454,-0.06878948211669922,-0.0611618310213089],"type":"VEC3","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_POSITION"},{"bufferView":4,"byteOffset":82092,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":82096,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":82100,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":82104,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":82108,"componentType":5123,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Top_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9300,"componentType":5123,"count":6,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Beacon_Top_indices#0"},{"bufferView":4,"byteOffset":82224,"componentType":5126,"count":4,"min":[-0.04375565052032471,0.027031421661376953,-0.08321332931518555],"max":[-0.009208147414028645,0.08187198638916016,-0.06787276268005371],"type":"VEC3","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_POSITION"},{"bufferView":4,"byteOffset":82236,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":82240,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":82244,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":82248,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":82252,"componentType":5123,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_Beacon_Belly_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9312,"componentType":5123,"count":6,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Beacon_Belly_indices#0"},{"bufferView":4,"byteOffset":82368,"componentType":5126,"count":544,"min":[-5.406018257141113,-0.25349560379981995,-48.82345199584961],"max":[0.2644622027873993,0.42833685874938965,0.1163593977689743],"type":"VEC3","name":"x5_Porthole_Blocker_center_vertices#0_POSITION"},{"bufferView":4,"byteOffset":82380,"componentType":5120,"count":544,"type":"VEC4","name":"x5_Porthole_Blocker_center_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":82384,"componentType":5120,"count":544,"type":"VEC4","name":"x5_Porthole_Blocker_center_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":82388,"componentType":5122,"count":544,"type":"VEC2","name":"x5_Porthole_Blocker_center_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":82392,"componentType":5122,"count":544,"type":"VEC2","name":"x5_Porthole_Blocker_center_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":82396,"componentType":5123,"count":544,"type":"VEC4","name":"x5_Porthole_Blocker_center_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":9324,"componentType":5123,"count":816,"type":"SCALAR","name":"x5_Porthole_Blocker_center_indices#0"},{"bufferView":4,"byteOffset":101952,"componentType":5126,"count":3,"min":[-0.009423524141311646,0.0011743605136871338,0.07099391520023346],"max":[-0.0018263459205627441,0.015690118074417114,0.07125997543334961],"type":"VEC3","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":101964,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":101968,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":101972,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":101976,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":101980,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10956,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_LandingNose_Right_indices#0"},{"bufferView":4,"byteOffset":102060,"componentType":5126,"count":3,"min":[-0.006385669112205505,-0.0010486841201782227,0.07343602925539017],"max":[0.002884969115257263,0.013265490531921387,0.07369838654994965],"type":"VEC3","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102072,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102076,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102080,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102084,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102088,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10962,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Taxi_Right_indices#0"},{"bufferView":4,"byteOffset":102168,"componentType":5126,"count":3,"min":[-0.0004626661539077759,-0.00022479891777038574,0.07268691062927246],"max":[0.008807972073554993,0.014089375734329224,0.07294926047325134],"type":"VEC3","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102180,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102184,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102188,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102192,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102196,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Taxi_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10968,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Taxi_Left_indices#0"},{"bufferView":4,"byteOffset":102276,"componentType":5126,"count":3,"min":[0.005114555358886719,0.0018151402473449707,0.07024471461772919],"max":[0.01271173357963562,0.01633089780807495,0.07051077485084534],"type":"VEC3","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102288,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102292,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102296,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102300,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102304,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_LandingNose_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10974,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_LandingNose_Left_indices#0"},{"bufferView":4,"byteOffset":102384,"componentType":5126,"count":3,"min":[-0.030492784455418587,-0.009933382272720337,-0.027533169835805893],"max":[-0.0007920266361907125,-0.0038215811364352703,-0.00086545932572335],"type":"VEC3","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102396,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102400,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102404,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102408,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102412,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10980,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Logo_Right_indices#0"},{"bufferView":4,"byteOffset":102492,"componentType":5126,"count":3,"min":[-0.026365283876657486,-0.014438450336456299,-0.03060138039290905],"max":[0.0007920264033600688,-0.010132819414138794,-0.0008687974186614156],"type":"VEC3","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102504,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102508,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102512,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102516,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102520,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_Logo_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10986,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_Logo_Left_indices#0"},{"bufferView":4,"byteOffset":102600,"componentType":5126,"count":3,"min":[-0.05275726318359375,0.010921001434326172,0.0037736892700195312],"max":[-0.051776885986328125,0.01444101333618164,0.007266044616699219],"type":"VEC3","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102612,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102616,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102620,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102624,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102628,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10992,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_StrobeWing_Right_indices#0"},{"bufferView":4,"byteOffset":102708,"componentType":5126,"count":3,"min":[-0.0122833251953125,0.010597944259643555,0.0026445388793945312],"max":[-0.01038360595703125,0.013393640518188477,0.004874229431152344],"type":"VEC3","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102720,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102724,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102728,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102732,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102736,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationGreen_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":10998,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_NavigationGreen_indices#0"},{"bufferView":4,"byteOffset":102816,"componentType":5126,"count":3,"min":[-0.0030384063720703125,0.010597944259643555,0.02518939971923828],"max":[-0.0007419586181640625,0.013393640518188477,0.026857376098632812],"type":"VEC3","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102828,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102832,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102836,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102840,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102844,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationRed_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11004,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_NavigationRed_indices#0"},{"bufferView":4,"byteOffset":102924,"componentType":5126,"count":4,"min":[-0.017635345458984375,0.024918079376220703,-0.011774063110351562],"max":[-0.001972198486328125,0.05131053924560547,-0.008241653442382812],"type":"VEC3","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":102936,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":102940,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":102944,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":102948,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":102952,"componentType":5123,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11010,"componentType":5123,"count":6,"type":"SCALAR","name":"x5_LIGHT_ASOBO_NavigationWing_Left_indices#0"},{"bufferView":4,"byteOffset":103068,"componentType":5126,"count":3,"min":[0.027011871337890625,0.0137939453125,0.024614334106445312],"max":[0.030628204345703125,0.017323970794677734,0.0253143310546875],"type":"VEC3","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_POSITION"},{"bufferView":4,"byteOffset":103080,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":103084,"componentType":5120,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":103088,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":103092,"componentType":5122,"count":3,"type":"VEC2","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":103096,"componentType":5123,"count":3,"type":"VEC4","name":"x5_LIGHT_ASOBO_StrobeWing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11022,"componentType":5123,"count":3,"type":"SCALAR","name":"x5_LIGHT_ASOBO_StrobeWing_Left_indices#0"},{"bufferView":4,"byteOffset":103176,"componentType":5126,"count":4,"min":[0.0034999847412109375,0.02491593360900879,-0.013380050659179688],"max":[0.019163131713867188,0.051308393478393555,-0.009847640991210938],"type":"VEC3","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_POSITION"},{"bufferView":4,"byteOffset":103188,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":103192,"componentType":5120,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":103196,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":103200,"componentType":5122,"count":4,"type":"VEC2","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":103204,"componentType":5123,"count":4,"type":"VEC4","name":"x5_LIGHT_ASOBO_NavigationWing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11028,"componentType":5123,"count":6,"type":"SCALAR","name":"x5_LIGHT_ASOBO_NavigationWing_Right_indices#0"},{"bufferView":4,"byteOffset":103320,"componentType":5126,"count":882,"min":[-11.814748764038086,-4.795534610748291,-32.94910430908203],"max":[11.814748764038086,4.795534133911133,32.94910430908203],"type":"VEC3","name":"x0_Livery_KLM_FuselageA_vertices#0_POSITION"},{"bufferView":4,"byteOffset":103332,"componentType":5120,"count":882,"type":"VEC4","name":"x0_Livery_KLM_FuselageA_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":103336,"componentType":5120,"count":882,"type":"VEC4","name":"x0_Livery_KLM_FuselageA_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":103340,"componentType":5122,"count":882,"type":"VEC2","name":"x0_Livery_KLM_FuselageA_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":103344,"componentType":5122,"count":882,"type":"VEC2","name":"x0_Livery_KLM_FuselageA_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":103348,"componentType":5123,"count":882,"type":"VEC4","name":"x0_Livery_KLM_FuselageA_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":11040,"componentType":5123,"count":2124,"type":"SCALAR","name":"x0_Livery_KLM_FuselageA_indices#0"},{"bufferView":4,"byteOffset":135072,"componentType":5126,"count":8,"min":[-2.667531967163086,-0.20421838760375977,-0.8157100677490234],"max":[2.667531967163086,0.20421838760375977,0.8157100677490234],"type":"VEC3","name":"x5_Livery_KLM_RegNumber_vertices#0_POSITION"},{"bufferView":4,"byteOffset":135084,"componentType":5120,"count":8,"type":"VEC4","name":"x5_Livery_KLM_RegNumber_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":135088,"componentType":5120,"count":8,"type":"VEC4","name":"x5_Livery_KLM_RegNumber_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":135092,"componentType":5122,"count":8,"type":"VEC2","name":"x5_Livery_KLM_RegNumber_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":135096,"componentType":5122,"count":8,"type":"VEC2","name":"x5_Livery_KLM_RegNumber_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":135100,"componentType":5123,"count":8,"type":"VEC4","name":"x5_Livery_KLM_RegNumber_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":15288,"componentType":5123,"count":12,"type":"SCALAR","name":"x5_Livery_KLM_RegNumber_indices#0"},{"bufferView":4,"byteOffset":135360,"componentType":5126,"count":162,"min":[-3.02154803276062,-1.6277439594268799,-27.526147842407227],"max":[3.02154803276062,1.6277439594268799,27.526147842407227],"type":"VEC3","name":"x0_Livery_KLM_FuselageB_vertices#0_POSITION"},{"bufferView":4,"byteOffset":135372,"componentType":5120,"count":162,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_TANGENT"},{"bufferView":4,"byteOffset":135376,"componentType":5120,"count":162,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_NORMAL"},{"bufferView":4,"byteOffset":135380,"componentType":5122,"count":162,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_0"},{"bufferView":4,"byteOffset":135384,"componentType":5122,"count":162,"type":"VEC2","name":"x0_Livery_KLM_FuselageB_vertices#0_TEXCOORD_1"},{"bufferView":4,"byteOffset":135388,"componentType":5123,"count":162,"type":"VEC4","name":"x0_Livery_KLM_FuselageB_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":15312,"componentType":5123,"count":246,"type":"SCALAR","name":"x0_Livery_KLM_FuselageB_indices#0"},{"bufferView":6,"componentType":5126,"count":86,"min":[-29.925138473510742,-1.2699759006500244,-18.014118194580078],"max":[-2.896738052368164,3.286576509475708,3.572449207305908],"type":"VEC3","name":"x5_Wing_Right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":12,"componentType":5120,"count":86,"type":"VEC4","name":"x5_Wing_Right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":16,"componentType":5120,"count":86,"type":"VEC4","name":"x5_Wing_Right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":20,"componentType":5122,"count":86,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":24,"componentType":5122,"count":86,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":28,"componentType":5123,"count":86,"type":"VEC4","name":"x5_Wing_Right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":36,"componentType":5123,"count":86,"normalized":true,"type":"VEC4","name":"x5_Wing_Right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":44,"componentType":5120,"count":86,"type":"VEC4","name":"x5_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":15804,"componentType":5123,"count":144,"type":"SCALAR","name":"x5_Wing_Right_indices#0"},{"bufferView":6,"byteOffset":4128,"componentType":5126,"count":138,"min":[-11.659249305725098,-3.410271167755127,-6.902276039123535],"max":[-7.952917098999023,0.5221079587936401,4.482375621795654],"type":"VEC3","name":"x5_Wing_Right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":4140,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":4144,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":4148,"componentType":5122,"count":138,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":4152,"componentType":5122,"count":138,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":4156,"componentType":5123,"count":138,"type":"VEC4","name":"x5_Wing_Right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":4164,"componentType":5123,"count":138,"normalized":true,"type":"VEC4","name":"x5_Wing_Right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":4172,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":16092,"componentType":5123,"count":261,"type":"SCALAR","name":"x5_Wing_Right_indices#1"},{"bufferView":6,"byteOffset":10752,"componentType":5126,"count":36,"min":[-19.32276153564453,-0.3776338994503021,-10.847285270690918],"max":[-8.552604675292969,1.6263402700424194,-5.123663425445557],"type":"VEC3","name":"x5_Wing_Right_vertices#0_POSITION"},{"bufferView":6,"byteOffset":10764,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Right_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":10768,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Right_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":10772,"componentType":5122,"count":36,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":10776,"componentType":5122,"count":36,"type":"VEC2","name":"x5_Wing_Right_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":10780,"componentType":5123,"count":36,"type":"VEC4","name":"x5_Wing_Right_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":10788,"componentType":5123,"count":36,"normalized":true,"type":"VEC4","name":"x5_Wing_Right_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":10796,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Right_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":16614,"componentType":5123,"count":36,"type":"SCALAR","name":"x5_Wing_Right_indices#2"},{"bufferView":6,"byteOffset":12480,"componentType":5126,"count":76,"min":[2.893955945968628,-1.1830576658248901,-18.01411247253418],"max":[29.925128936767578,3.441606044769287,3.5660784244537354],"type":"VEC3","name":"x5_Wing_Left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":12492,"componentType":5120,"count":76,"type":"VEC4","name":"x5_Wing_Left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":12496,"componentType":5120,"count":76,"type":"VEC4","name":"x5_Wing_Left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":12500,"componentType":5122,"count":76,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":12504,"componentType":5122,"count":76,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":12508,"componentType":5123,"count":76,"type":"VEC4","name":"x5_Wing_Left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":12516,"componentType":5123,"count":76,"normalized":true,"type":"VEC4","name":"x5_Wing_Left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":12524,"componentType":5120,"count":76,"type":"VEC4","name":"x5_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":16686,"componentType":5123,"count":126,"type":"SCALAR","name":"x5_Wing_Left_indices#0"},{"bufferView":7,"componentType":5126,"count":138,"min":[7.952922344207764,-3.4102683067321777,-6.903364658355713],"max":[11.65925407409668,0.5221110582351685,4.482373237609863],"type":"VEC3","name":"x5_Wing_Left_vertices#0_POSITION"},{"bufferView":7,"byteOffset":12,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Left_vertices#0_TANGENT"},{"bufferView":7,"byteOffset":16,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Left_vertices#0_NORMAL"},{"bufferView":7,"byteOffset":20,"componentType":5122,"count":138,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":7,"byteOffset":24,"componentType":5122,"count":138,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":7,"byteOffset":28,"componentType":5123,"count":138,"type":"VEC4","name":"x5_Wing_Left_vertices#0_JOINTS_0"},{"bufferView":7,"byteOffset":36,"componentType":5126,"count":138,"type":"SCALAR","name":"x5_Wing_Left_vertices#0_WEIGHTS_0"},{"bufferView":7,"byteOffset":40,"componentType":5120,"count":138,"type":"VEC4","name":"x5_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":16938,"componentType":5123,"count":261,"type":"SCALAR","name":"x5_Wing_Left_indices#1"},{"bufferView":6,"byteOffset":16128,"componentType":5126,"count":36,"min":[8.552597045898438,-0.3776337802410126,-10.847882270812988],"max":[19.322750091552734,1.6263399124145508,-5.12366247177124],"type":"VEC3","name":"x5_Wing_Left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":16140,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":16144,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":16148,"componentType":5122,"count":36,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":16152,"componentType":5122,"count":36,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":16156,"componentType":5123,"count":36,"type":"VEC4","name":"x5_Wing_Left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":16164,"componentType":5123,"count":36,"normalized":true,"type":"VEC4","name":"x5_Wing_Left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":16172,"componentType":5120,"count":36,"type":"VEC4","name":"x5_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17460,"componentType":5123,"count":36,"type":"SCALAR","name":"x5_Wing_Left_indices#2"},{"bufferView":6,"byteOffset":17856,"componentType":5126,"count":4,"min":[19.140178680419922,1.390281319618225,-12.02985668182373],"max":[23.022136688232422,1.9423398971557617,-8.977127075195312],"type":"VEC3","name":"x5_Wing_Left_vertices#0_POSITION"},{"bufferView":6,"byteOffset":17868,"componentType":5120,"count":4,"type":"VEC4","name":"x5_Wing_Left_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":17872,"componentType":5120,"count":4,"type":"VEC4","name":"x5_Wing_Left_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":17876,"componentType":5122,"count":4,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":17880,"componentType":5122,"count":4,"type":"VEC2","name":"x5_Wing_Left_vertices#0_TEXCOORD_1"},{"bufferView":6,"byteOffset":17884,"componentType":5123,"count":4,"type":"VEC4","name":"x5_Wing_Left_vertices#0_JOINTS_0"},{"bufferView":6,"byteOffset":17892,"componentType":5123,"count":4,"normalized":true,"type":"VEC4","name":"x5_Wing_Left_vertices#0_WEIGHTS_0"},{"bufferView":6,"byteOffset":17900,"componentType":5120,"count":4,"type":"VEC4","name":"x5_Wing_Left_vertices#0_COLOR_0"},{"bufferView":5,"byteOffset":17532,"componentType":5123,"count":6,"type":"SCALAR","name":"x5_Wing_Left_indices#3"},{"bufferView":9,"byteOffset":28,"componentType":5123,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":16,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_NORMAL"},{"bufferView":9,"componentType":5126,"count":1084,"min":[-6.898191452026367,-2.385265350341797,-0.27293723821640015],"max":[4.0452880859375,0.5350360870361328,0.27293795347213745],"type":"VEC3","name":"x1_Rudder_center.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":12,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":20,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":24,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"componentType":5123,"count":5460,"type":"SCALAR","name":"x1_Rudder_center.001_indices#0"},{"bufferView":9,"byteOffset":39052,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":39040,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":39024,"componentType":5126,"count":43,"min":[-0.48449012637138367,0.054303597658872604,-0.7407507300376892],"max":[0.5785654187202454,0.16718320548534393,-0.044933248311281204],"type":"VEC3","name":"x1_Livery_C_Door_02_Left.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":39036,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":39044,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":39048,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":10920,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_Left.002_indices#0"},{"bufferView":9,"byteOffset":40600,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":40588,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":40572,"componentType":5126,"count":43,"min":[-0.5787447690963745,-0.16539137065410614,0.044925887137651443],"max":[0.4843108654022217,-0.05251185968518257,0.7407436966896057],"type":"VEC3","name":"x1_Livery_C_Door_02_right.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":40584,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":40592,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":40596,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":11100,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_right.002_indices#0"},{"bufferView":9,"byteOffset":42148,"componentType":5123,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":42136,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":42120,"componentType":5126,"count":345,"min":[-0.2698783874511719,-0.9995222091674805,-0.5886659622192383],"max":[0.0020599365234375,0.5340242385864258,0.5886745452880859],"type":"VEC3","name":"x0_Livery_KLM_DoorB.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":42132,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":42140,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":42144,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":11280,"componentType":5123,"count":906,"type":"SCALAR","name":"x0_Livery_KLM_DoorB.001_indices#0"},{"bufferView":9,"byteOffset":54568,"componentType":5123,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":54556,"componentType":5120,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":54540,"componentType":5126,"count":24,"min":[2.5483758449554443,1.5735995769500732,5.896169662475586],"max":[2.77527117729187,1.843569040298462,21.52033805847168],"type":"VEC3","name":"x0_Livery_KLM_FuselageA.005_vertices#0_POSITION"},{"bufferView":9,"byteOffset":54560,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":54564,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13092,"componentType":5123,"count":63,"type":"SCALAR","name":"x0_Livery_KLM_FuselageA.005_indices#0"},{"bufferView":9,"byteOffset":55432,"componentType":5123,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":55420,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":55404,"componentType":5126,"count":31,"min":[-0.27521419525146484,-0.27002182602882385,-1.6258187294006348],"max":[-0.24078130722045898,0.6198497414588928,1.8943886756896973],"type":"VEC3","name":"x0_R_Door01_left.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":55416,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":55424,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":55428,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13220,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_R_Door01_left.001_indices#0"},{"bufferView":9,"byteOffset":56548,"componentType":5123,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":56536,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":56520,"componentType":5126,"count":31,"min":[0.24078059196472168,-0.6198493242263794,-1.8943934440612793],"max":[0.27521395683288574,0.2700219750404358,1.625821590423584],"type":"VEC3","name":"x0_Door01_right.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":56532,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":56540,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":56544,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13396,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_Door01_right.001_indices#0"},{"bufferView":9,"byteOffset":57664,"componentType":5123,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":57652,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":57636,"componentType":5126,"count":2356,"min":[-0.5303040146827698,2.561161756515503,-39.11258316040039],"max":[0.5303040146827698,12.468074798583984,-25.891597747802734],"type":"VEC3","name":"livery_vstab_vertices#0_POSITION"},{"bufferView":9,"byteOffset":57648,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":57656,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":57660,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":13572,"componentType":5123,"count":12342,"type":"SCALAR","name":"livery_vstab_indices#0"},{"bufferView":9,"byteOffset":142480,"componentType":5123,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":142468,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":142452,"componentType":5126,"count":35,"min":[0.38646888732910156,-1.475200891494751,-1.4131393432617188],"max":[0.8847513198852539,-0.9122163653373718,1.4013233184814453],"type":"VEC3","name":"Cargo_Door_LIVERYDECAL_vertices#0_POSITION"},{"bufferView":9,"byteOffset":142464,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":142472,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":142476,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":38256,"componentType":5123,"count":120,"type":"SCALAR","name":"Cargo_Door_LIVERYDECAL_indices#0"},{"bufferView":9,"byteOffset":143740,"componentType":5123,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":143728,"componentType":5120,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":143712,"componentType":5126,"count":270,"min":[-2.8634743690490723,-0.27878737449645996,-25.152372360229492],"max":[2.863468647003174,2.3880088329315186,-20.129650115966797],"type":"VEC3","name":"Plane.002_vertices#0_POSITION"},{"bufferView":9,"byteOffset":143732,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":143736,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":38496,"componentType":5123,"count":918,"type":"SCALAR","name":"Plane.002_indices#0"},{"bufferView":9,"byteOffset":153460,"componentType":5123,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":153448,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":153432,"componentType":5126,"count":2765,"min":[-1.2694666385650635,-2.546407699584961,-15.50222110748291],"max":[1.269464135169983,-1.9093613624572754,8.595946311950684],"type":"VEC3","name":"Plane.004_vertices#0_POSITION"},{"bufferView":9,"byteOffset":153444,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":153452,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":153456,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":40332,"componentType":5123,"count":8436,"type":"SCALAR","name":"Plane.004_indices#0"},{"bufferView":9,"byteOffset":253000,"componentType":5123,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":252988,"componentType":5120,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":252972,"componentType":5126,"count":12650,"min":[-2.848564624786377,1.0104148387908936,-2.4503250122070312],"max":[2.848580837249756,2.654226064682007,19.7845458984375],"type":"VEC3","name":"Plane.001_vertices#0_POSITION"},{"bufferView":9,"byteOffset":252992,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":252996,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":57204,"componentType":5123,"count":39384,"type":"SCALAR","name":"Plane.001_indices#0"},{"bufferView":9,"byteOffset":708400,"componentType":5123,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":708388,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":708372,"componentType":5126,"count":92,"min":[-2.3540401458740234,0.9106197357177734,23.448795318603516],"max":[2.3526997566223145,1.9353947639465332,24.303451538085938],"type":"VEC3","name":"Plane.003_vertices#0_POSITION"},{"bufferView":9,"byteOffset":708384,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":708392,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":708396,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":135972,"componentType":5123,"count":336,"type":"SCALAR","name":"Plane.003_indices#0"},{"bufferView":9,"byteOffset":711712,"componentType":5123,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_COLOR_0"},{"bufferView":9,"byteOffset":711700,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_NORMAL"},{"bufferView":9,"byteOffset":711684,"componentType":5126,"count":3715,"min":[-3.255725383758545,-1.545548439025879,-30.79000473022461],"max":[3.2557260990142822,-0.9825637340545654,28.268733978271484],"type":"VEC3","name":"Plane.008_vertices#0_POSITION"},{"bufferView":9,"byteOffset":711696,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_TANGENT"},{"bufferView":9,"byteOffset":711704,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_0"},{"bufferView":9,"byteOffset":711708,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_1"},{"bufferView":8,"byteOffset":136644,"componentType":5123,"count":11496,"type":"SCALAR","name":"Plane.008_indices#0"},{"bufferView":10,"componentType":5126,"count":81,"min":[0.041666666666666664],"max":[3.375],"type":"SCALAR"},{"bufferView":11,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":12,"componentType":5126,"count":81,"type":"VEC4"},{"bufferView":13,"componentType":5126,"count":161,"min":[0.041666666666666664],"max":[6.708333333333333],"type":"SCALAR"},{"bufferView":14,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":15,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":16,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":17,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":18,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":19,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":20,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":21,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":22,"componentType":5126,"count":81,"type":"VEC4"}],"animations":[{"name":"c_gear","channels":[{"sampler":0,"target":{"node":114,"path":"translation"}},{"sampler":1,"target":{"node":114,"path":"rotation"}},{"sampler":2,"target":{"node":131,"path":"translation"}},{"sampler":3,"target":{"node":131,"path":"rotation"}},{"sampler":4,"target":{"node":131,"path":"scale"}},{"sampler":5,"target":{"node":132,"path":"translation"}},{"sampler":6,"target":{"node":132,"path":"rotation"}},{"sampler":7,"target":{"node":132,"path":"scale"}},{"sampler":8,"target":{"node":5,"path":"rotation"}},{"sampler":9,"target":{"node":128,"path":"translation"}},{"sampler":10,"target":{"node":128,"path":"rotation"}},{"sampler":11,"target":{"node":128,"path":"scale"}},{"sampler":12,"target":{"node":2,"path":"rotation"}},{"sampler":13,"target":{"node":136,"path":"translation"}},{"sampler":14,"target":{"node":136,"path":"rotation"}},{"sampler":15,"target":{"node":136,"path":"scale"}},{"sampler":16,"target":{"node":137,"path":"translation"}},{"sampler":17,"target":{"node":137,"path":"rotation"}},{"sampler":18,"target":{"node":137,"path":"scale"}},{"sampler":19,"target":{"node":139,"path":"translation"}},{"sampler":20,"target":{"node":139,"path":"rotation"}},{"sampler":21,"target":{"node":139,"path":"scale"}},{"sampler":22,"target":{"node":138,"path":"translation"}},{"sampler":23,"target":{"node":138,"path":"rotation"}},{"sampler":24,"target":{"node":138,"path":"scale"}},{"sampler":25,"target":{"node":7,"path":"rotation"}},{"sampler":26,"target":{"node":10,"path":"rotation"}},{"sampler":27,"target":{"node":11,"path":"translation"}},{"sampler":28,"target":{"node":11,"path":"rotation"}},{"sampler":29,"target":{"node":11,"path":"scale"}},{"sampler":30,"target":{"node":120,"path":"translation"}},{"sampler":31,"target":{"node":120,"path":"rotation"}},{"sampler":32,"target":{"node":120,"path":"scale"}},{"sampler":33,"target":{"node":121,"path":"translation"}},{"sampler":34,"target":{"node":121,"path":"rotation"}},{"sampler":35,"target":{"node":121,"path":"scale"}},{"sampler":36,"target":{"node":123,"path":"translation"}},{"sampler":37,"target":{"node":123,"path":"rotation"}},{"sampler":38,"target":{"node":123,"path":"scale"}},{"sampler":39,"target":{"node":129,"path":"translation"}},{"sampler":40,"target":{"node":129,"path":"rotation"}},{"sampler":41,"target":{"node":129,"path":"scale"}},{"sampler":42,"target":{"node":8,"path":"translation"}},{"sampler":43,"target":{"node":8,"path":"rotation"}},{"sampler":44,"target":{"node":8,"path":"scale"}},{"sampler":45,"target":{"node":3,"path":"rotation"}},{"sampler":46,"target":{"node":3,"path":"scale"}},{"sampler":47,"target":{"node":6,"path":"translation"}},{"sampler":48,"target":{"node":6,"path":"rotation"}},{"sampler":49,"target":{"node":6,"path":"scale"}},{"sampler":50,"target":{"node":130,"path":"translation"}},{"sampler":51,"target":{"node":130,"path":"rotation"}},{"sampler":52,"target":{"node":130,"path":"scale"}},{"sampler":53,"target":{"node":133,"path":"translation"}},{"sampler":54,"target":{"node":133,"path":"rotation"}},{"sampler":55,"target":{"node":133,"path":"scale"}},{"sampler":56,"target":{"node":134,"path":"translation"}},{"sampler":57,"target":{"node":134,"path":"rotation"}},{"sampler":58,"target":{"node":134,"path":"scale"}},{"sampler":59,"target":{"node":122,"path":"translation"}},{"sampler":60,"target":{"node":122,"path":"rotation"}},{"sampler":61,"target":{"node":122,"path":"scale"}},{"sampler":62,"target":{"node":125,"path":"translation"}},{"sampler":63,"target":{"node":125,"path":"rotation"}},{"sampler":64,"target":{"node":125,"path":"scale"}},{"sampler":65,"target":{"node":126,"path":"translation"}},{"sampler":66,"target":{"node":126,"path":"rotation"}},{"sampler":67,"target":{"node":126,"path":"scale"}},{"sampler":68,"target":{"node":127,"path":"translation"}},{"sampler":69,"target":{"node":127,"path":"rotation"}},{"sampler":70,"target":{"node":127,"path":"scale"}}],"samplers":[{"input":2,"output":3,"interpolation":"LINEAR"},{"input":4,"output":5,"interpolation":"LINEAR"},{"input":6,"output":7,"interpolation":"LINEAR"},{"input":8,"output":9,"interpolation":"LINEAR"},{"input":10,"output":11,"interpolation":"LINEAR"},{"input":12,"output":13,"interpolation":"LINEAR"},{"input":14,"output":15,"interpolation":"LINEAR"},{"input":16,"output":17,"interpolation":"LINEAR"},{"input":18,"output":19,"interpolation":"LINEAR"},{"input":20,"output":21,"interpolation":"LINEAR"},{"input":22,"output":23,"interpolation":"LINEAR"},{"input":24,"output":25,"interpolation":"LINEAR"},{"input":26,"output":27,"interpolation":"LINEAR"},{"input":28,"output":29,"interpolation":"LINEAR"},{"input":30,"output":31,"interpolation":"LINEAR"},{"input":32,"output":33,"interpolation":"LINEAR"},{"input":34,"output":35,"interpolation":"LINEAR"},{"input":36,"output":37,"interpolation":"LINEAR"},{"input":38,"output":39,"interpolation":"LINEAR"},{"input":40,"output":41,"interpolation":"LINEAR"},{"input":42,"output":43,"interpolation":"LINEAR"},{"input":44,"output":45,"interpolation":"LINEAR"},{"input":46,"output":47,"interpolation":"LINEAR"},{"input":48,"output":49,"interpolation":"LINEAR"},{"input":50,"output":51,"interpolation":"LINEAR"},{"input":52,"output":53,"interpolation":"LINEAR"},{"input":54,"output":55,"interpolation":"LINEAR"},{"input":56,"output":57,"interpolation":"LINEAR"},{"input":58,"output":59,"interpolation":"LINEAR"},{"input":60,"output":61,"interpolation":"LINEAR"},{"input":62,"output":63,"interpolation":"LINEAR"},{"input":64,"output":65,"interpolation":"LINEAR"},{"input":66,"output":67,"interpolation":"LINEAR"},{"input":68,"output":69,"interpolation":"LINEAR"},{"input":70,"output":71,"interpolation":"LINEAR"},{"input":72,"output":73,"interpolation":"LINEAR"},{"input":74,"output":75,"interpolation":"LINEAR"},{"input":76,"output":77,"interpolation":"LINEAR"},{"input":78,"output":79,"interpolation":"LINEAR"},{"input":80,"output":81,"interpolation":"LINEAR"},{"input":82,"output":83,"interpolation":"LINEAR"},{"input":84,"output":85,"interpolation":"LINEAR"},{"input":86,"output":87,"interpolation":"LINEAR"},{"input":88,"output":89,"interpolation":"LINEAR"},{"input":90,"output":91,"interpolation":"LINEAR"},{"input":92,"output":93,"interpolation":"LINEAR"},{"input":94,"output":95,"interpolation":"LINEAR"},{"input":96,"output":97,"interpolation":"LINEAR"},{"input":98,"output":99,"interpolation":"LINEAR"},{"input":100,"output":101,"interpolation":"LINEAR"},{"input":102,"output":103,"interpolation":"LINEAR"},{"input":104,"output":105,"interpolation":"LINEAR"},{"input":106,"output":107,"interpolation":"LINEAR"},{"input":108,"output":109,"interpolation":"LINEAR"},{"input":110,"output":111,"interpolation":"LINEAR"},{"input":112,"output":113,"interpolation":"LINEAR"},{"input":114,"output":115,"interpolation":"LINEAR"},{"input":116,"output":117,"interpolation":"LINEAR"},{"input":118,"output":119,"interpolation":"LINEAR"},{"input":120,"output":121,"interpolation":"LINEAR"},{"input":122,"output":123,"interpolation":"LINEAR"},{"input":124,"output":125,"interpolation":"LINEAR"},{"input":126,"output":127,"interpolation":"LINEAR"},{"input":128,"output":129,"interpolation":"LINEAR"},{"input":130,"output":131,"interpolation":"LINEAR"},{"input":132,"output":133,"interpolation":"LINEAR"},{"input":134,"output":135,"interpolation":"LINEAR"},{"input":136,"output":137,"interpolation":"LINEAR"},{"input":138,"output":139,"interpolation":"LINEAR"},{"input":140,"output":141,"interpolation":"LINEAR"},{"input":142,"output":143,"interpolation":"LINEAR"}]},{"name":"c_tire_key","channels":[{"sampler":0,"target":{"node":124,"path":"rotation"}}],"samplers":[{"input":144,"output":145,"interpolation":"LINEAR"}]},{"name":"c_wheel","channels":[{"sampler":0,"target":{"node":119,"path":"translation"}},{"sampler":1,"target":{"node":119,"path":"rotation"}},{"sampler":2,"target":{"node":119,"path":"scale"}},{"sampler":3,"target":{"node":115,"path":"translation"}},{"sampler":4,"target":{"node":115,"path":"rotation"}},{"sampler":5,"target":{"node":115,"path":"scale"}},{"sampler":6,"target":{"node":116,"path":"translation"}},{"sampler":7,"target":{"node":116,"path":"rotation"}},{"sampler":8,"target":{"node":116,"path":"scale"}},{"sampler":9,"target":{"node":117,"path":"translation"}},{"sampler":10,"target":{"node":117,"path":"rotation"}},{"sampler":11,"target":{"node":117,"path":"scale"}},{"sampler":12,"target":{"node":118,"path":"translation"}},{"sampler":13,"target":{"node":118,"path":"rotation"}},{"sampler":14,"target":{"node":118,"path":"scale"}}],"samplers":[{"input":146,"output":147,"interpolation":"LINEAR"},{"input":148,"output":149,"interpolation":"LINEAR"},{"input":150,"output":151,"interpolation":"LINEAR"},{"input":152,"output":153,"interpolation":"LINEAR"},{"input":154,"output":155,"interpolation":"LINEAR"},{"input":156,"output":157,"interpolation":"LINEAR"},{"input":158,"output":159,"interpolation":"LINEAR"},{"input":160,"output":161,"interpolation":"LINEAR"},{"input":162,"output":163,"interpolation":"LINEAR"},{"input":164,"output":165,"interpolation":"LINEAR"},{"input":166,"output":167,"interpolation":"LINEAR"},{"input":168,"output":169,"interpolation":"LINEAR"},{"input":170,"output":171,"interpolation":"LINEAR"},{"input":172,"output":173,"interpolation":"LINEAR"},{"input":174,"output":175,"interpolation":"LINEAR"}]},{"name":"elevator_percent_key","channels":[{"sampler":0,"target":{"node":14,"path":"translation"}},{"sampler":1,"target":{"node":14,"path":"rotation"}},{"sampler":2,"target":{"node":14,"path":"scale"}},{"sampler":3,"target":{"node":143,"path":"translation"}},{"sampler":4,"target":{"node":143,"path":"rotation"}},{"sampler":5,"target":{"node":143,"path":"scale"}}],"samplers":[{"input":176,"output":177,"interpolation":"LINEAR"},{"input":178,"output":179,"interpolation":"LINEAR"},{"input":180,"output":181,"interpolation":"LINEAR"},{"input":182,"output":183,"interpolation":"LINEAR"},{"input":184,"output":185,"interpolation":"LINEAR"},{"input":186,"output":187,"interpolation":"LINEAR"}]},{"name":"l_aileron_percent_key","channels":[{"sampler":0,"target":{"node":23,"path":"translation"}},{"sampler":1,"target":{"node":23,"path":"rotation"}},{"sampler":2,"target":{"node":23,"path":"scale"}},{"sampler":3,"target":{"node":22,"path":"translation"}},{"sampler":4,"target":{"node":22,"path":"rotation"}},{"sampler":5,"target":{"node":22,"path":"scale"}}],"samplers":[{"input":188,"output":189,"interpolation":"LINEAR"},{"input":190,"output":191,"interpolation":"LINEAR"},{"input":192,"output":193,"interpolation":"LINEAR"},{"input":194,"output":195,"interpolation":"LINEAR"},{"input":196,"output":197,"interpolation":"LINEAR"},{"input":198,"output":199,"interpolation":"LINEAR"}]},{"name":"l_flap_percent_key","channels":[{"sampler":0,"target":{"node":38,"path":"translation"}},{"sampler":1,"target":{"node":38,"path":"rotation"}},{"sampler":2,"target":{"node":27,"path":"translation"}},{"sampler":3,"target":{"node":27,"path":"rotation"}},{"sampler":4,"target":{"node":28,"path":"rotation"}},{"sampler":5,"target":{"node":39,"path":"translation"}},{"sampler":6,"target":{"node":39,"path":"rotation"}},{"sampler":7,"target":{"node":39,"path":"scale"}},{"sampler":8,"target":{"node":49,"path":"translation"}},{"sampler":9,"target":{"node":49,"path":"rotation"}},{"sampler":10,"target":{"node":49,"path":"scale"}},{"sampler":11,"target":{"node":50,"path":"rotation"}}],"samplers":[{"input":200,"output":201,"interpolation":"LINEAR"},{"input":202,"output":203,"interpolation":"LINEAR"},{"input":204,"output":205,"interpolation":"LINEAR"},{"input":206,"output":207,"interpolation":"LINEAR"},{"input":208,"output":209,"interpolation":"LINEAR"},{"input":210,"output":211,"interpolation":"LINEAR"},{"input":212,"output":213,"interpolation":"LINEAR"},{"input":214,"output":215,"interpolation":"LINEAR"},{"input":216,"output":217,"interpolation":"LINEAR"},{"input":218,"output":219,"interpolation":"LINEAR"},{"input":220,"output":221,"interpolation":"LINEAR"},{"input":222,"output":223,"interpolation":"LINEAR"}]},{"name":"l_spoiler_key","channels":[{"sampler":0,"target":{"node":33,"path":"translation"}},{"sampler":1,"target":{"node":33,"path":"rotation"}},{"sampler":2,"target":{"node":33,"path":"scale"}},{"sampler":3,"target":{"node":34,"path":"translation"}},{"sampler":4,"target":{"node":34,"path":"rotation"}},{"sampler":5,"target":{"node":34,"path":"scale"}},{"sampler":6,"target":{"node":35,"path":"translation"}},{"sampler":7,"target":{"node":35,"path":"rotation"}},{"sampler":8,"target":{"node":35,"path":"scale"}},{"sampler":9,"target":{"node":31,"path":"translation"}},{"sampler":10,"target":{"node":31,"path":"rotation"}},{"sampler":11,"target":{"node":31,"path":"scale"}},{"sampler":12,"target":{"node":25,"path":"translation"}},{"sampler":13,"target":{"node":25,"path":"rotation"}},{"sampler":14,"target":{"node":25,"path":"scale"}},{"sampler":15,"target":{"node":29,"path":"translation"}},{"sampler":16,"target":{"node":29,"path":"rotation"}},{"sampler":17,"target":{"node":29,"path":"scale"}},{"sampler":18,"target":{"node":30,"path":"translation"}},{"sampler":19,"target":{"node":30,"path":"rotation"}},{"sampler":20,"target":{"node":30,"path":"scale"}},{"sampler":21,"target":{"node":26,"path":"translation"}},{"sampler":22,"target":{"node":26,"path":"rotation"}},{"sampler":23,"target":{"node":26,"path":"scale"}},{"sampler":24,"target":{"node":45,"path":"translation"}},{"sampler":25,"target":{"node":45,"path":"rotation"}},{"sampler":26,"target":{"node":45,"path":"scale"}},{"sampler":27,"target":{"node":46,"path":"translation"}},{"sampler":28,"target":{"node":46,"path":"rotation"}},{"sampler":29,"target":{"node":46,"path":"scale"}},{"sampler":30,"target":{"node":37,"path":"translation"}},{"sampler":31,"target":{"node":37,"path":"rotation"}},{"sampler":32,"target":{"node":37,"path":"scale"}},{"sampler":33,"target":{"node":106,"path":"translation"}},{"sampler":34,"target":{"node":106,"path":"rotation"}},{"sampler":35,"target":{"node":106,"path":"scale"}},{"sampler":36,"target":{"node":107,"path":"translation"}},{"sampler":37,"target":{"node":107,"path":"rotation"}},{"sampler":38,"target":{"node":107,"path":"scale"}},{"sampler":39,"target":{"node":105,"path":"translation"}},{"sampler":40,"target":{"node":105,"path":"rotation"}},{"sampler":41,"target":{"node":105,"path":"scale"}},{"sampler":42,"target":{"node":103,"path":"translation"}},{"sampler":43,"target":{"node":103,"path":"rotation"}},{"sampler":44,"target":{"node":103,"path":"scale"}},{"sampler":45,"target":{"node":108,"path":"translation"}},{"sampler":46,"target":{"node":108,"path":"rotation"}},{"sampler":47,"target":{"node":108,"path":"scale"}},{"sampler":48,"target":{"node":109,"path":"translation"}},{"sampler":49,"target":{"node":109,"path":"rotation"}},{"sampler":50,"target":{"node":109,"path":"scale"}},{"sampler":51,"target":{"node":104,"path":"translation"}},{"sampler":52,"target":{"node":104,"path":"rotation"}},{"sampler":53,"target":{"node":104,"path":"scale"}},{"sampler":54,"target":{"node":88,"path":"translation"}},{"sampler":55,"target":{"node":88,"path":"rotation"}},{"sampler":56,"target":{"node":88,"path":"scale"}},{"sampler":57,"target":{"node":89,"path":"translation"}},{"sampler":58,"target":{"node":89,"path":"rotation"}},{"sampler":59,"target":{"node":89,"path":"scale"}}],"samplers":[{"input":224,"output":225,"interpolation":"LINEAR"},{"input":226,"output":227,"interpolation":"LINEAR"},{"input":228,"output":229,"interpolation":"LINEAR"},{"input":230,"output":231,"interpolation":"LINEAR"},{"input":232,"output":233,"interpolation":"LINEAR"},{"input":234,"output":235,"interpolation":"LINEAR"},{"input":236,"output":237,"interpolation":"LINEAR"},{"input":238,"output":239,"interpolation":"LINEAR"},{"input":240,"output":241,"interpolation":"LINEAR"},{"input":242,"output":243,"interpolation":"LINEAR"},{"input":244,"output":245,"interpolation":"LINEAR"},{"input":246,"output":247,"interpolation":"LINEAR"},{"input":248,"output":249,"interpolation":"LINEAR"},{"input":250,"output":251,"interpolation":"LINEAR"},{"input":252,"output":253,"interpolation":"LINEAR"},{"input":254,"output":255,"interpolation":"LINEAR"},{"input":256,"output":257,"interpolation":"LINEAR"},{"input":258,"output":259,"interpolation":"LINEAR"},{"input":260,"output":261,"interpolation":"LINEAR"},{"input":262,"output":263,"interpolation":"LINEAR"},{"input":264,"output":265,"interpolation":"LINEAR"},{"input":266,"output":267,"interpolation":"LINEAR"},{"input":268,"output":269,"interpolation":"LINEAR"},{"input":270,"output":271,"interpolation":"LINEAR"},{"input":272,"output":273,"interpolation":"LINEAR"},{"input":274,"output":275,"interpolation":"LINEAR"},{"input":276,"output":277,"interpolation":"LINEAR"},{"input":278,"output":279,"interpolation":"LINEAR"},{"input":280,"output":281,"interpolation":"LINEAR"},{"input":282,"output":283,"interpolation":"LINEAR"},{"input":284,"output":285,"interpolation":"LINEAR"},{"input":286,"output":287,"interpolation":"LINEAR"},{"input":288,"output":289,"interpolation":"LINEAR"},{"input":290,"output":291,"interpolation":"LINEAR"},{"input":292,"output":293,"interpolation":"LINEAR"},{"input":294,"output":295,"interpolation":"LINEAR"},{"input":296,"output":297,"interpolation":"LINEAR"},{"input":298,"output":299,"interpolation":"LINEAR"},{"input":300,"output":301,"interpolation":"LINEAR"},{"input":302,"output":303,"interpolation":"LINEAR"},{"input":304,"output":305,"interpolation":"LINEAR"},{"input":306,"output":307,"interpolation":"LINEAR"},{"input":308,"output":309,"interpolation":"LINEAR"},{"input":310,"output":311,"interpolation":"LINEAR"},{"input":312,"output":313,"interpolation":"LINEAR"},{"input":314,"output":315,"interpolation":"LINEAR"},{"input":316,"output":317,"interpolation":"LINEAR"},{"input":318,"output":319,"interpolation":"LINEAR"},{"input":320,"output":321,"interpolation":"LINEAR"},{"input":322,"output":323,"interpolation":"LINEAR"},{"input":324,"output":325,"interpolation":"LINEAR"},{"input":326,"output":327,"interpolation":"LINEAR"},{"input":328,"output":329,"interpolation":"LINEAR"},{"input":330,"output":331,"interpolation":"LINEAR"},{"input":332,"output":333,"interpolation":"LINEAR"},{"input":334,"output":335,"interpolation":"LINEAR"},{"input":336,"output":337,"interpolation":"LINEAR"},{"input":338,"output":339,"interpolation":"LINEAR"},{"input":340,"output":341,"interpolation":"LINEAR"},{"input":342,"output":343,"interpolation":"LINEAR"}]},{"name":"l_tire_key","channels":[{"sampler":0,"target":{"node":82,"path":"translation"}},{"sampler":1,"target":{"node":82,"path":"rotation"}},{"sampler":2,"target":{"node":82,"path":"scale"}},{"sampler":3,"target":{"node":83,"path":"translation"}},{"sampler":4,"target":{"node":83,"path":"rotation"}},{"sampler":5,"target":{"node":83,"path":"scale"}}],"samplers":[{"input":344,"output":345,"interpolation":"LINEAR"},{"input":346,"output":347,"interpolation":"LINEAR"},{"input":348,"output":349,"interpolation":"LINEAR"},{"input":350,"output":351,"interpolation":"LINEAR"},{"input":352,"output":353,"interpolation":"LINEAR"},{"input":354,"output":355,"interpolation":"LINEAR"}]},{"name":"rudder_percent_key","channels":[{"sampler":0,"target":{"node":1,"path":"translation"}},{"sampler":1,"target":{"node":1,"path":"rotation"}},{"sampler":2,"target":{"node":1,"path":"scale"}}],"samplers":[{"input":356,"output":357,"interpolation":"LINEAR"},{"input":358,"output":359,"interpolation":"LINEAR"},{"input":360,"output":361,"interpolation":"LINEAR"}]},{"name":"thrust_rev_1","channels":[{"sampler":0,"target":{"node":101,"path":"translation"}},{"sampler":1,"target":{"node":101,"path":"rotation"}},{"sampler":2,"target":{"node":101,"path":"scale"}}],"samplers":[{"input":362,"output":363,"interpolation":"LINEAR"},{"input":364,"output":365,"interpolation":"LINEAR"},{"input":366,"output":367,"interpolation":"LINEAR"}]},{"name":"trimtab_elevator_key","channels":[{"sampler":0,"target":{"node":13,"path":"translation"}},{"sampler":1,"target":{"node":13,"path":"rotation"}},{"sampler":2,"target":{"node":13,"path":"scale"}},{"sampler":3,"target":{"node":142,"path":"translation"}},{"sampler":4,"target":{"node":142,"path":"rotation"}},{"sampler":5,"target":{"node":142,"path":"scale"}}],"samplers":[{"input":368,"output":369,"interpolation":"LINEAR"},{"input":370,"output":371,"interpolation":"LINEAR"},{"input":372,"output":373,"interpolation":"LINEAR"},{"input":374,"output":375,"interpolation":"LINEAR"},{"input":376,"output":377,"interpolation":"LINEAR"},{"input":378,"output":379,"interpolation":"LINEAR"}]},{"name":"l_gear","channels":[{"sampler":0,"target":{"node":52,"path":"translation"}},{"sampler":1,"target":{"node":52,"path":"rotation"}},{"sampler":2,"target":{"node":52,"path":"scale"}},{"sampler":3,"target":{"node":53,"path":"translation"}},{"sampler":4,"target":{"node":53,"path":"rotation"}},{"sampler":5,"target":{"node":53,"path":"scale"}},{"sampler":6,"target":{"node":54,"path":"translation"}},{"sampler":7,"target":{"node":54,"path":"rotation"}},{"sampler":8,"target":{"node":54,"path":"scale"}},{"sampler":9,"target":{"node":55,"path":"translation"}},{"sampler":10,"target":{"node":55,"path":"rotation"}},{"sampler":11,"target":{"node":55,"path":"scale"}},{"sampler":12,"target":{"node":56,"path":"translation"}},{"sampler":13,"target":{"node":56,"path":"rotation"}},{"sampler":14,"target":{"node":56,"path":"scale"}},{"sampler":15,"target":{"node":57,"path":"translation"}},{"sampler":16,"target":{"node":57,"path":"rotation"}},{"sampler":17,"target":{"node":57,"path":"scale"}},{"sampler":18,"target":{"node":58,"path":"translation"}},{"sampler":19,"target":{"node":58,"path":"rotation"}},{"sampler":20,"target":{"node":58,"path":"scale"}},{"sampler":21,"target":{"node":59,"path":"translation"}},{"sampler":22,"target":{"node":59,"path":"rotation"}},{"sampler":23,"target":{"node":59,"path":"scale"}},{"sampler":24,"target":{"node":60,"path":"translation"}},{"sampler":25,"target":{"node":60,"path":"rotation"}},{"sampler":26,"target":{"node":60,"path":"scale"}},{"sampler":27,"target":{"node":61,"path":"translation"}},{"sampler":28,"target":{"node":61,"path":"rotation"}},{"sampler":29,"target":{"node":61,"path":"scale"}},{"sampler":30,"target":{"node":62,"path":"translation"}},{"sampler":31,"target":{"node":62,"path":"rotation"}},{"sampler":32,"target":{"node":62,"path":"scale"}},{"sampler":33,"target":{"node":63,"path":"translation"}},{"sampler":34,"target":{"node":63,"path":"rotation"}},{"sampler":35,"target":{"node":63,"path":"scale"}},{"sampler":36,"target":{"node":64,"path":"translation"}},{"sampler":37,"target":{"node":64,"path":"rotation"}},{"sampler":38,"target":{"node":64,"path":"scale"}},{"sampler":39,"target":{"node":65,"path":"translation"}},{"sampler":40,"target":{"node":65,"path":"rotation"}},{"sampler":41,"target":{"node":65,"path":"scale"}},{"sampler":42,"target":{"node":66,"path":"translation"}},{"sampler":43,"target":{"node":66,"path":"rotation"}},{"sampler":44,"target":{"node":66,"path":"scale"}},{"sampler":45,"target":{"node":67,"path":"translation"}},{"sampler":46,"target":{"node":67,"path":"rotation"}},{"sampler":47,"target":{"node":67,"path":"scale"}},{"sampler":48,"target":{"node":68,"path":"translation"}},{"sampler":49,"target":{"node":68,"path":"rotation"}},{"sampler":50,"target":{"node":68,"path":"scale"}},{"sampler":51,"target":{"node":69,"path":"translation"}},{"sampler":52,"target":{"node":69,"path":"rotation"}},{"sampler":53,"target":{"node":69,"path":"scale"}},{"sampler":54,"target":{"node":70,"path":"translation"}},{"sampler":55,"target":{"node":70,"path":"rotation"}},{"sampler":56,"target":{"node":70,"path":"scale"}},{"sampler":57,"target":{"node":73,"path":"translation"}},{"sampler":58,"target":{"node":73,"path":"rotation"}},{"sampler":59,"target":{"node":73,"path":"scale"}},{"sampler":60,"target":{"node":74,"path":"translation"}},{"sampler":61,"target":{"node":74,"path":"rotation"}},{"sampler":62,"target":{"node":74,"path":"scale"}},{"sampler":63,"target":{"node":76,"path":"translation"}},{"sampler":64,"target":{"node":76,"path":"rotation"}},{"sampler":65,"target":{"node":76,"path":"scale"}},{"sampler":66,"target":{"node":77,"path":"translation"}},{"sampler":67,"target":{"node":77,"path":"rotation"}},{"sampler":68,"target":{"node":77,"path":"scale"}},{"sampler":69,"target":{"node":78,"path":"translation"}},{"sampler":70,"target":{"node":78,"path":"rotation"}},{"sampler":71,"target":{"node":78,"path":"scale"}},{"sampler":72,"target":{"node":81,"path":"translation"}},{"sampler":73,"target":{"node":81,"path":"rotation"}},{"sampler":74,"target":{"node":81,"path":"scale"}},{"sampler":75,"target":{"node":86,"path":"translation"}},{"sampler":76,"target":{"node":86,"path":"rotation"}},{"sampler":77,"target":{"node":86,"path":"scale"}},{"sampler":78,"target":{"node":87,"path":"translation"}},{"sampler":79,"target":{"node":87,"path":"rotation"}},{"sampler":80,"target":{"node":87,"path":"scale"}},{"sampler":81,"target":{"node":94,"path":"translation"}},{"sampler":82,"target":{"node":94,"path":"rotation"}},{"sampler":83,"target":{"node":94,"path":"scale"}},{"sampler":84,"target":{"node":93,"path":"translation"}},{"sampler":85,"target":{"node":93,"path":"rotation"}},{"sampler":86,"target":{"node":93,"path":"scale"}},{"sampler":87,"target":{"node":92,"path":"translation"}},{"sampler":88,"target":{"node":92,"path":"rotation"}},{"sampler":89,"target":{"node":92,"path":"scale"}},{"sampler":90,"target":{"node":90,"path":"translation"}},{"sampler":91,"target":{"node":90,"path":"rotation"}},{"sampler":92,"target":{"node":90,"path":"scale"}},{"sampler":93,"target":{"node":91,"path":"translation"}},{"sampler":94,"target":{"node":91,"path":"rotation"}},{"sampler":95,"target":{"node":91,"path":"scale"}},{"sampler":96,"target":{"node":112,"path":"translation"}},{"sampler":97,"target":{"node":112,"path":"rotation"}},{"sampler":98,"target":{"node":112,"path":"scale"}},{"sampler":99,"target":{"node":113,"path":"translation"}},{"sampler":100,"target":{"node":113,"path":"rotation"}},{"sampler":101,"target":{"node":113,"path":"scale"}},{"sampler":102,"target":{"node":111,"path":"translation"}},{"sampler":103,"target":{"node":111,"path":"rotation"}},{"sampler":104,"target":{"node":111,"path":"scale"}}],"samplers":[{"input":380,"output":381,"interpolation":"LINEAR"},{"input":382,"output":383,"interpolation":"LINEAR"},{"input":384,"output":385,"interpolation":"LINEAR"},{"input":386,"output":387,"interpolation":"LINEAR"},{"input":388,"output":389,"interpolation":"LINEAR"},{"input":390,"output":391,"interpolation":"LINEAR"},{"input":392,"output":393,"interpolation":"LINEAR"},{"input":394,"output":395,"interpolation":"LINEAR"},{"input":396,"output":397,"interpolation":"LINEAR"},{"input":398,"output":399,"interpolation":"LINEAR"},{"input":400,"output":401,"interpolation":"LINEAR"},{"input":402,"output":403,"interpolation":"LINEAR"},{"input":404,"output":405,"interpolation":"LINEAR"},{"input":406,"output":407,"interpolation":"LINEAR"},{"input":408,"output":409,"interpolation":"LINEAR"},{"input":410,"output":411,"interpolation":"LINEAR"},{"input":412,"output":413,"interpolation":"LINEAR"},{"input":414,"output":415,"interpolation":"LINEAR"},{"input":416,"output":417,"interpolation":"LINEAR"},{"input":418,"output":419,"interpolation":"LINEAR"},{"input":420,"output":421,"interpolation":"LINEAR"},{"input":422,"output":423,"interpolation":"LINEAR"},{"input":424,"output":425,"interpolation":"LINEAR"},{"input":426,"output":427,"interpolation":"LINEAR"},{"input":428,"output":429,"interpolation":"LINEAR"},{"input":430,"output":431,"interpolation":"LINEAR"},{"input":432,"output":433,"interpolation":"LINEAR"},{"input":434,"output":435,"interpolation":"LINEAR"},{"input":436,"output":437,"interpolation":"LINEAR"},{"input":438,"output":439,"interpolation":"LINEAR"},{"input":440,"output":441,"interpolation":"LINEAR"},{"input":442,"output":443,"interpolation":"LINEAR"},{"input":444,"output":445,"interpolation":"LINEAR"},{"input":446,"output":447,"interpolation":"LINEAR"},{"input":448,"output":449,"interpolation":"LINEAR"},{"input":450,"output":451,"interpolation":"LINEAR"},{"input":452,"output":453,"interpolation":"LINEAR"},{"input":454,"output":455,"interpolation":"LINEAR"},{"input":456,"output":457,"interpolation":"LINEAR"},{"input":458,"output":459,"interpolation":"LINEAR"},{"input":460,"output":461,"interpolation":"LINEAR"},{"input":462,"output":463,"interpolation":"LINEAR"},{"input":464,"output":465,"interpolation":"LINEAR"},{"input":466,"output":467,"interpolation":"LINEAR"},{"input":468,"output":469,"interpolation":"LINEAR"},{"input":470,"output":471,"interpolation":"LINEAR"},{"input":472,"output":473,"interpolation":"LINEAR"},{"input":474,"output":475,"interpolation":"LINEAR"},{"input":476,"output":477,"interpolation":"LINEAR"},{"input":478,"output":479,"interpolation":"LINEAR"},{"input":480,"output":481,"interpolation":"LINEAR"},{"input":482,"output":483,"interpolation":"LINEAR"},{"input":484,"output":485,"interpolation":"LINEAR"},{"input":486,"output":487,"interpolation":"LINEAR"},{"input":488,"output":489,"interpolation":"LINEAR"},{"input":490,"output":491,"interpolation":"LINEAR"},{"input":492,"output":493,"interpolation":"LINEAR"},{"input":494,"output":495,"interpolation":"LINEAR"},{"input":496,"output":497,"interpolation":"LINEAR"},{"input":498,"output":499,"interpolation":"LINEAR"},{"input":500,"output":501,"interpolation":"LINEAR"},{"input":502,"output":503,"interpolation":"LINEAR"},{"input":504,"output":505,"interpolation":"LINEAR"},{"input":506,"output":507,"interpolation":"LINEAR"},{"input":508,"output":509,"interpolation":"LINEAR"},{"input":510,"output":511,"interpolation":"LINEAR"},{"input":512,"output":513,"interpolation":"LINEAR"},{"input":514,"output":515,"interpolation":"LINEAR"},{"input":516,"output":517,"interpolation":"LINEAR"},{"input":518,"output":519,"interpolation":"LINEAR"},{"input":520,"output":521,"interpolation":"LINEAR"},{"input":522,"output":523,"interpolation":"LINEAR"},{"input":524,"output":525,"interpolation":"LINEAR"},{"input":526,"output":527,"interpolation":"LINEAR"},{"input":528,"output":529,"interpolation":"LINEAR"},{"input":530,"output":531,"interpolation":"LINEAR"},{"input":532,"output":533,"interpolation":"LINEAR"},{"input":534,"output":535,"interpolation":"LINEAR"},{"input":536,"output":537,"interpolation":"LINEAR"},{"input":538,"output":539,"interpolation":"LINEAR"},{"input":540,"output":541,"interpolation":"LINEAR"},{"input":542,"output":543,"interpolation":"LINEAR"},{"input":544,"output":545,"interpolation":"LINEAR"},{"input":546,"output":547,"interpolation":"LINEAR"},{"input":548,"output":549,"interpolation":"LINEAR"},{"input":550,"output":551,"interpolation":"LINEAR"},{"input":552,"output":553,"interpolation":"LINEAR"},{"input":554,"output":555,"interpolation":"LINEAR"},{"input":556,"output":557,"interpolation":"LINEAR"},{"input":558,"output":559,"interpolation":"LINEAR"},{"input":560,"output":561,"interpolation":"LINEAR"},{"input":562,"output":563,"interpolation":"LINEAR"},{"input":564,"output":565,"interpolation":"LINEAR"},{"input":566,"output":567,"interpolation":"LINEAR"},{"input":568,"output":569,"interpolation":"LINEAR"},{"input":570,"output":571,"interpolation":"LINEAR"},{"input":572,"output":573,"interpolation":"LINEAR"},{"input":574,"output":575,"interpolation":"LINEAR"},{"input":576,"output":577,"interpolation":"LINEAR"},{"input":578,"output":579,"interpolation":"LINEAR"},{"input":580,"output":581,"interpolation":"LINEAR"},{"input":582,"output":583,"interpolation":"LINEAR"},{"input":584,"output":585,"interpolation":"LINEAR"},{"input":586,"output":587,"interpolation":"LINEAR"},{"input":588,"output":589,"interpolation":"LINEAR"}]},{"name":"N1_1_Anim","channels":[{"sampler":0,"target":{"node":97,"path":"translation"}},{"sampler":1,"target":{"node":97,"path":"rotation"}},{"sampler":2,"target":{"node":97,"path":"scale"}}],"samplers":[{"input":590,"output":591,"interpolation":"LINEAR"},{"input":592,"output":593,"interpolation":"LINEAR"},{"input":594,"output":595,"interpolation":"LINEAR"}]},{"name":"r_aileron_percent_key","channels":[{"sampler":0,"target":{"node":189,"path":"translation"}},{"sampler":1,"target":{"node":189,"path":"rotation"}},{"sampler":2,"target":{"node":189,"path":"scale"}},{"sampler":3,"target":{"node":188,"path":"translation"}},{"sampler":4,"target":{"node":188,"path":"rotation"}},{"sampler":5,"target":{"node":188,"path":"scale"}}],"samplers":[{"input":596,"output":597,"interpolation":"LINEAR"},{"input":598,"output":599,"interpolation":"LINEAR"},{"input":600,"output":601,"interpolation":"LINEAR"},{"input":602,"output":603,"interpolation":"LINEAR"},{"input":604,"output":605,"interpolation":"LINEAR"},{"input":606,"output":607,"interpolation":"LINEAR"}]},{"name":"r_flap_percent_key","channels":[{"sampler":0,"target":{"node":155,"path":"translation"}},{"sampler":1,"target":{"node":155,"path":"rotation"}},{"sampler":2,"target":{"node":155,"path":"scale"}},{"sampler":3,"target":{"node":170,"path":"translation"}},{"sampler":4,"target":{"node":170,"path":"rotation"}},{"sampler":5,"target":{"node":179,"path":"translation"}},{"sampler":6,"target":{"node":179,"path":"rotation"}},{"sampler":7,"target":{"node":156,"path":"rotation"}},{"sampler":8,"target":{"node":171,"path":"translation"}},{"sampler":9,"target":{"node":171,"path":"rotation"}},{"sampler":10,"target":{"node":171,"path":"scale"}},{"sampler":11,"target":{"node":180,"path":"rotation"}}],"samplers":[{"input":608,"output":609,"interpolation":"LINEAR"},{"input":610,"output":611,"interpolation":"LINEAR"},{"input":612,"output":613,"interpolation":"LINEAR"},{"input":614,"output":615,"interpolation":"LINEAR"},{"input":616,"output":617,"interpolation":"LINEAR"},{"input":618,"output":619,"interpolation":"LINEAR"},{"input":620,"output":621,"interpolation":"LINEAR"},{"input":622,"output":623,"interpolation":"LINEAR"},{"input":624,"output":625,"interpolation":"LINEAR"},{"input":626,"output":627,"interpolation":"LINEAR"},{"input":628,"output":629,"interpolation":"LINEAR"},{"input":630,"output":631,"interpolation":"LINEAR"}]},{"name":"r_gear","channels":[{"sampler":0,"target":{"node":203,"path":"translation"}},{"sampler":1,"target":{"node":203,"path":"rotation"}},{"sampler":2,"target":{"node":203,"path":"scale"}},{"sampler":3,"target":{"node":204,"path":"translation"}},{"sampler":4,"target":{"node":204,"path":"rotation"}},{"sampler":5,"target":{"node":204,"path":"scale"}},{"sampler":6,"target":{"node":207,"path":"translation"}},{"sampler":7,"target":{"node":207,"path":"rotation"}},{"sampler":8,"target":{"node":207,"path":"scale"}},{"sampler":9,"target":{"node":209,"path":"translation"}},{"sampler":10,"target":{"node":209,"path":"rotation"}},{"sampler":11,"target":{"node":209,"path":"scale"}},{"sampler":12,"target":{"node":211,"path":"translation"}},{"sampler":13,"target":{"node":211,"path":"rotation"}},{"sampler":14,"target":{"node":211,"path":"scale"}},{"sampler":15,"target":{"node":213,"path":"translation"}},{"sampler":16,"target":{"node":213,"path":"rotation"}},{"sampler":17,"target":{"node":213,"path":"scale"}},{"sampler":18,"target":{"node":214,"path":"translation"}},{"sampler":19,"target":{"node":214,"path":"rotation"}},{"sampler":20,"target":{"node":214,"path":"scale"}},{"sampler":21,"target":{"node":221,"path":"translation"}},{"sampler":22,"target":{"node":221,"path":"rotation"}},{"sampler":23,"target":{"node":221,"path":"scale"}},{"sampler":24,"target":{"node":222,"path":"translation"}},{"sampler":25,"target":{"node":222,"path":"rotation"}},{"sampler":26,"target":{"node":222,"path":"scale"}},{"sampler":27,"target":{"node":223,"path":"translation"}},{"sampler":28,"target":{"node":223,"path":"rotation"}},{"sampler":29,"target":{"node":223,"path":"scale"}},{"sampler":30,"target":{"node":224,"path":"translation"}},{"sampler":31,"target":{"node":224,"path":"rotation"}},{"sampler":32,"target":{"node":224,"path":"scale"}},{"sampler":33,"target":{"node":225,"path":"translation"}},{"sampler":34,"target":{"node":225,"path":"rotation"}},{"sampler":35,"target":{"node":225,"path":"scale"}},{"sampler":36,"target":{"node":226,"path":"translation"}},{"sampler":37,"target":{"node":226,"path":"rotation"}},{"sampler":38,"target":{"node":226,"path":"scale"}},{"sampler":39,"target":{"node":227,"path":"translation"}},{"sampler":40,"target":{"node":227,"path":"rotation"}},{"sampler":41,"target":{"node":227,"path":"scale"}},{"sampler":42,"target":{"node":228,"path":"translation"}},{"sampler":43,"target":{"node":228,"path":"rotation"}},{"sampler":44,"target":{"node":228,"path":"scale"}},{"sampler":45,"target":{"node":229,"path":"translation"}},{"sampler":46,"target":{"node":229,"path":"rotation"}},{"sampler":47,"target":{"node":229,"path":"scale"}},{"sampler":48,"target":{"node":230,"path":"translation"}},{"sampler":49,"target":{"node":230,"path":"rotation"}},{"sampler":50,"target":{"node":230,"path":"scale"}},{"sampler":51,"target":{"node":231,"path":"translation"}},{"sampler":52,"target":{"node":231,"path":"rotation"}},{"sampler":53,"target":{"node":231,"path":"scale"}},{"sampler":54,"target":{"node":232,"path":"translation"}},{"sampler":55,"target":{"node":232,"path":"rotation"}},{"sampler":56,"target":{"node":232,"path":"scale"}},{"sampler":57,"target":{"node":233,"path":"translation"}},{"sampler":58,"target":{"node":233,"path":"rotation"}},{"sampler":59,"target":{"node":233,"path":"scale"}},{"sampler":60,"target":{"node":234,"path":"translation"}},{"sampler":61,"target":{"node":234,"path":"rotation"}},{"sampler":62,"target":{"node":234,"path":"scale"}},{"sampler":63,"target":{"node":235,"path":"translation"}},{"sampler":64,"target":{"node":235,"path":"rotation"}},{"sampler":65,"target":{"node":235,"path":"scale"}},{"sampler":66,"target":{"node":236,"path":"translation"}},{"sampler":67,"target":{"node":236,"path":"rotation"}},{"sampler":68,"target":{"node":236,"path":"scale"}},{"sampler":69,"target":{"node":237,"path":"translation"}},{"sampler":70,"target":{"node":237,"path":"rotation"}},{"sampler":71,"target":{"node":237,"path":"scale"}},{"sampler":72,"target":{"node":145,"path":"translation"}},{"sampler":73,"target":{"node":145,"path":"rotation"}},{"sampler":74,"target":{"node":145,"path":"scale"}},{"sampler":75,"target":{"node":158,"path":"translation"}},{"sampler":76,"target":{"node":158,"path":"rotation"}},{"sampler":77,"target":{"node":158,"path":"scale"}},{"sampler":78,"target":{"node":146,"path":"translation"}},{"sampler":79,"target":{"node":146,"path":"rotation"}},{"sampler":80,"target":{"node":146,"path":"scale"}},{"sampler":81,"target":{"node":159,"path":"translation"}},{"sampler":82,"target":{"node":159,"path":"rotation"}},{"sampler":83,"target":{"node":159,"path":"scale"}},{"sampler":84,"target":{"node":201,"path":"translation"}},{"sampler":85,"target":{"node":201,"path":"rotation"}},{"sampler":86,"target":{"node":201,"path":"scale"}},{"sampler":87,"target":{"node":206,"path":"translation"}},{"sampler":88,"target":{"node":206,"path":"rotation"}},{"sampler":89,"target":{"node":206,"path":"scale"}},{"sampler":90,"target":{"node":208,"path":"translation"}},{"sampler":91,"target":{"node":208,"path":"rotation"}},{"sampler":92,"target":{"node":208,"path":"scale"}},{"sampler":93,"target":{"node":240,"path":"translation"}},{"sampler":94,"target":{"node":240,"path":"rotation"}},{"sampler":95,"target":{"node":240,"path":"scale"}},{"sampler":96,"target":{"node":241,"path":"translation"}},{"sampler":97,"target":{"node":241,"path":"rotation"}},{"sampler":98,"target":{"node":241,"path":"scale"}},{"sampler":99,"target":{"node":141,"path":"translation"}},{"sampler":100,"target":{"node":141,"path":"rotation"}},{"sampler":101,"target":{"node":141,"path":"scale"}}],"samplers":[{"input":632,"output":633,"interpolation":"LINEAR"},{"input":634,"output":635,"interpolation":"LINEAR"},{"input":636,"output":637,"interpolation":"LINEAR"},{"input":638,"output":639,"interpolation":"LINEAR"},{"input":640,"output":641,"interpolation":"LINEAR"},{"input":642,"output":643,"interpolation":"LINEAR"},{"input":644,"output":645,"interpolation":"LINEAR"},{"input":646,"output":647,"interpolation":"LINEAR"},{"input":648,"output":649,"interpolation":"LINEAR"},{"input":650,"output":651,"interpolation":"LINEAR"},{"input":652,"output":653,"interpolation":"LINEAR"},{"input":654,"output":655,"interpolation":"LINEAR"},{"input":656,"output":657,"interpolation":"LINEAR"},{"input":658,"output":659,"interpolation":"LINEAR"},{"input":660,"output":661,"interpolation":"LINEAR"},{"input":662,"output":663,"interpolation":"LINEAR"},{"input":664,"output":665,"interpolation":"LINEAR"},{"input":666,"output":667,"interpolation":"LINEAR"},{"input":668,"output":669,"interpolation":"LINEAR"},{"input":670,"output":671,"interpolation":"LINEAR"},{"input":672,"output":673,"interpolation":"LINEAR"},{"input":674,"output":675,"interpolation":"LINEAR"},{"input":676,"output":677,"interpolation":"LINEAR"},{"input":678,"output":679,"interpolation":"LINEAR"},{"input":680,"output":681,"interpolation":"LINEAR"},{"input":682,"output":683,"interpolation":"LINEAR"},{"input":684,"output":685,"interpolation":"LINEAR"},{"input":686,"output":687,"interpolation":"LINEAR"},{"input":688,"output":689,"interpolation":"LINEAR"},{"input":690,"output":691,"interpolation":"LINEAR"},{"input":692,"output":693,"interpolation":"LINEAR"},{"input":694,"output":695,"interpolation":"LINEAR"},{"input":696,"output":697,"interpolation":"LINEAR"},{"input":698,"output":699,"interpolation":"LINEAR"},{"input":700,"output":701,"interpolation":"LINEAR"},{"input":702,"output":703,"interpolation":"LINEAR"},{"input":704,"output":705,"interpolation":"LINEAR"},{"input":706,"output":707,"interpolation":"LINEAR"},{"input":708,"output":709,"interpolation":"LINEAR"},{"input":710,"output":711,"interpolation":"LINEAR"},{"input":712,"output":713,"interpolation":"LINEAR"},{"input":714,"output":715,"interpolation":"LINEAR"},{"input":716,"output":717,"interpolation":"LINEAR"},{"input":718,"output":719,"interpolation":"LINEAR"},{"input":720,"output":721,"interpolation":"LINEAR"},{"input":722,"output":723,"interpolation":"LINEAR"},{"input":724,"output":725,"interpolation":"LINEAR"},{"input":726,"output":727,"interpolation":"LINEAR"},{"input":728,"output":729,"interpolation":"LINEAR"},{"input":730,"output":731,"interpolation":"LINEAR"},{"input":732,"output":733,"interpolation":"LINEAR"},{"input":734,"output":735,"interpolation":"LINEAR"},{"input":736,"output":737,"interpolation":"LINEAR"},{"input":738,"output":739,"interpolation":"LINEAR"},{"input":740,"output":741,"interpolation":"LINEAR"},{"input":742,"output":743,"interpolation":"LINEAR"},{"input":744,"output":745,"interpolation":"LINEAR"},{"input":746,"output":747,"interpolation":"LINEAR"},{"input":748,"output":749,"interpolation":"LINEAR"},{"input":750,"output":751,"interpolation":"LINEAR"},{"input":752,"output":753,"interpolation":"LINEAR"},{"input":754,"output":755,"interpolation":"LINEAR"},{"input":756,"output":757,"interpolation":"LINEAR"},{"input":758,"output":759,"interpolation":"LINEAR"},{"input":760,"output":761,"interpolation":"LINEAR"},{"input":762,"output":763,"interpolation":"LINEAR"},{"input":764,"output":765,"interpolation":"LINEAR"},{"input":766,"output":767,"interpolation":"LINEAR"},{"input":768,"output":769,"interpolation":"LINEAR"},{"input":770,"output":771,"interpolation":"LINEAR"},{"input":772,"output":773,"interpolation":"LINEAR"},{"input":774,"output":775,"interpolation":"LINEAR"},{"input":776,"output":777,"interpolation":"LINEAR"},{"input":778,"output":779,"interpolation":"LINEAR"},{"input":780,"output":781,"interpolation":"LINEAR"},{"input":782,"output":783,"interpolation":"LINEAR"},{"input":784,"output":785,"interpolation":"LINEAR"},{"input":786,"output":787,"interpolation":"LINEAR"},{"input":788,"output":789,"interpolation":"LINEAR"},{"input":790,"output":791,"interpolation":"LINEAR"},{"input":792,"output":793,"interpolation":"LINEAR"},{"input":794,"output":795,"interpolation":"LINEAR"},{"input":796,"output":797,"interpolation":"LINEAR"},{"input":798,"output":799,"interpolation":"LINEAR"},{"input":800,"output":801,"interpolation":"LINEAR"},{"input":802,"output":803,"interpolation":"LINEAR"},{"input":804,"output":805,"interpolation":"LINEAR"},{"input":806,"output":807,"interpolation":"LINEAR"},{"input":808,"output":809,"interpolation":"LINEAR"},{"input":810,"output":811,"interpolation":"LINEAR"},{"input":812,"output":813,"interpolation":"LINEAR"},{"input":814,"output":815,"interpolation":"LINEAR"},{"input":816,"output":817,"interpolation":"LINEAR"},{"input":818,"output":819,"interpolation":"LINEAR"},{"input":820,"output":821,"interpolation":"LINEAR"},{"input":822,"output":823,"interpolation":"LINEAR"},{"input":824,"output":825,"interpolation":"LINEAR"},{"input":826,"output":827,"interpolation":"LINEAR"},{"input":828,"output":829,"interpolation":"LINEAR"},{"input":830,"output":831,"interpolation":"LINEAR"},{"input":832,"output":833,"interpolation":"LINEAR"},{"input":834,"output":835,"interpolation":"LINEAR"}]},{"name":"r_spoiler_key","channels":[{"sampler":0,"target":{"node":160,"path":"translation"}},{"sampler":1,"target":{"node":160,"path":"rotation"}},{"sampler":2,"target":{"node":160,"path":"scale"}},{"sampler":3,"target":{"node":161,"path":"translation"}},{"sampler":4,"target":{"node":161,"path":"rotation"}},{"sampler":5,"target":{"node":161,"path":"scale"}},{"sampler":6,"target":{"node":162,"path":"translation"}},{"sampler":7,"target":{"node":162,"path":"rotation"}},{"sampler":8,"target":{"node":162,"path":"scale"}},{"sampler":9,"target":{"node":163,"path":"translation"}},{"sampler":10,"target":{"node":163,"path":"rotation"}},{"sampler":11,"target":{"node":163,"path":"scale"}},{"sampler":12,"target":{"node":164,"path":"translation"}},{"sampler":13,"target":{"node":164,"path":"rotation"}},{"sampler":14,"target":{"node":164,"path":"scale"}},{"sampler":15,"target":{"node":165,"path":"translation"}},{"sampler":16,"target":{"node":165,"path":"rotation"}},{"sampler":17,"target":{"node":165,"path":"scale"}},{"sampler":18,"target":{"node":166,"path":"translation"}},{"sampler":19,"target":{"node":166,"path":"rotation"}},{"sampler":20,"target":{"node":166,"path":"scale"}},{"sampler":21,"target":{"node":167,"path":"translation"}},{"sampler":22,"target":{"node":167,"path":"rotation"}},{"sampler":23,"target":{"node":167,"path":"scale"}},{"sampler":24,"target":{"node":168,"path":"translation"}},{"sampler":25,"target":{"node":168,"path":"rotation"}},{"sampler":26,"target":{"node":168,"path":"scale"}},{"sampler":27,"target":{"node":192,"path":"translation"}},{"sampler":28,"target":{"node":192,"path":"rotation"}},{"sampler":29,"target":{"node":192,"path":"scale"}},{"sampler":30,"target":{"node":194,"path":"translation"}},{"sampler":31,"target":{"node":194,"path":"rotation"}},{"sampler":32,"target":{"node":194,"path":"scale"}},{"sampler":33,"target":{"node":195,"path":"translation"}},{"sampler":34,"target":{"node":195,"path":"rotation"}},{"sampler":35,"target":{"node":195,"path":"scale"}},{"sampler":36,"target":{"node":196,"path":"translation"}},{"sampler":37,"target":{"node":196,"path":"rotation"}},{"sampler":38,"target":{"node":196,"path":"scale"}},{"sampler":39,"target":{"node":199,"path":"translation"}},{"sampler":40,"target":{"node":199,"path":"rotation"}},{"sampler":41,"target":{"node":199,"path":"scale"}},{"sampler":42,"target":{"node":177,"path":"rotation"}},{"sampler":43,"target":{"node":173,"path":"translation"}},{"sampler":44,"target":{"node":173,"path":"rotation"}},{"sampler":45,"target":{"node":184,"path":"rotation"}},{"sampler":46,"target":{"node":181,"path":"translation"}},{"sampler":47,"target":{"node":181,"path":"rotation"}},{"sampler":48,"target":{"node":185,"path":"rotation"}},{"sampler":49,"target":{"node":182,"path":"translation"}},{"sampler":50,"target":{"node":182,"path":"rotation"}},{"sampler":51,"target":{"node":186,"path":"rotation"}},{"sampler":52,"target":{"node":183,"path":"translation"}},{"sampler":53,"target":{"node":183,"path":"rotation"}}],"samplers":[{"input":836,"output":837,"interpolation":"LINEAR"},{"input":838,"output":839,"interpolation":"LINEAR"},{"input":840,"output":841,"interpolation":"LINEAR"},{"input":842,"output":843,"interpolation":"LINEAR"},{"input":844,"output":845,"interpolation":"LINEAR"},{"input":846,"output":847,"interpolation":"LINEAR"},{"input":848,"output":849,"interpolation":"LINEAR"},{"input":850,"output":851,"interpolation":"LINEAR"},{"input":852,"output":853,"interpolation":"LINEAR"},{"input":854,"output":855,"interpolation":"LINEAR"},{"input":856,"output":857,"interpolation":"LINEAR"},{"input":858,"output":859,"interpolation":"LINEAR"},{"input":860,"output":861,"interpolation":"LINEAR"},{"input":862,"output":863,"interpolation":"LINEAR"},{"input":864,"output":865,"interpolation":"LINEAR"},{"input":866,"output":867,"interpolation":"LINEAR"},{"input":868,"output":869,"interpolation":"LINEAR"},{"input":870,"output":871,"interpolation":"LINEAR"},{"input":872,"output":873,"interpolation":"LINEAR"},{"input":874,"output":875,"interpolation":"LINEAR"},{"input":876,"output":877,"interpolation":"LINEAR"},{"input":878,"output":879,"interpolation":"LINEAR"},{"input":880,"output":881,"interpolation":"LINEAR"},{"input":882,"output":883,"interpolation":"LINEAR"},{"input":884,"output":885,"interpolation":"LINEAR"},{"input":886,"output":887,"interpolation":"LINEAR"},{"input":888,"output":889,"interpolation":"LINEAR"},{"input":890,"output":891,"interpolation":"LINEAR"},{"input":892,"output":893,"interpolation":"LINEAR"},{"input":894,"output":895,"interpolation":"LINEAR"},{"input":896,"output":897,"interpolation":"LINEAR"},{"input":898,"output":899,"interpolation":"LINEAR"},{"input":900,"output":901,"interpolation":"LINEAR"},{"input":902,"output":903,"interpolation":"LINEAR"},{"input":904,"output":905,"interpolation":"LINEAR"},{"input":906,"output":907,"interpolation":"LINEAR"},{"input":908,"output":909,"interpolation":"LINEAR"},{"input":910,"output":911,"interpolation":"LINEAR"},{"input":912,"output":913,"interpolation":"LINEAR"},{"input":914,"output":915,"interpolation":"LINEAR"},{"input":916,"output":917,"interpolation":"LINEAR"},{"input":918,"output":919,"interpolation":"LINEAR"},{"input":920,"output":921,"interpolation":"LINEAR"},{"input":922,"output":923,"interpolation":"LINEAR"},{"input":924,"output":925,"interpolation":"LINEAR"},{"input":926,"output":927,"interpolation":"LINEAR"},{"input":928,"output":929,"interpolation":"LINEAR"},{"input":930,"output":931,"interpolation":"LINEAR"},{"input":932,"output":933,"interpolation":"LINEAR"},{"input":934,"output":935,"interpolation":"LINEAR"},{"input":936,"output":937,"interpolation":"LINEAR"},{"input":938,"output":939,"interpolation":"LINEAR"},{"input":940,"output":941,"interpolation":"LINEAR"},{"input":942,"output":943,"interpolation":"LINEAR"}]},{"name":"r_tire_key","channels":[{"sampler":0,"target":{"node":215,"path":"translation"}},{"sampler":1,"target":{"node":215,"path":"rotation"}},{"sampler":2,"target":{"node":215,"path":"scale"}},{"sampler":3,"target":{"node":216,"path":"translation"}},{"sampler":4,"target":{"node":216,"path":"rotation"}},{"sampler":5,"target":{"node":216,"path":"scale"}}],"samplers":[{"input":944,"output":945,"interpolation":"LINEAR"},{"input":946,"output":947,"interpolation":"LINEAR"},{"input":948,"output":949,"interpolation":"LINEAR"},{"input":950,"output":951,"interpolation":"LINEAR"},{"input":952,"output":953,"interpolation":"LINEAR"},{"input":954,"output":955,"interpolation":"LINEAR"}]},{"name":"thrust_rev_2","channels":[{"sampler":0,"target":{"node":148,"path":"translation"}},{"sampler":1,"target":{"node":148,"path":"rotation"}},{"sampler":2,"target":{"node":148,"path":"scale"}}],"samplers":[{"input":956,"output":957,"interpolation":"LINEAR"},{"input":958,"output":959,"interpolation":"LINEAR"},{"input":960,"output":961,"interpolation":"LINEAR"}]},{"name":"N1_2_Anim","channels":[{"sampler":0,"target":{"node":149,"path":"translation"}},{"sampler":1,"target":{"node":149,"path":"rotation"}},{"sampler":2,"target":{"node":149,"path":"scale"}}],"samplers":[{"input":962,"output":963,"interpolation":"LINEAR"},{"input":964,"output":965,"interpolation":"LINEAR"},{"input":966,"output":967,"interpolation":"LINEAR"}]},{"name":"r_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":174,"path":"translation"}},{"sampler":1,"target":{"node":174,"path":"rotation"}},{"sampler":2,"target":{"node":174,"path":"scale"}},{"sampler":3,"target":{"node":175,"path":"translation"}},{"sampler":4,"target":{"node":175,"path":"rotation"}},{"sampler":5,"target":{"node":175,"path":"scale"}},{"sampler":6,"target":{"node":198,"path":"translation"}},{"sampler":7,"target":{"node":198,"path":"rotation"}},{"sampler":8,"target":{"node":198,"path":"scale"}},{"sampler":9,"target":{"node":176,"path":"translation"}},{"sampler":10,"target":{"node":176,"path":"rotation"}},{"sampler":11,"target":{"node":176,"path":"scale"}}],"samplers":[{"input":968,"output":969,"interpolation":"LINEAR"},{"input":970,"output":971,"interpolation":"LINEAR"},{"input":972,"output":973,"interpolation":"LINEAR"},{"input":974,"output":975,"interpolation":"LINEAR"},{"input":976,"output":977,"interpolation":"LINEAR"},{"input":978,"output":979,"interpolation":"LINEAR"},{"input":980,"output":981,"interpolation":"LINEAR"},{"input":982,"output":983,"interpolation":"LINEAR"},{"input":984,"output":985,"interpolation":"LINEAR"},{"input":986,"output":987,"interpolation":"LINEAR"},{"input":988,"output":989,"interpolation":"LINEAR"},{"input":990,"output":991,"interpolation":"LINEAR"}]},{"name":"l_flaperon_percent_key","channels":[{"sampler":0,"target":{"node":42,"path":"translation"}},{"sampler":1,"target":{"node":42,"path":"rotation"}},{"sampler":2,"target":{"node":42,"path":"scale"}},{"sampler":3,"target":{"node":43,"path":"translation"}},{"sampler":4,"target":{"node":43,"path":"rotation"}},{"sampler":5,"target":{"node":43,"path":"scale"}},{"sampler":6,"target":{"node":44,"path":"translation"}},{"sampler":7,"target":{"node":44,"path":"rotation"}},{"sampler":8,"target":{"node":44,"path":"scale"}},{"sampler":9,"target":{"node":41,"path":"translation"}},{"sampler":10,"target":{"node":41,"path":"rotation"}},{"sampler":11,"target":{"node":41,"path":"scale"}}],"samplers":[{"input":992,"output":993,"interpolation":"LINEAR"},{"input":994,"output":995,"interpolation":"LINEAR"},{"input":996,"output":997,"interpolation":"LINEAR"},{"input":998,"output":999,"interpolation":"LINEAR"},{"input":1000,"output":1001,"interpolation":"LINEAR"},{"input":1002,"output":1003,"interpolation":"LINEAR"},{"input":1004,"output":1005,"interpolation":"LINEAR"},{"input":1006,"output":1007,"interpolation":"LINEAR"},{"input":1008,"output":1009,"interpolation":"LINEAR"},{"input":1010,"output":1011,"interpolation":"LINEAR"},{"input":1012,"output":1013,"interpolation":"LINEAR"},{"input":1014,"output":1015,"interpolation":"LINEAR"}]},{"name":"door_cargo","channels":[{"sampler":0,"target":{"node":245,"path":"rotation"}},{"sampler":1,"target":{"node":247,"path":"translation"}},{"sampler":2,"target":{"node":247,"path":"rotation"}},{"sampler":3,"target":{"node":247,"path":"scale"}},{"sampler":4,"target":{"node":246,"path":"translation"}},{"sampler":5,"target":{"node":246,"path":"rotation"}},{"sampler":6,"target":{"node":246,"path":"scale"}}],"samplers":[{"input":1016,"output":1017,"interpolation":"LINEAR"},{"input":1018,"output":1019,"interpolation":"LINEAR"},{"input":1020,"output":1021,"interpolation":"LINEAR"},{"input":1022,"output":1023,"interpolation":"LINEAR"},{"input":1024,"output":1025,"interpolation":"LINEAR"},{"input":1026,"output":1027,"interpolation":"LINEAR"},{"input":1028,"output":1029,"interpolation":"LINEAR"}]},{"name":"door_passenger","channels":[{"sampler":0,"target":{"node":250,"path":"translation"}},{"sampler":1,"target":{"node":251,"path":"rotation"}}],"samplers":[{"input":1030,"output":1031,"interpolation":"LINEAR"},{"input":1032,"output":1033,"interpolation":"LINEAR"}]},{"name":"door_rear","channels":[{"sampler":0,"target":{"node":244,"path":"rotation"}},{"sampler":1,"target":{"node":243,"path":"translation"}}],"samplers":[{"input":1034,"output":1035,"interpolation":"LINEAR"},{"input":1036,"output":1037,"interpolation":"LINEAR"}]},{"name":"HANDLING_Wipers","channels":[{"sampler":0,"target":{"node":252,"path":"rotation"}},{"sampler":1,"target":{"node":253,"path":"rotation"}},{"sampler":2,"target":{"node":254,"path":"rotation"}},{"sampler":3,"target":{"node":255,"path":"rotation"}}],"samplers":[{"input":1038,"output":1039,"interpolation":"LINEAR"},{"input":1040,"output":1041,"interpolation":"LINEAR"},{"input":1042,"output":1043,"interpolation":"LINEAR"},{"input":1044,"output":1045,"interpolation":"LINEAR"}]},{"name":"l_slats_percent_key","channels":[{"sampler":0,"target":{"node":48,"path":"translation"}},{"sampler":1,"target":{"node":48,"path":"rotation"}},{"sampler":2,"target":{"node":48,"path":"scale"}},{"sampler":3,"target":{"node":47,"path":"translation"}},{"sampler":4,"target":{"node":47,"path":"rotation"}},{"sampler":5,"target":{"node":47,"path":"scale"}},{"sampler":6,"target":{"node":36,"path":"translation"}},{"sampler":7,"target":{"node":36,"path":"rotation"}},{"sampler":8,"target":{"node":36,"path":"scale"}},{"sampler":9,"target":{"node":24,"path":"translation"}},{"sampler":10,"target":{"node":24,"path":"rotation"}},{"sampler":11,"target":{"node":24,"path":"scale"}},{"sampler":12,"target":{"node":20,"path":"translation"}},{"sampler":13,"target":{"node":20,"path":"rotation"}},{"sampler":14,"target":{"node":20,"path":"scale"}}],"samplers":[{"input":1046,"output":1047,"interpolation":"LINEAR"},{"input":1048,"output":1049,"interpolation":"LINEAR"},{"input":1050,"output":1051,"interpolation":"LINEAR"},{"input":1052,"output":1053,"interpolation":"LINEAR"},{"input":1054,"output":1055,"interpolation":"LINEAR"},{"input":1056,"output":1057,"interpolation":"LINEAR"},{"input":1058,"output":1059,"interpolation":"LINEAR"},{"input":1060,"output":1061,"interpolation":"LINEAR"},{"input":1062,"output":1063,"interpolation":"LINEAR"},{"input":1064,"output":1065,"interpolation":"LINEAR"},{"input":1066,"output":1067,"interpolation":"LINEAR"},{"input":1068,"output":1069,"interpolation":"LINEAR"},{"input":1070,"output":1071,"interpolation":"LINEAR"},{"input":1072,"output":1073,"interpolation":"LINEAR"},{"input":1074,"output":1075,"interpolation":"LINEAR"}]},{"name":"r_slats_percent_key","channels":[{"sampler":0,"target":{"node":154,"path":"translation"}},{"sampler":1,"target":{"node":154,"path":"rotation"}},{"sampler":2,"target":{"node":154,"path":"scale"}},{"sampler":3,"target":{"node":200,"path":"translation"}},{"sampler":4,"target":{"node":200,"path":"rotation"}},{"sampler":5,"target":{"node":200,"path":"scale"}},{"sampler":6,"target":{"node":197,"path":"translation"}},{"sampler":7,"target":{"node":197,"path":"rotation"}},{"sampler":8,"target":{"node":197,"path":"scale"}},{"sampler":9,"target":{"node":193,"path":"translation"}},{"sampler":10,"target":{"node":193,"path":"rotation"}},{"sampler":11,"target":{"node":193,"path":"scale"}},{"sampler":12,"target":{"node":191,"path":"translation"}},{"sampler":13,"target":{"node":191,"path":"rotation"}},{"sampler":14,"target":{"node":191,"path":"scale"}}],"samplers":[{"input":1076,"output":1077,"interpolation":"LINEAR"},{"input":1078,"output":1079,"interpolation":"LINEAR"},{"input":1080,"output":1081,"interpolation":"LINEAR"},{"input":1082,"output":1083,"interpolation":"LINEAR"},{"input":1084,"output":1085,"interpolation":"LINEAR"},{"input":1086,"output":1087,"interpolation":"LINEAR"},{"input":1088,"output":1089,"interpolation":"LINEAR"},{"input":1090,"output":1091,"interpolation":"LINEAR"},{"input":1092,"output":1093,"interpolation":"LINEAR"},{"input":1094,"output":1095,"interpolation":"LINEAR"},{"input":1096,"output":1097,"interpolation":"LINEAR"},{"input":1098,"output":1099,"interpolation":"LINEAR"},{"input":1100,"output":1101,"interpolation":"LINEAR"},{"input":1102,"output":1103,"interpolation":"LINEAR"},{"input":1104,"output":1105,"interpolation":"LINEAR"}]},{"name":"Rudder_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":286,"path":"translation"}},{"sampler":1,"target":{"node":286,"path":"rotation"}}],"samplers":[{"input":1593,"output":1594,"interpolation":"LINEAR"},{"input":1593,"output":1595,"interpolation":"LINEAR"}]},{"name":"C_Door_02_Left_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":287,"path":"translation"}},{"sampler":1,"target":{"node":287,"path":"rotation"}}],"samplers":[{"input":1596,"output":1597,"interpolation":"LINEAR"},{"input":1596,"output":1598,"interpolation":"LINEAR"}]},{"name":"C_Door_02_right_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":288,"path":"translation"}},{"sampler":1,"target":{"node":288,"path":"rotation"}}],"samplers":[{"input":1596,"output":1599,"interpolation":"LINEAR"},{"input":1596,"output":1600,"interpolation":"LINEAR"}]},{"name":"DoorB_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":289,"path":"translation"}}],"samplers":[{"input":1593,"output":1601,"interpolation":"LINEAR"}]},{"name":"Door01_left_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":291,"path":"rotation"}}],"samplers":[{"input":1596,"output":1602,"interpolation":"LINEAR"}]},{"name":"Door01_right_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":292,"path":"rotation"}}],"samplers":[{"input":1596,"output":1603,"interpolation":"LINEAR"}]},{"name":"Cargo_Door_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":294,"path":"translation"}},{"sampler":1,"target":{"node":294,"path":"rotation"}}],"samplers":[{"input":1593,"output":1604,"interpolation":"LINEAR"},{"input":1593,"output":1605,"interpolation":"LINEAR"}]}],"asset":{"generator":"babylon.js glTF exporter for 3dsmax 2019 v1.0.8011.25344","version":"2.0","extensions":{"ASOBO_asset_optimized":{"BoundingBoxMax":[29.925128936767578,12.377949714660645,32.94910430908203],"BoundingBoxMin":[-29.925138473510742,-4.795534610748291,-48.82345199584961],"MajorVersion":4,"MinorVersion":4,"UseCheckerboardMaterialForMissingTextures":true},"ASOBO_normal_map_convention":{"tangent_space_convention":"DirectX"}}},"bufferViews":[{"buffer":0,"byteLength":896,"name":"bufferViewFloatMat4"},{"buffer":0,"byteLength":332640,"byteOffset":896,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteLength":645024,"byteOffset":333536,"name":"bufferViewAnimationFloatVec3"},{"buffer":0,"byteLength":470528,"byteOffset":978560,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteLength":141192,"byteStride":36,"byteOffset":1449088,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":17544,"byteOffset":1590280,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":18048,"byteStride":48,"byteOffset":1607824,"target":34962,"name":"BufferViewVertex4Blend"},{"buffer":0,"byteLength":6072,"byteStride":44,"byteOffset":1625872,"target":34962,"name":"BufferViewVertex1Blend"},{"buffer":0,"byteLength":159636,"byteOffset":1631944,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":845424,"byteStride":36,"byteOffset":1791580,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":324,"byteOffset":2637004},{"buffer":0,"byteLength":972,"byteOffset":2637328},{"buffer":0,"byteLength":1296,"byteOffset":2638300},{"buffer":0,"byteLength":644,"byteOffset":2639596},{"buffer":0,"byteLength":1932,"byteOffset":2640240},{"buffer":0,"byteLength":2576,"byteOffset":2642172},{"buffer":0,"byteLength":1932,"byteOffset":2644748},{"buffer":0,"byteLength":2576,"byteOffset":2646680},{"buffer":0,"byteLength":972,"byteOffset":2649256},{"buffer":0,"byteLength":2576,"byteOffset":2650228},{"buffer":0,"byteLength":2576,"byteOffset":2652804},{"buffer":0,"byteLength":972,"byteOffset":2655380},{"buffer":0,"byteLength":1296,"byteOffset":2656352}],"extensionsRequired":["MSFT_texture_dds"],"materials":[{"name":"FUSELAGE1","normalTexture":{"index":2},"occlusionTexture":{"index":1},"pbrMetallicRoughness":{"baseColorTexture":{"index":0},"metallicRoughnessTexture":{"index":1}}},{"name":"WINGS","normalTexture":{"index":5},"occlusionTexture":{"index":4},"pbrMetallicRoughness":{"baseColorTexture":{"index":3},"metallicRoughnessTexture":{"index":4}}},{"name":"Generic_LOD5","occlusionTexture":{"index":7},"pbrMetallicRoughness":{"baseColorTexture":{"index":6},"metallicRoughnessTexture":{"index":7}}},{"name":"TAIL","normalTexture":{"index":10},"occlusionTexture":{"index":9},"pbrMetallicRoughness":{"baseColorTexture":{"index":8},"metallicRoughnessTexture":{"index":9}}},{"name":"Windshield_Low","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[1,1,1,0.01],"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_detail_map":{"UVScale":5,"detailColorTexture":{"index":11},"detailNormalTexture":{"index":12}}},"extras":{"ASOBO_material_code":"Windshield"}},{"name":"LIGHTS","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.2}},{"name":"Livery_KLM","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":13}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"RegistrationNumber","alphaMode":"BLEND","pbrMetallicRoughness":{"baseColorFactor":[0.8,0.8,0.8,1],"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":8}}},{"name":"Livery_KLM2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":14}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}},{"name":"ENGINE","normalTexture":{"index":17},"occlusionTexture":{"index":16},"pbrMetallicRoughness":{"baseColorTexture":{"index":15},"metallicRoughnessTexture":{"index":16}}},{"name":"RegistrationNumber2","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"metallicBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0}}},{"name":"LIVERYDECALS","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":18}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}}],"meshes":[{"primitives":[{"attributes":{"COLOR_0":1111,"NORMAL":1108,"POSITION":1106,"TANGENT":1107,"TEXCOORD_0":1109,"TEXCOORD_1":1110},"indices":1112,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_C_Door_right"},{"primitives":[{"attributes":{"COLOR_0":1118,"NORMAL":1115,"POSITION":1113,"TANGENT":1114,"TEXCOORD_0":1116,"TEXCOORD_1":1117},"indices":1119,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":8,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_C_Door_left"},{"primitives":[{"attributes":{"COLOR_0":1125,"NORMAL":1122,"POSITION":1120,"TANGENT":1121,"TEXCOORD_0":1123,"TEXCOORD_1":1124},"indices":1126,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":60,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_2_left001"},{"primitives":[{"attributes":{"COLOR_0":1132,"NORMAL":1129,"POSITION":1127,"TANGENT":1128,"TEXCOORD_0":1130,"TEXCOORD_1":1131},"indices":1133,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":24,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_left001"},{"primitives":[{"attributes":{"COLOR_0":1139,"NORMAL":1136,"POSITION":1134,"TANGENT":1135,"TEXCOORD_0":1137,"TEXCOORD_1":1138},"indices":1140,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":176,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Landing_gear_Root_left"},{"primitives":[{"attributes":{"COLOR_0":1146,"NORMAL":1143,"POSITION":1141,"TANGENT":1142,"TEXCOORD_0":1144,"TEXCOORD_1":1145},"indices":1147,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Door04_left"},{"primitives":[{"attributes":{"COLOR_0":1153,"NORMAL":1150,"POSITION":1148,"TANGENT":1149,"TEXCOORD_0":1151,"TEXCOORD_1":1152},"indices":1154,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_1_blurred_left"},{"primitives":[{"attributes":{"COLOR_0":1160,"NORMAL":1157,"POSITION":1155,"TANGENT":1156,"TEXCOORD_0":1158,"TEXCOORD_1":1159},"indices":1161,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_1_slow_left"},{"primitives":[{"attributes":{"COLOR_0":1167,"NORMAL":1164,"POSITION":1162,"TANGENT":1163,"TEXCOORD_0":1165,"TEXCOORD_1":1166},"indices":1168,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":118,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_1_still_left"},{"primitives":[{"attributes":{"COLOR_0":1174,"NORMAL":1171,"POSITION":1169,"TANGENT":1170,"TEXCOORD_0":1172,"TEXCOORD_1":1173},"indices":1175,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_LEFT"},{"primitives":[{"attributes":{"COLOR_0":1181,"NORMAL":1178,"POSITION":1176,"TANGENT":1177,"TEXCOORD_0":1179,"TEXCOORD_1":1180},"indices":1182,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":88,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Landing_Gear_NosePart16_center"},{"primitives":[{"attributes":{"COLOR_0":1188,"NORMAL":1185,"POSITION":1183,"TANGENT":1184,"TEXCOORD_0":1186,"TEXCOORD_1":1187},"indices":1189,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_2_blurred_right"},{"primitives":[{"attributes":{"COLOR_0":1195,"NORMAL":1192,"POSITION":1190,"TANGENT":1191,"TEXCOORD_0":1193,"TEXCOORD_1":1194},"indices":1196,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":90,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_2_slow_right"},{"primitives":[{"attributes":{"COLOR_0":1202,"NORMAL":1199,"POSITION":1197,"TANGENT":1198,"TEXCOORD_0":1200,"TEXCOORD_1":1201},"indices":1203,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":120,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_2_still_right"},{"primitives":[{"attributes":{"COLOR_0":1209,"NORMAL":1206,"POSITION":1204,"TANGENT":1205,"TEXCOORD_0":1207,"TEXCOORD_1":1208},"indices":1210,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_RIGHT"},{"primitives":[{"attributes":{"COLOR_0":1216,"NORMAL":1213,"POSITION":1211,"TANGENT":1212,"TEXCOORD_0":1214,"TEXCOORD_1":1215},"indices":1217,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":24,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_1_right001"},{"primitives":[{"attributes":{"COLOR_0":1223,"NORMAL":1220,"POSITION":1218,"TANGENT":1219,"TEXCOORD_0":1221,"TEXCOORD_1":1222},"indices":1224,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":56,"VertexType":"VTX","VertexVersion":2}}}],"name":"x4_Flaps_2_right001"},{"primitives":[{"attributes":{"COLOR_0":1230,"NORMAL":1227,"POSITION":1225,"TANGENT":1226,"TEXCOORD_0":1228,"TEXCOORD_1":1229},"indices":1231,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":21,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Door04_right"},{"primitives":[{"attributes":{"COLOR_0":1237,"NORMAL":1234,"POSITION":1232,"TANGENT":1233,"TEXCOORD_0":1235,"TEXCOORD_1":1236},"indices":1238,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":176,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Landing_gear_Root_right"},{"primitives":[{"attributes":{"COLOR_0":1244,"NORMAL":1241,"POSITION":1239,"TANGENT":1240,"TEXCOORD_0":1242,"TEXCOORD_1":1243},"indices":1245,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":255,"VertexType":"VTX","VertexVersion":2}}},{"attributes":{"COLOR_0":1244,"NORMAL":1241,"POSITION":1239,"TANGENT":1240,"TEXCOORD_0":1242,"TEXCOORD_1":1243},"indices":1245,"material":3,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"StartIndex":765,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Body_center"},{"primitives":[{"attributes":{"COLOR_0":1251,"NORMAL":1248,"POSITION":1246,"TANGENT":1247,"TEXCOORD_0":1249,"TEXCOORD_1":1250},"indices":1252,"material":4,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":20,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_WINDSHIELD"},{"primitives":[{"attributes":{"COLOR_0":1258,"NORMAL":1255,"POSITION":1253,"TANGENT":1254,"TEXCOORD_0":1256,"TEXCOORD_1":1257},"indices":1259,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_LandingWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1265,"NORMAL":1262,"POSITION":1260,"TANGENT":1261,"TEXCOORD_0":1263,"TEXCOORD_1":1264},"indices":1266,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_LandingWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1272,"NORMAL":1269,"POSITION":1267,"TANGENT":1268,"TEXCOORD_0":1270,"TEXCOORD_1":1271},"indices":1273,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Wing_Left"},{"primitives":[{"attributes":{"COLOR_0":1279,"NORMAL":1276,"POSITION":1274,"TANGENT":1275,"TEXCOORD_0":1277,"TEXCOORD_1":1278},"indices":1280,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Wing_Right"},{"primitives":[{"attributes":{"COLOR_0":1286,"NORMAL":1283,"POSITION":1281,"TANGENT":1282,"TEXCOORD_0":1284,"TEXCOORD_1":1285},"indices":1287,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_StrobeTail_Right"},{"primitives":[{"attributes":{"COLOR_0":1293,"NORMAL":1290,"POSITION":1288,"TANGENT":1289,"TEXCOORD_0":1291,"TEXCOORD_1":1292},"indices":1294,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_StrobeTail_Left"},{"primitives":[{"attributes":{"COLOR_0":1300,"NORMAL":1297,"POSITION":1295,"TANGENT":1296,"TEXCOORD_0":1298,"TEXCOORD_1":1299},"indices":1301,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_RunwayTurnOff_Right"},{"primitives":[{"attributes":{"COLOR_0":1307,"NORMAL":1304,"POSITION":1302,"TANGENT":1303,"TEXCOORD_0":1305,"TEXCOORD_1":1306},"indices":1308,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_RunwayTurnOff_Left"},{"primitives":[{"attributes":{"COLOR_0":1314,"NORMAL":1311,"POSITION":1309,"TANGENT":1310,"TEXCOORD_0":1312,"TEXCOORD_1":1313},"indices":1315,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Beacon_Top"},{"primitives":[{"attributes":{"COLOR_0":1321,"NORMAL":1318,"POSITION":1316,"TANGENT":1317,"TEXCOORD_0":1319,"TEXCOORD_1":1320},"indices":1322,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Beacon_Belly"},{"primitives":[{"attributes":{"COLOR_0":1328,"NORMAL":1325,"POSITION":1323,"TANGENT":1324,"TEXCOORD_0":1326,"TEXCOORD_1":1327},"indices":1329,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":272,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Porthole_Blocker_center"},{"primitives":[{"attributes":{"COLOR_0":1335,"NORMAL":1332,"POSITION":1330,"TANGENT":1331,"TEXCOORD_0":1333,"TEXCOORD_1":1334},"indices":1336,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_LandingNose_Right"},{"primitives":[{"attributes":{"COLOR_0":1342,"NORMAL":1339,"POSITION":1337,"TANGENT":1338,"TEXCOORD_0":1340,"TEXCOORD_1":1341},"indices":1343,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Taxi_Right"},{"primitives":[{"attributes":{"COLOR_0":1349,"NORMAL":1346,"POSITION":1344,"TANGENT":1345,"TEXCOORD_0":1347,"TEXCOORD_1":1348},"indices":1350,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Taxi_Left"},{"primitives":[{"attributes":{"COLOR_0":1356,"NORMAL":1353,"POSITION":1351,"TANGENT":1352,"TEXCOORD_0":1354,"TEXCOORD_1":1355},"indices":1357,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_LandingNose_Left"},{"primitives":[{"attributes":{"COLOR_0":1363,"NORMAL":1360,"POSITION":1358,"TANGENT":1359,"TEXCOORD_0":1361,"TEXCOORD_1":1362},"indices":1364,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Logo_Right"},{"primitives":[{"attributes":{"COLOR_0":1370,"NORMAL":1367,"POSITION":1365,"TANGENT":1366,"TEXCOORD_0":1368,"TEXCOORD_1":1369},"indices":1371,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_Logo_Left"},{"primitives":[{"attributes":{"COLOR_0":1377,"NORMAL":1374,"POSITION":1372,"TANGENT":1373,"TEXCOORD_0":1375,"TEXCOORD_1":1376},"indices":1378,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_StrobeWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1384,"NORMAL":1381,"POSITION":1379,"TANGENT":1380,"TEXCOORD_0":1382,"TEXCOORD_1":1383},"indices":1385,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_NavigationGreen"},{"primitives":[{"attributes":{"COLOR_0":1391,"NORMAL":1388,"POSITION":1386,"TANGENT":1387,"TEXCOORD_0":1389,"TEXCOORD_1":1390},"indices":1392,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_NavigationRed"},{"primitives":[{"attributes":{"COLOR_0":1398,"NORMAL":1395,"POSITION":1393,"TANGENT":1394,"TEXCOORD_0":1396,"TEXCOORD_1":1397},"indices":1399,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_NavigationWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1405,"NORMAL":1402,"POSITION":1400,"TANGENT":1401,"TEXCOORD_0":1403,"TEXCOORD_1":1404},"indices":1406,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_StrobeWing_Left"},{"primitives":[{"attributes":{"COLOR_0":1412,"NORMAL":1409,"POSITION":1407,"TANGENT":1408,"TEXCOORD_0":1410,"TEXCOORD_1":1411},"indices":1413,"material":5,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_LIGHT_ASOBO_NavigationWing_Right"},{"primitives":[{"attributes":{"COLOR_0":1419,"NORMAL":1416,"POSITION":1414,"TANGENT":1415,"TEXCOORD_0":1417,"TEXCOORD_1":1418},"indices":1420,"material":6,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":708,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageA"},{"primitives":[{"attributes":{"COLOR_0":1426,"NORMAL":1423,"POSITION":1421,"TANGENT":1422,"TEXCOORD_0":1424,"TEXCOORD_1":1425},"indices":1427,"material":7,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4,"VertexType":"VTX","VertexVersion":2}}}],"name":"x5_Livery_KLM_RegNumber"},{"primitives":[{"attributes":{"COLOR_0":1433,"NORMAL":1430,"POSITION":1428,"TANGENT":1429,"TEXCOORD_0":1431,"TEXCOORD_1":1432},"indices":1434,"material":8,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":82,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageB"},{"primitives":[{"attributes":{"COLOR_0":1442,"JOINTS_0":1440,"NORMAL":1437,"POSITION":1435,"TANGENT":1436,"TEXCOORD_0":1438,"TEXCOORD_1":1439,"WEIGHTS_0":1441},"indices":1443,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":48,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1451,"JOINTS_0":1449,"NORMAL":1446,"POSITION":1444,"TANGENT":1445,"TEXCOORD_0":1447,"TEXCOORD_1":1448,"WEIGHTS_0":1450},"indices":1452,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":87,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1460,"JOINTS_0":1458,"NORMAL":1455,"POSITION":1453,"TANGENT":1454,"TEXCOORD_0":1456,"TEXCOORD_1":1457,"WEIGHTS_0":1459},"indices":1461,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x5_Wing_Right"},{"primitives":[{"attributes":{"COLOR_0":1469,"JOINTS_0":1467,"NORMAL":1464,"POSITION":1462,"TANGENT":1463,"TEXCOORD_0":1465,"TEXCOORD_1":1466,"WEIGHTS_0":1468},"indices":1470,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":42,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1478,"JOINTS_0":1476,"NORMAL":1473,"POSITION":1471,"TANGENT":1472,"TEXCOORD_0":1474,"TEXCOORD_1":1475,"WEIGHTS_0":1477},"indices":1479,"material":9,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":87,"VertexType":"BLEND1","VertexVersion":2}}},{"attributes":{"COLOR_0":1487,"JOINTS_0":1485,"NORMAL":1482,"POSITION":1480,"TANGENT":1481,"TEXCOORD_0":1483,"TEXCOORD_1":1484,"WEIGHTS_0":1486},"indices":1488,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":12,"VertexType":"BLEND4","VertexVersion":2}}},{"attributes":{"COLOR_0":1496,"JOINTS_0":1494,"NORMAL":1491,"POSITION":1489,"TANGENT":1490,"TEXCOORD_0":1492,"TEXCOORD_1":1493,"WEIGHTS_0":1495},"indices":1497,"material":10,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"BLEND4","VertexVersion":2}}}],"name":"x5_Wing_Left"},{"primitives":[{"attributes":{"COLOR_0":1498,"NORMAL":1499,"POSITION":1500,"TANGENT":1501,"TEXCOORD_0":1502,"TEXCOORD_1":1503},"indices":1504,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1820,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Rudder_center.001"},{"primitives":[{"attributes":{"COLOR_0":1505,"NORMAL":1506,"POSITION":1507,"TANGENT":1508,"TEXCOORD_0":1509,"TEXCOORD_1":1510},"indices":1511,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_Left.002"},{"primitives":[{"attributes":{"COLOR_0":1512,"NORMAL":1513,"POSITION":1514,"TANGENT":1515,"TEXCOORD_0":1516,"TEXCOORD_1":1517},"indices":1518,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_right.002"},{"primitives":[{"attributes":{"COLOR_0":1519,"NORMAL":1520,"POSITION":1521,"TANGENT":1522,"TEXCOORD_0":1523,"TEXCOORD_1":1524},"indices":1525,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":302,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_DoorB.001"},{"primitives":[{"attributes":{"COLOR_0":1526,"NORMAL":1527,"POSITION":1528,"TEXCOORD_0":1529,"TEXCOORD_1":1530},"indices":1531,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":21,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageA.005"},{"primitives":[{"attributes":{"COLOR_0":1532,"NORMAL":1533,"POSITION":1534,"TANGENT":1535,"TEXCOORD_0":1536,"TEXCOORD_1":1537},"indices":1538,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_R_Door01_left.001"},{"primitives":[{"attributes":{"COLOR_0":1539,"NORMAL":1540,"POSITION":1541,"TANGENT":1542,"TEXCOORD_0":1543,"TEXCOORD_1":1544},"indices":1545,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Door01_right.001"},{"primitives":[{"attributes":{"COLOR_0":1546,"NORMAL":1547,"POSITION":1548,"TANGENT":1549,"TEXCOORD_0":1550,"TEXCOORD_1":1551},"indices":1552,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4114,"VertexType":"VTX","VertexVersion":2}}}],"name":"livery_vstab"},{"primitives":[{"attributes":{"COLOR_0":1553,"NORMAL":1554,"POSITION":1555,"TANGENT":1556,"TEXCOORD_0":1557,"TEXCOORD_1":1558},"indices":1559,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":40,"VertexType":"VTX","VertexVersion":2}}}],"name":"Cargo_Door_LIVERYDECAL"},{"primitives":[{"attributes":{"COLOR_0":1560,"NORMAL":1561,"POSITION":1562,"TEXCOORD_0":1563,"TEXCOORD_1":1564},"indices":1565,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":306,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.002"},{"primitives":[{"attributes":{"COLOR_0":1566,"NORMAL":1567,"POSITION":1568,"TANGENT":1569,"TEXCOORD_0":1570,"TEXCOORD_1":1571},"indices":1572,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2812,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.004"},{"primitives":[{"attributes":{"COLOR_0":1573,"NORMAL":1574,"POSITION":1575,"TEXCOORD_0":1576,"TEXCOORD_1":1577},"indices":1578,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":13128,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.001"},{"primitives":[{"attributes":{"COLOR_0":1579,"NORMAL":1580,"POSITION":1581,"TANGENT":1582,"TEXCOORD_0":1583,"TEXCOORD_1":1584},"indices":1585,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":112,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.003"},{"primitives":[{"attributes":{"COLOR_0":1586,"NORMAL":1587,"POSITION":1588,"TANGENT":1589,"TEXCOORD_0":1590,"TEXCOORD_1":1591},"indices":1592,"material":11,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3832,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.008"}],"nodes":[{"name":"HIPS","children":[1,2,5,7,10,12,114,136,140,242,245,247,248,249,252,254,256]},{"translation":[0.00000191479921,9.241079,-36.3505249],"rotation":[0.351553828,0.6135225,0.351553649,0.6135227],"scale":[1,1,0.9999999],"name":"Tail_Rudder_center"},{"translation":[-0.726416945,-1.95301223,23.6319084],"rotation":[0.427315861,0.516586959,-0.473471433,0.5712827],"scale":[1,0.99999994,1],"name":"Door_Right02_center","children":[3,4]},{"translation":[0.458667755,-0.0267460346,0.552114964],"rotation":[0.512122333,-0.626890063,-0.3186886,-0.49313],"scale":[1.00000012,1,0.99999994],"name":"Door_Right03_center"},{"translation":[-0.00000381469727,0.000004172325,-0.00000381469727],"rotation":[-0.427316219,-0.516587,0.4734716,0.5712822],"scale":[0.999998748,0.999999762,0.9999996],"mesh":0,"name":"C_Door_right"},{"translation":[-0.731975853,-1.761568,25.1424141],"rotation":[-0.0471240319,0.7069722,-0.06672683,0.7025078],"scale":[1.00000012,1,0.9999999],"name":"Door_Right01_center","children":[6]},{"translation":[-0.7503414,-0.0338468552,0.414570749],"rotation":[-0.396525681,-0.50923115,0.5034293,0.574465036],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Right03_hydraulic01_center"},{"translation":[0.723948359,-1.95345688,23.5944271],"rotation":[0.00493113929,0.705479443,-0.0346209928,0.707867146],"scale":[0.9999999,0.99999994,0.99999994],"name":"Door_Left02_center","children":[8,9]},{"translation":[0.3847618,-0.58023,-0.0432002544],"rotation":[0.7827109,0.116333261,0.33318314,0.5126591],"scale":[1.00000012,1.00000072,1.00000048],"name":"Door_Left03_center"},{"translation":[-0.000009536743,0.00000524520874,0.00000381469727],"rotation":[-0.00493113929,-0.705479443,0.034621,0.707867146],"scale":[1,1.00000012,1.00000012],"mesh":1,"name":"C_Door_left"},{"translation":[0.7319975,-1.76198089,25.1398849],"rotation":[-0.0667134,0.7025059,-0.0471375138,0.7069745],"scale":[0.9999999,1.00000012,0.9999999],"name":"Door_Left01_center","children":[11]},{"translation":[-0.7485962,-0.05103779,-0.416645736],"rotation":[-0.00976675749,-0.791484535,0.164192423,0.58864063],"scale":[0.99999994,0.9999998,0.9999998],"name":"Door_Left03_hydraulic01_center"},{"name":"Wing_left","children":[13,15,111,112]},{"translation":[1.450443,1.40532589,-32.1805077],"rotation":[-0.699695766,0.021218136,0.08916643,0.7085372],"scale":[1,0.99999994,0.99999994],"name":"Trim_Elevator_left","children":[14]},{"translation":[4.46584272,4.07697868,0.00621420145],"rotation":[0.7352894,0.102221251,0.101580471,0.662255049],"scale":[0.9999998,0.9999999,0.9999999],"name":"Elevator_left"},{"translation":[3.348375,-0.123601377,-1.04428136],"rotation":[0.00473341,0.2594188,0.0519678928,0.964354157],"scale":[1.00000048,1.0000006,1.00000024],"name":"WING_BONE_LEFT_00","children":[16,48,49,52,88,90,92,93,94,96,103,104,105,106,108,110]},{"translation":[8.314296,-0.00000137090683,-5.364418e-7],"rotation":[-8.754432e-8,1.20198811e-8,-3.7252903e-9,1],"scale":[1.00000012,0.99999994,1],"name":"WING_BONE_LEFT_01","children":[17,37,38,41,42,45,46,47]},{"translation":[6.33785439,-0.03361386,-0.00021648407],"rotation":[7.636845e-8,8.58562856e-8,-3.72529e-9,1],"scale":[1.00000024,0.99999994,1.00000012],"name":"WING_BONE_LEFT_02","children":[18,25,26,27,29,30,31,32,33,34,35,36]},{"translation":[6.566532,-0.00651597977,0.002133131],"rotation":[7.497147e-8,6.48724452e-8,-1.63912773e-7,1],"scale":[0.9999999,1,0.9999999],"name":"WING_BONE_LEFT_03","children":[19,21,22,23,24]},{"translation":[5.34786224,0.0235242844,-0.00155836344],"rotation":[-5.220064e-7,-2.883608e-7,3.72529065e-8,1],"scale":[0.99999994,0.99999994,0.999999762],"name":"WING_BONE_LEFT_04","children":[20]},{"translation":[-0.04543686,0.288306952,1.03098464],"rotation":[0.682595,0.02664601,-0.03207462,0.7296063],"scale":[1.00000072,1.00000083,1.00000048],"name":"FlapsKrueger_5_left"},{"translation":[-0.2617283,0.11290288,0.0147028565],"rotation":[0.009747561,-0.0007136329,0.9998518,0.0141735217],"scale":[1.00000024,1.00000048,0.99999994],"name":"Wing_Spoiler_2_5_left"},{"translation":[-0.004673004,-0.00971519947,-0.461001784],"rotation":[0.008513641,-0.0145073226,0.00494640833,0.9998463],"scale":[1.00000083,0.9999997,1.00000012],"name":"Aileron_1_left"},{"translation":[3.998932,0.0289180279,-0.344465554],"rotation":[0.008513387,-0.0145070786,0.00494640134,0.999846339],"scale":[1.00000072,0.9999997,1.00000012],"name":"Aileron_2_left"},{"translation":[0.03655243,0.36692667,1.46626389],"rotation":[0.682594657,0.026645815,-0.0320744365,0.729606569],"scale":[1.000001,1.00000048,1.00000048],"name":"FlapsKrueger_4_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Wing_Spoiler_2_3_left"},{"translation":[0.214468,0.01886487,-0.6683294],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Wing_Spoiler_2_2_left"},{"translation":[6.303793,-0.008411646,-0.6237762],"rotation":[-0.00684345234,0.6832026,0.0139844446,0.730062962],"scale":[0.99999994,1.00000036,1.00000024],"name":"Flaps_3_left","children":[28]},{"translation":[-0.111465216,-0.127858162,-2.3174572],"rotation":[0.703286,-0.0672622249,-0.0638457462,0.704832137],"scale":[0.999999464,0.999998331,0.999998868],"name":"flap_hydrolics_19_left"},{"translation":[0.214487076,0.019739747,-0.6686902],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_2_left"},{"translation":[0.204582214,-0.17100656,-0.421413481],"rotation":[0.00760341436,0.6947899,0.00263360282,0.719167769],"scale":[0.999999166,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_2_left"},{"translation":[2.614954,-0.001245141,-0.585331],"rotation":[0.00760326162,0.6947899,0.002633438,0.719167769],"scale":[0.9999993,0.999999642,1.00000072],"name":"Hydrolic1_SPOILER_2_3_left"},{"translation":[2.60530663,-0.109168291,-0.32803908],"rotation":[0.00760348374,0.6947899,0.00263366452,0.719167769],"scale":[0.9999992,0.999999344,1.00000107],"name":"Hydrolic2_SPOILER_2_3_left"},{"translation":[4.93304634,-0.0184860229,-0.506818056],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic1_SPOILER_2_4_left"},{"translation":[4.92433929,-0.07270765,-0.265460849],"rotation":[0.00760319876,0.6947918,0.00263377978,0.7191659],"scale":[0.9999992,0.999999762,1.00000072],"name":"Hydrolic2_SPOILER_2_4_left"},{"translation":[4.93304634,-0.0184860229,-0.506819963],"rotation":[0.00760329235,0.6947918,0.00263375067,0.719166],"scale":[0.999999046,0.9999996,1.000001],"name":"Wing_Spoiler_2_4_left"},{"translation":[-0.2762127,0.432390571,2.03908443],"rotation":[0.682594657,0.0266456641,-0.0320743136,0.729606569],"scale":[1.00000131,0.9999998,1],"name":"FlapsKrueger_3_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Wing_Spoiler_2_1_left"},{"translation":[2.86842632,-0.255201161,-1.31981921],"rotation":[-0.00684322044,0.6832027,0.0139845619,0.730062842],"scale":[0.9999999,0.999999762,1.00000012],"name":"Flaps_2_left","children":[39,40]},{"translation":[-0.08635807,-0.170148611,2.576231],"rotation":[0.729701459,-0.14941819,-0.107722856,0.6584875],"scale":[0.999999762,0.999998748,0.999999464],"name":"flap_hydrolics_18_left"},{"translation":[-0.1108551,-0.5106046,5.16926956],"rotation":[0.0350204,-0.847819448,-0.0564350076,0.526109159],"scale":[0.999999046,0.9999994,0.999999344],"mesh":2,"name":"Flaps_2_left001"},{"translation":[1.75635815,0.1111089,-1.07744527],"rotation":[-0.00158689881,-0.0932033658,0.008658969,0.995608151],"scale":[0.999999166,0.999999166,0.9999998],"name":"Wing_Spoiler_1_4_left"},{"translation":[1.266262,-0.357050836,-0.87978965],"rotation":[0.0357552953,-0.105803363,0.0137958294,0.9936483],"scale":[0.999999,0.9999991,0.9999996],"name":"Hydrolic2_Flaps_1_1_left","children":[43,44]},{"translation":[-0.002585411,0.30455035,-0.6518159],"rotation":[-0.0045641847,-0.004072023,-0.000149001367,0.9999813],"scale":[1.00000012,0.99999994,0.99999994],"name":"Flaps_1_1_left"},{"translation":[-0.0025844574,0.304550469,-0.651815653],"rotation":[0.00173283485,-0.0000230509668,-0.000235040134,0.9999985],"scale":[1.00000024,0.999999642,1],"name":"Hydrolic1_Flaps_1_1_left"},{"translation":[4.095128,0.004290521,-0.768711448],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic1_SPOILER_2_1_left"},{"translation":[4.08401966,-0.29387182,-0.499293],"rotation":[0.00735273166,0.694946,0.00291820848,0.7190184],"scale":[0.9999993,1.00000024,1.00000012],"name":"Hydrolic2_SPOILER_2_1_left"},{"translation":[-1.92368126,0.48232764,2.70130849],"rotation":[0.6825947,0.0266455319,-0.0320741422,0.729606569],"scale":[1.00000143,1.00000024,1.00000024],"name":"FlapsKrueger_2_left"},{"translation":[1.22019815,0.462972224,3.0046103],"rotation":[0.682609856,0.0262488779,-0.031650465,0.7296253],"scale":[0.9999991,0.999999464,0.9999997],"name":"FlapsKrueger_1_left"},{"translation":[5.42593765,-0.5243263,-3.44257951],"rotation":[-0.047746323,0.516863644,0.00933413,0.854684234],"scale":[0.999999046,0.9999994,0.999999642],"name":"Flaps_1_left","children":[50,51]},{"translation":[0.00532531738,-0.341880441,2.4792347],"rotation":[0.723513842,0.00672937743,0.05795717,0.6878397],"scale":[1.0000006,0.999999642,1],"name":"flap_hydrolics_17_left"},{"translation":[0.05366087,-0.5436171,-0.0224170685],"rotation":[0.066437535,-0.717635334,-0.06825059,0.689875],"scale":[1.00000036,1.00000048,1.00000083],"mesh":3,"name":"Flaps_1_left001"},{"translation":[3.86463928,-0.591216445,-3.30302334],"rotation":[0.4957455,-0.06434884,0.8660403,-0.008359094],"scale":[0.9999995,0.9999992,0.9999999],"name":"Wheel_Base_left","children":[53,54,58,65,69,72,73,87]},{"translation":[0.238498211,0.6228665,-0.060988903],"rotation":[-0.7381156,-0.653139,0.109995052,0.128436789],"scale":[0.999999762,0.9999995,1.0000006],"name":"Landing_Gear_18_left"},{"translation":[0.3341503,2.01456714,-0.263353348],"rotation":[-0.7060459,0.0425602868,-0.7058247,-0.0387211032],"scale":[0.99999994,1.00000072,0.9999997],"name":"Landing_Gear_33_left","children":[55]},{"translation":[-0.117916107,0.148765087,-0.04537821],"rotation":[-0.984737754,0.008130156,-0.173853,0.0007824776],"scale":[0.9999992,1.00000107,0.9999999],"name":"Landing_Gear_37_left","children":[56,57]},{"translation":[-0.667953968,-0.574824452,-0.007077217],"rotation":[-0.508839,-0.4962332,0.4942222,0.5005796],"scale":[0.9999965,1.00000238,1.00000072],"name":"Landing_Gear_17_left"},{"translation":[-0.220382929,2.38418579e-7,-0.112304211],"rotation":[-4.22581365e-8,-4.030838e-8,3.632154e-8,1],"scale":[0.9999999,1.00000083,0.9999992],"name":"Landing_Gear_31_left"},{"translation":[0.66707325,2.00849175,-0.241577148],"rotation":[-0.7096821,-0.09555769,-0.696978,0.0379722454],"scale":[0.99999994,1.00000072,0.9999998],"name":"Landing_Gear_34_left","children":[59]},{"translation":[-0.09678888,0.1311264,0.0691962242],"rotation":[-0.8397728,-0.406130165,0.352002054,0.07703619],"scale":[0.999999046,1.00000119,0.9999998],"name":"Landing_Gear_38_left","children":[60]},{"translation":[-0.006328702,-0.943199158,0.00322252512],"rotation":[-0.7569836,-0.6488944,0.07686616,0.001832599],"scale":[0.9999984,1.00000346,0.9999983],"name":"Landing_Gear_32_left","children":[61,64]},{"translation":[0,-2.38418579e-7,4.76837158e-7],"rotation":[-1.71364093e-7,-3.35274137e-8,5.960465e-8,1],"scale":[0.99999994,0.9999995,1.00000036],"name":"Landing_Gear_27_left","children":[62,63]},{"translation":[-0.161371708,0.885039,-0.0548084974],"rotation":[0.0121803228,-0.607089639,0.0937830061,0.7889858],"scale":[0.999996841,0.9999983,1.00000453],"name":"Landing_Gear_28_left"},{"translation":[0.0539302826,0.152822375,-0.0107142925],"rotation":[-0.04510645,0.07957641,0.09312738,0.9914436],"scale":[0.9999985,0.9999958,1.00000453],"name":"Landing_Gear_23_left"},{"translation":[-1.28527832,0.0296032429,0.135627866],"rotation":[-0.0498267226,0.05795893,-0.0002607252,0.9970747],"scale":[0.99999404,1.00000179,1.00000525],"name":"Landing_Gear_29_left"},{"translation":[0.276956558,1.2843008,-0.173484325],"rotation":[-0.708400846,-0.000837276748,-0.70367527,-0.0548514463],"scale":[0.9999982,1.00000179,1],"name":"Landing_Gear_20_left","children":[66]},{"translation":[-0.008528233,0.0648286343,-0.0042090416],"rotation":[0.5267732,0.43828246,-0.377283126,0.6229574],"scale":[1,1,0.999999464],"name":"Landing_Gear_21_left","children":[67,68]},{"translation":[-0.00144147873,-0.162924767,-0.0667929649],"rotation":[0.5143717,-0.5180526,0.4851355,0.4813385],"scale":[0.99999845,1.00000036,1.00000072],"name":"Landing_Gear_19_left"},{"translation":[-9.536743e-7,-0.13403368,-0.00518023968],"rotation":[4.84279781e-8,-9.413213e-8,3.74281157e-8,1],"scale":[1.00000012,0.99999994,1.00000048],"name":"Landing_Gear_41_left"},{"translation":[0.2054596,2.51543021,0.0104985237],"rotation":[0.05778034,0.701247156,0.707739532,0.06339251],"scale":[1.00000048,1.0000006,0.9999989],"name":"Landing_Gear_07_left","children":[70,71]},{"translation":[0.713954,-0.125073433,0.177424431],"rotation":[-0.444532126,-0.450933218,0.5486535,0.5459211],"scale":[1.000001,1.00000107,0.999999046],"name":"landing_gear08_left"},{"translation":[0.302407265,-0.1270957,-0.1663909],"rotation":[-0.4445324,-0.450934261,0.548653364,0.545920134],"scale":[0.999999642,1.00000262,0.999999166],"name":"landing_gear01_left"},{"translation":[0.2576151,2.26505852,-0.121347904],"rotation":[-0.7060459,0.0425600223,-0.705824733,-0.0387208536],"scale":[1.00000036,1.00000167,1.00000012],"name":"landing_gear07_left"},{"translation":[0.37328434,3.202888,-0.0094332695],"rotation":[-0.001716404,-0.707084954,-0.00556211546,0.7071046],"scale":[0.9999992,1.00000048,0.99999994],"name":"Landing_Gear_10_left","children":[74,75,76,85,86]},{"translation":[0.02512598,-0.339024067,0.11894083],"rotation":[-0.53749454,-0.5397919,-0.461148649,0.455045432],"scale":[0.9999951,0.999999046,1.00000632],"name":"Landing_Gear_08_left"},{"translation":[-0.106812954,-0.1869855,0.245285511],"rotation":[-0.99862957,-4.82746259e-7,4.917588e-7,-0.05233586],"scale":[1.00000107,1.00000143,0.9999998],"name":"landing_gear05_left"},{"translation":[0,0.00338745117,-0.0809435844],"rotation":[-0.99862957,-1.53951171e-10,-6.803354e-11,-0.0523355044],"scale":[0.99999994,0.999999762,1],"name":"Landing_Gear_09_left","children":[77,78,79,82,83,84]},{"translation":[0.04093027,-0.241693735,-0.0619039536],"rotation":[-0.500420034,-0.500418,0.499581784,-0.499579519],"scale":[0.9999992,1.000001,1],"name":"Landing_Gear_35_left"},{"translation":[0.0474247932,-0.24166441,0.0612587929],"rotation":[-0.5004198,-0.500417769,0.499582082,-0.499579728],"scale":[0.9999991,1.000001,0.9999999],"name":"Landing_Gear_36_left"},{"translation":[0.09416151,0.312451124,0.243170738],"rotation":[0.5010935,-0.499796718,0.49570924,0.50336957],"scale":[1.00000036,1.00000036,1.00000012],"name":"Landing_Gear_06_left","children":[80,81]},{"translation":[0.414316177,0.08274412,-0.02635479],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear03_left"},{"translation":[0.217025757,0.08245802,-0.258730173],"rotation":[-0.50109446,0.499795526,-0.495703727,0.5033752],"scale":[1.00000286,1.00000572,0.9999921],"name":"landing_gear02_left"},{"translation":[0.0517382622,-0.00169229507,0.681097031],"rotation":[-8.662515e-7,9.862437e-15,7.1051156500000006e-15,1],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_01_key_left"},{"translation":[0.03893137,-0.00159454346,-0.7607932],"rotation":[-1,-3.5525578200000003e-15,1.26194213e-14,1.19248815e-8],"scale":[0.9999605,1.00004387,0.9999974],"name":"tire_02_key_left"},{"translation":[0.0336403847,3.235052,-0.0937085152],"rotation":[1.00582774e-7,-4.359753e-8,-6.181652e-8,1],"scale":[1.00000036,1.0000006,1.00000083],"mesh":4,"name":"Landing_gear_Root_left"},{"translation":[0.0153021812,-0.474268675,-0.275248051],"rotation":[-0.9986295,-5.223288e-7,0.00000105891706,-0.05233606],"scale":[1.000003,0.999992669,1.00000656],"name":"landing_gear06_left"},{"translation":[-0.106812,-0.491230726,-0.296488762],"rotation":[-0.9992415,-2.31640115e-7,-0.00000165028121,-0.0389420353],"scale":[0.9999983,1.00000632,0.9999982],"name":"landing_gear04_left"},{"translation":[1.22382164,-0.348029673,-0.153943539],"rotation":[0.00730145676,-0.7070985,0.00345581421,0.707069039],"scale":[0.999999464,1.00000012,1],"name":"Landing_Gear_14_left"},{"translation":[7.87326145,-0.4715016,-1.4636035],"rotation":[-0.04368639,0.5110596,0.006458442,0.85841006],"scale":[1.0000267,0.9999997,0.9999734],"name":"Spoiler_hydrolics_06_left","children":[89]},{"translation":[0.30559063,0.37230444,0.0004930496],"rotation":[-0.00121602661,0.0246534385,-0.364978939,0.93068856],"scale":[0.999999,0.999998868,1.00000012],"name":"Spoiler_hydrolics_05_left"},{"translation":[2.3125658,-0.8711244,-4.775808],"rotation":[0.6289141,0.328698784,-0.377832532,0.594698846],"scale":[0.999999,1.00000024,0.9999997],"name":"Landing_Gear_15_left","children":[91]},{"translation":[-0.107633591,0.367097139,0.221658289],"rotation":[-0.579571843,0.415744662,-0.575418234,-0.400183469],"scale":[0.9999995,1.000001,0.9999995],"name":"Landing_Gear_16_left"},{"translation":[1.24259949,-1.15350151,-2.95930552],"rotation":[0.479384363,-0.257725239,0.833346248,0.09644882],"scale":[0.9999996,0.999999344,0.9999994],"name":"Door02_left"},{"translation":[3.96934652,-0.816748261,-2.69679284],"rotation":[0.538764954,-0.0777338743,0.838860333,-0.00181733642],"scale":[0.9999999,0.9999993,0.9999994],"name":"Door03_left"},{"translation":[3.8755126,-0.573711038,-3.31409645],"rotation":[-0.96442163,0.05358719,-0.258697569,-0.009747672],"scale":[1,0.9999997,1],"name":"WING_DOOR02_left","children":[95]},{"translation":[0.119513988,-0.0409513861,-0.00462818146],"rotation":[-0.9999388,-0.009707425,0.000407344516,0.00529700425],"scale":[1.00000072,0.9999996,0.9999997],"mesh":5,"name":"Door04_left"},{"translation":[5.868531,-0.6075288,2.41399121],"rotation":[0.007325325,-0.259887159,-0.06454417,0.9634517],"scale":[0.9999994,0.999999344,0.999999642],"name":"Engine_PIVOT_LEFT_1","children":[97,101,102]},{"translation":[0.187080383,-1.39431429,7.75744867],"rotation":[-0.706999362,-0.004892461,0.7069988,-0.0167527739],"scale":[1,1,0.99999994],"name":"Reactor_Prop_Still_left","children":[98,99,100]},{"translation":[2.09180021,0,-0.000005722046],"rotation":[1.12611218e-7,-0.7071068,-8.231805e-8,0.7071067],"scale":[0.9999999,0.9999998,0.999998569],"mesh":6,"name":"1_blurred_left"},{"translation":[2.09180164,-3.57627869e-7,-0.000005722046],"rotation":[-0.7071002,-0.00308519369,-0.707099855,-0.00308541069],"scale":[1.00000012,1,0.9999999],"mesh":7,"name":"1_slow_left"},{"translation":[2.091803,0.00000238418579,-9.536743e-7],"rotation":[-0.7071068,-4.206454e-8,0.7071068,1.42821847e-7],"scale":[0.9999995,0.99999994,0.999999762],"mesh":8,"name":"1_still_left"},{"translation":[0.185770988,-1.42669415,2.07120037],"rotation":[-0.00841917,-0.000007856129,0.0153245768,0.9998472],"scale":[0.997038,1.00016522,1.00284588],"name":"Reactor_Back_left"},{"translation":[0.188099861,-1.456358,4.35355],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":9,"name":"FX_EXHAUST_LEFT"},{"translation":[3.62843657,-0.5176573,-4.124836],"rotation":[-0.0436866172,0.511059642,0.00645813253,0.8584101],"scale":[0.999999642,0.999999046,0.9999993],"name":"Spoiler_1_1_left"},{"translation":[7.982996,-0.0362906456,-1.76054883],"rotation":[-0.0436880365,0.511059463,0.006455744,0.8584102],"scale":[1.00002742,0.9999997,0.999972761],"name":"Spoiler_1_3_left"},{"translation":[5.91475,-0.2239846,-2.897406],"rotation":[-0.0452547148,0.504299164,0.005931459,0.862322],"scale":[1.000028,0.9999999,0.9999706],"name":"Spoiler_1_2_left"},{"translation":[5.84781456,-0.608062744,-2.62398887],"rotation":[-0.043685995,0.5110597,0.006459456,0.85841006],"scale":[0.9999993,0.999998748,0.9999998],"name":"Spoiler_hydrolics_04_left","children":[107]},{"translation":[0.266388416,0.3188628,-0.007379055],"rotation":[-0.00605567638,0.0124739613,0.4357108,0.899979949],"scale":[1.00000525,1.00001335,0.9999815],"name":"Spoiler_hydrolics_03_left"},{"translation":[3.50820732,-0.7972355,-3.85419559],"rotation":[-0.04368655,0.511059642,0.006458112,0.8584101],"scale":[0.9999995,0.999999,0.9999994],"name":"Spoiler_hydrolics_01_left","children":[109]},{"translation":[0.2856431,0.290298223,0.00000190734863],"rotation":[0.6595856,0.287899733,0.275730371,0.637207448],"scale":[1.00000024,1.00000024,1.00000012],"name":"Spoiler_hydrolics_02_left"},{"translation":[12.9740458,-1.4153657,6.55199146],"rotation":[0.00732529536,-0.2598874,-0.06454403,0.963451564],"scale":[1.00000036,1.00000012,1.00000107],"name":"Engine_PIVOT_LEFT_2"},{"translation":[0.317629337,-0.32808125,-5.10369],"rotation":[-0.997071862,-0.0764705241,2.86940356e-8,-1.9079441e-7],"scale":[0.99999994,0.99999994,1],"name":"Door03_Hydraulic01_left"},{"translation":[0.6497253,-2.102611,-5.016356],"rotation":[0.490909845,0.490909845,-0.508927763,0.508927941],"name":"WING_DOOR03_left","children":[113]},{"translation":[0.07994127,0.32234937,-0.158693552],"name":"Door03_Hydraulic02_left"},{"translation":[0,-1.84435129,23.1178951],"rotation":[0.0270323772,0,0,0.999634564],"name":"Landing_Gear_NosePart16_center","children":[115,117,119,128,130,131,133,135]},{"translation":[0.226090789,-0.9272857,0.305862427],"rotation":[-0.0270318538,0.00418857532,-0.00003651558,0.9996258],"scale":[1.00000012,1.00000024,0.9999999],"name":"Landing_Gear_NosePart10_center","children":[116]},{"translation":[-0.0236788,0.00500941277,-0.220270157],"rotation":[0.0352128372,0.09999999,-0.00323027675,0.994358957],"scale":[1,1,0.99999994],"name":"Landing_Gear_NosePart10_center001"},{"translation":[-0.229184151,-0.9398352,0.313922882],"rotation":[-0.0270323772,-4.13823678e-8,-1.43921968e-8,0.999634564],"scale":[1.00000012,1.00000024,1.00000024],"name":"Landing_Gear_NosePart09_center","children":[118]},{"translation":[0.0319646746,0.0176465511,-0.229705811],"rotation":[0.0384532958,-0.0858134,-0.00141277455,0.995567858],"scale":[1.00000012,0.9999998,1.00000024],"name":"Landing_Gear_NosePart09_center001"},{"translation":[-3.14321369e-9,-0.9186151,-0.05517769],"rotation":[-2.33349866e-7,-0.1679142,-4.27881552e-8,0.985801637],"scale":[1.00000012,1.00000012,0.9999998],"name":"Gear_Wheel_center","children":[120,125]},{"translation":[0.025592804,-0.410430431,0.0496406555],"rotation":[0.000342083629,0.205400854,0.009056285,0.978636],"scale":[1.00000012,0.9999996,0.9999997],"name":"Landing_Gear_NosePart13_center","children":[121,124]},{"translation":[-0.005656481,-0.0457814932,-0.172786713],"rotation":[0.7665125,-1.98397316e-7,1.3196258e-7,0.6422294],"scale":[0.9999999,1.00000072,1.00000024],"name":"Landing_Gear_NosePart14_center","children":[122,123]},{"translation":[0.008430719,-0.368497849,-0.329550982],"rotation":[-0.7748584,-0.00707002264,-0.005481687,0.632071555],"scale":[0.99999994,0.999999464,1.00000048],"name":"gear_pipe_point_3_center"},{"translation":[0.002431035,0.0204620361,-0.0752792358],"rotation":[-0.7826159,-0.00700203935,-0.00556876557,0.6224405],"scale":[1.00000012,1,1.00000012],"name":"gear_pipe_point_4_center"},{"translation":[-0.00845921,-0.307320476,-0.00150299072],"rotation":[0.000004078425,-0.0004563113,-0.008934856,0.99996],"scale":[0.9999999,1.00000012,0.99999994],"name":"Wheel_center"},{"translation":[-0.0414872169,0.002967,-0.12130928],"rotation":[-0.5139819,-0.64576596,0.48561582,-0.2880733],"scale":[1.00000072,1.00000012,0.999999762],"name":"Landing_Gear_NosePart15_center","children":[126,127]},{"translation":[0.289751053,0.00052285206,-0.0499343872],"rotation":[-0.5000002,-0.500000358,0.499999583,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_1_center"},{"translation":[0.212629318,0.0005228169,-0.05453205],"rotation":[-0.500000238,-0.5000002,0.499999732,0.49999997],"scale":[0.999999762,0.999999762,0.9999994],"name":"gear_pipe_point_5_center"},{"translation":[0.2793044,-0.5019189,-0.021528244],"rotation":[0.63214463,-0.3321479,-0.34455055,0.609389842],"scale":[1.00000024,0.99999994,0.9999997],"name":"Door_Left02_hydraulic02_center","children":[129]},{"translation":[0.021283865,0.03582573,-0.04520595],"rotation":[0.0583817624,0.4792682,-0.534093261,0.6940015],"scale":[1.00000012,1.00000024,0.99999994],"name":"Door_Left02_hydraulic01_center"},{"translation":[-0.000778198242,-0.671867967,0.21672821],"rotation":[-0.00007376257,-0.8692236,0.494419247,0.0000236660471],"name":"Landing_Gear_NosePart07_center"},{"translation":[-0.5013134,-0.144065619,0.170331955],"rotation":[0.429701567,0.4297139,-0.5615561,0.56156677],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart04_center","children":[132]},{"translation":[0.00000190734863,1.1920929e-7,-1.76764107],"rotation":[0,0,2.27373675e-13,1],"name":"Landing_Gear_NosePart05_center"},{"translation":[-0.2793044,-0.501918554,-0.02152443],"rotation":[-0.593563855,-0.336227626,0.3405706,0.647027552],"scale":[0.99999994,1,1],"name":"Door_Right02_hydraulic02_center","children":[134]},{"translation":[-0.021283865,-0.0358276367,0.0452079773],"rotation":[0.04388803,0.429552048,-0.5823844,0.6887579],"scale":[0.99999994,1.00000048,0.99999994],"name":"Door_Right02_hydraulic01_center"},{"translation":[0,-3.57627869e-7,0],"rotation":[-0.0270323772,0,0,0.999634564],"mesh":10,"name":"LANDING_GEAR_NOSEPART16_CENTER_1"},{"translation":[0.007133007,-0.478288829,23.7857571],"rotation":[0.00000354928,-0.7505983,0.6607588,-0.0000114836384],"scale":[1.00000012,1,1.00000012],"name":"Landing_Gear_NosePart06_center","children":[137]},{"translation":[0,-0.09894562,1.36242163],"rotation":[0.009296398,-4.547671e-13,5.11612942e-13,0.9999568],"name":"Landing_Gear_NosePart02_center","children":[138,139]},{"translation":[0,0.27699852,0.04716277],"rotation":[0.1933725,0,-1.158739e-13,0.9811255],"name":"Landing_Gear_NosePart01_center"},{"translation":[1.49011612e-8,0.07812691,-0.0590516329],"rotation":[0.0038900394,-0.00000305861067,0.0000105023964,0.99999243],"scale":[0.9999999,0.9999996,1.00000036],"name":"Landing_Gear_NosePart03_center"},{"rotation":[-1,0,0,-1.62920685e-7],"name":"Wing_right","children":[141,142,144,240]},{"translation":[-0.317629337,0.32808125,5.10369],"rotation":[-0.997071862,-0.0764705241,1.94817673e-8,-1.84558758e-7],"scale":[0.9999999,1.00000024,0.9999999],"name":"Door03_Hydraulic01_right"},{"translation":[-1.450443,-1.40532589,32.1805077],"rotation":[-0.6996959,0.02121799,0.08916648,0.7085371],"scale":[1.00000012,1.00000024,0.9999999],"name":"Trim_Elevator_right","children":[143]},{"translation":[-4.46584368,-4.07698631,-0.00621521473],"rotation":[0.7352896,0.102219775,0.1015787,0.662255347],"scale":[1.0000006,1.00000024,1.0000006],"name":"Elevator_right"},{"translation":[-3.348375,0.123601377,1.04428136],"rotation":[0.004733401,0.259418637,0.0519678779,0.964354157],"scale":[1,1,0.9999999],"name":"WING_BONE_RIGHT_00","children":[145,146,147,154,155,158,160,161,162,163,165,167,169,201,203,239]},{"translation":[-1.24259973,1.15350306,2.95930767],"rotation":[0.479384154,-0.2577262,0.833346,0.09644934],"scale":[1.0000006,1.00000012,0.99999994],"name":"Door02_right"},{"translation":[-3.96934962,0.816749454,2.69679642],"rotation":[0.538764834,-0.07773489,0.8388602,-0.001816788],"scale":[1.0000006,1.00000048,1.00000012],"name":"Door03_right"},{"translation":[-5.868534,0.60752964,-2.41399217],"rotation":[0.00732532656,-0.259887159,-0.064544186,0.9634517],"scale":[1,1.00000012,1.00000012],"name":"Engine_PIVOT_RIGHT_1","children":[148,149,153]},{"translation":[-0.1857748,1.42669618,-2.070343],"rotation":[-0.00838642847,-3.57871585e-7,0.0153054669,0.9998477],"scale":[0.999999762,1.00000048,1],"name":"Reactor_Back_right"},{"translation":[-0.187087059,1.39431691,-7.757461],"rotation":[-0.70699966,-0.004893535,0.7069985,-0.0167538542],"scale":[1.00000036,0.9999999,0.9999994],"name":"Reactor_Prop_Still_right","children":[150,151,152]},{"translation":[-2.09181356,0.00000262260437,0.000002861023],"rotation":[0.707106352,-0.00000134672428,0.7071072,-0.00000114838178],"scale":[1.00000072,1.00000012,0.9999983],"mesh":11,"name":"2_blurred_right"},{"translation":[-2.091815,0.000002861023,0.000002861023],"rotation":[0.00308636879,-0.7071007,-0.00308673177,0.7070994],"scale":[1.00000072,1.00000012,0.999999762],"mesh":12,"name":"2_slow_right"},{"translation":[-2.09181643,2.38418579e-7,0.000008583069],"rotation":[0.00000142476176,0.707106352,0.00000106651316,0.7071072],"scale":[1.00000107,0.99999994,0.9999989],"mesh":13,"name":"2_still_right"},{"translation":[-0.188096046,1.45635879,-4.35354853],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":14,"name":"FX_EXHAUST_RIGHT"},{"translation":[-1.22019887,-0.462972879,-3.0046134],"rotation":[0.682610035,0.0262489542,-0.0316506177,0.7296251],"scale":[1.00000012,1.00000072,1.00000048],"name":"FlapsKrueger_1_right"},{"translation":[-5.42594433,0.5245416,3.44597554],"rotation":[-0.04774639,0.5168637,0.00933412,0.854684234],"scale":[1.00000024,1.0000006,1.0000006],"name":"Flaps_1_right","children":[156,157]},{"translation":[-0.005323887,0.341879964,-2.47923374],"rotation":[0.7235138,0.006729279,0.05795712,0.687839746],"scale":[0.9999998,0.9999999,1.00000012],"name":"flap_hydrolics_17_right"},{"translation":[-0.06590319,0.5249982,0.00364017487],"rotation":[0.6898752,-0.0682501,0.7176352,-0.0664377958],"scale":[0.9999999,1,1.00000012],"mesh":15,"name":"Flaps_1_right001"},{"translation":[-2.31256652,0.8711257,4.775813],"rotation":[0.6289141,0.328698874,-0.377832651,0.5946988],"scale":[1.00000024,1.00000036,1.00000048],"name":"Landing_Gear_15_right","children":[159]},{"translation":[0.107634544,-0.3670988,-0.2216587],"rotation":[-0.579570949,0.415745556,-0.575418353,-0.400183737],"scale":[1.00000083,1.000002,0.99999845],"name":"Landing_Gear_16_right"},{"translation":[-3.62844014,0.5168278,4.12484026],"rotation":[-0.04368652,0.5110595,0.00645816652,0.8584102],"scale":[0.9999996,1.0000006,1.00000012],"name":"Spoiler_1_1_right"},{"translation":[-5.914755,0.223984957,2.89741],"rotation":[-0.04528014,0.5080569,0.00573390163,0.860113442],"scale":[0.9999406,1.00000036,1.00005925],"name":"Spoiler_1_2_right"},{"translation":[-7.98300171,0.0362910032,1.76055336],"rotation":[-0.0436879,0.5110594,0.00645576557,0.8584102],"scale":[0.999996543,0.999997437,1.00000763],"name":"Spoiler_1_3_right"},{"translation":[-3.50821,0.7972367,3.85419965],"rotation":[-0.0436865352,0.5110595,0.00645813067,0.8584102],"scale":[1.0000006,1.00000012,1.00000024],"name":"Spoiler_hydrolics_01_right","children":[164]},{"translation":[-0.2856431,-0.2902993,0.00000143051147],"rotation":[0.659585953,0.287899345,0.27573052,0.6372072],"scale":[1.00000048,1.00000048,1.00000083],"name":"Spoiler_hydrolics_02_right"},{"translation":[-5.847822,0.6080638,2.62399244],"rotation":[-0.0436855778,0.5110596,0.006460557,0.8584101],"scale":[0.9999967,0.9999998,1.000003],"name":"Spoiler_hydrolics_04_right","children":[166]},{"translation":[-0.266388416,-0.318862677,0.00736522675],"rotation":[-0.00608323934,0.0124876853,0.435711771,0.8999791],"scale":[0.9999625,1.00002575,1.00001311],"name":"Spoiler_hydrolics_03_right"},{"translation":[-7.873269,0.471502423,1.46360469],"rotation":[-0.043686796,0.5110597,0.00645971065,0.85841006],"scale":[1.00001478,1,0.9999853],"name":"Spoiler_hydrolics_06_right","children":[168]},{"translation":[-0.3056016,-0.3723048,-0.000500679],"rotation":[-0.00120041845,0.0246579,-0.3649802,0.9306879],"scale":[0.999999464,1.00000393,0.999998748],"name":"Spoiler_hydrolics_05_right"},{"translation":[-8.314303,0.00000125169754,0.00000160932541],"rotation":[-8.894129e-8,1.06228981e-7,-5.58793456e-9,1],"scale":[1,1.00000048,1],"name":"WING_BONE_RIGHT_01","children":[170,173,174,177,178,198,199,200]},{"translation":[-2.87029362,0.254272521,1.324141],"rotation":[-0.006843229,0.6832025,0.0139845656,0.730062962],"scale":[1.00000024,0.99999994,0.999999762],"name":"Flaps_2_right","children":[171,172]},{"translation":[0.08635962,0.170149446,-2.57623672],"rotation":[0.7297014,-0.149418682,-0.107723,0.658487439],"scale":[1.00000083,0.999999,1.00000119],"name":"flap_hydrolics_18_right"},{"translation":[0.111982465,0.5068556,-4.60874557],"rotation":[0.5261093,-0.05643483,0.8478194,-0.0350204855],"scale":[0.9999998,0.9999996,0.9999997],"mesh":16,"name":"Flaps_2_right001"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic1_SPOILER_2_1_right"},{"translation":[-1.26626873,0.35705173,0.8797917],"rotation":[0.0357553177,-0.105803348,0.0137958387,0.9936483],"scale":[1.0000006,1.00000012,0.999999642],"name":"Hydrolic2_Flaps_1_1_right","children":[175,176]},{"translation":[0.00258350372,-0.3061065,0.6527736],"rotation":[-0.00456417026,-0.004072003,-0.000149014391,0.9999813],"scale":[1.00000036,0.99999994,1.00000036],"name":"Flaps_1_1_right"},{"translation":[0.0025806427,-0.3045506,0.651814461],"rotation":[0.00173285324,-0.000023034203,-0.000235056825,0.9999985],"scale":[1.00000036,1.00000012,0.99999994],"name":"Hydrolic1_Flaps_1_1_right"},{"translation":[-4.084032,0.293872416,0.4992954],"rotation":[0.00735291326,0.694946051,0.002918173,0.71901834],"scale":[1.00000024,0.999999344,1.000001],"name":"Hydrolic2_SPOILER_2_1_right"},{"translation":[-6.337867,0.0336145163,0.000215947628],"rotation":[7.916242e-8,9.260839e-8,-3.539026e-8,1],"scale":[0.99999994,0.9999999,1.00000012],"name":"WING_BONE_RIGHT_02","children":[179,181,182,183,184,185,186,187,194,195,196,197]},{"translation":[-6.30582237,0.00921285152,0.6295024],"rotation":[-0.006843452,0.683202565,0.0139844473,0.730062962],"scale":[1.00000012,1.00000048,1.0000006],"name":"Flaps_3_right","children":[180]},{"translation":[0.111464262,0.127858639,2.31747055],"rotation":[0.703286,-0.06726212,-0.06384566,0.704832137],"scale":[1.00000191,0.999998868,0.999999642],"name":"flap_hydrolics_19_right"},{"translation":[-0.2144928,-0.019741416,0.668693066],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic1_SPOILER_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic1_SPOILER_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic1_SPOILER_2_4_right"},{"translation":[-0.2045784,0.171005368,0.421416372],"rotation":[0.007603671,0.6947902,0.002633811,0.7191675],"scale":[1.00000036,1.00000119,0.999999166],"name":"Hydrolic2_SPOILER_2_2_right"},{"translation":[-2.60531425,0.109168172,0.328037649],"rotation":[0.007603495,0.6947902,0.00263364729,0.7191675],"scale":[0.9999998,1.00000119,0.999999642],"name":"Hydrolic2_SPOILER_2_3_right"},{"translation":[-4.924349,0.07270646,0.26546222],"rotation":[0.007603454,0.6947917,0.00263401144,0.71916604],"scale":[1.00000048,1.00000143,0.9999991],"name":"Hydrolic2_SPOILER_2_4_right"},{"translation":[-6.56654739,0.00651466846,-0.00213181973],"rotation":[7.636844e-8,-3.37604327e-8,-2.71946135e-7,1],"scale":[1.00000036,1.00000024,1.00000012],"name":"WING_BONE_RIGHT_03","children":[188,189,190,192,193]},{"translation":[0.00313949585,0.007908225,0.4665305],"rotation":[0.00851354748,-0.0145073244,0.00494639948,0.999846339],"scale":[1.0000006,1.00000048,1.00000072],"name":"Aileron_1_right"},{"translation":[-3.99923325,-0.02995944,0.348880529],"rotation":[0.008513322,-0.0145071112,0.004946362,0.999846339],"scale":[1.0000006,0.9999998,1.00000048],"name":"Aileron_2_right"},{"translation":[-5.34786224,-0.0235247612,0.00155442953],"rotation":[-5.206093e-7,-2.95578445e-7,4.65661358e-8,1],"scale":[1.00000012,0.999999762,1.00000024],"name":"WING_BONE_RIGHT_04","children":[191]},{"translation":[0.045425415,-0.2883048,-1.03098571],"rotation":[0.682595,0.0266460124,-0.0320746265,0.7296063],"scale":[0.9999999,1.00000083,1.0000006],"name":"FlapsKrueger_5_right"},{"translation":[0.2617283,-0.112903118,-0.0147076249],"rotation":[0.009750019,-0.0007162161,0.9998518,0.0141735421],"scale":[1.00000048,1.0000006,1.00000036],"name":"Wing_Spoiler_2_5_right"},{"translation":[-0.0365695953,-0.3669269,-1.4662689],"rotation":[0.682594657,0.0266457219,-0.0320744,0.7296066],"scale":[0.99999994,1.00000048,1],"name":"FlapsKrueger_4_right"},{"translation":[-0.214468,-0.018866539,0.668332756],"rotation":[0.00760329748,0.6947902,0.0026336154,0.7191675],"scale":[0.9999999,1.00000107,1.00000012],"name":"Wing_Spoiler_2_2_right"},{"translation":[-2.61495972,0.00124442577,0.58533144],"rotation":[0.00760334125,0.6947902,0.00263350061,0.7191675],"scale":[0.9999999,1.0000006,0.9999999],"name":"Wing_Spoiler_2_3_right"},{"translation":[-4.933054,0.0184845924,0.5068213],"rotation":[0.007603228,0.6947921,0.00263381517,0.7191656],"scale":[0.9999999,1.00000072,0.9999999],"name":"Wing_Spoiler_2_4_right"},{"translation":[0.2762146,-0.432391644,-2.03908229],"rotation":[0.6825947,0.0266456585,-0.0320743,0.729606569],"scale":[1.00000083,1.00000048,1.00000048],"name":"FlapsKrueger_3_right"},{"translation":[-1.75636578,-0.111109138,1.0774467],"rotation":[-0.00158696191,-0.0932033658,0.008658969,0.995608151],"scale":[1.00002742,0.999999762,0.9999723],"name":"Wing_Spoiler_1_4_right"},{"translation":[-4.0951395,-0.004290104,0.768715262],"rotation":[0.007352814,0.694946051,0.00291815167,0.71901834],"scale":[1.00000024,1,1.0000006],"name":"Wing_Spoiler_2_1_right"},{"translation":[1.923686,-0.482328415,-2.70131159],"rotation":[0.6825947,0.026645679,-0.03207439,0.729606569],"scale":[0.9999993,1.00000012,1.00000036],"name":"FlapsKrueger_2_right"},{"translation":[-3.87551522,0.573712,3.3141005],"rotation":[-0.96442163,0.0535871238,-0.258697569,-0.009747602],"scale":[1.00000048,0.9999999,0.999999762],"name":"WING_DOOR02_right","children":[202]},{"translation":[-0.09166145,-0.014839083,0.04367876],"rotation":[-0.0269495845,0.00046797446,-0.000238912427,0.99963665],"scale":[1.00000107,1.00000155,1.00000119],"mesh":17,"name":"Door04_right"},{"translation":[-3.864641,0.5912173,3.303027],"rotation":[0.4957456,-0.0643499047,0.86604017,-0.008358427],"scale":[1.00000072,0.99999994,0.9999998],"name":"Wheel_Base_right","children":[204,207,221,222,223,227,231,238]},{"translation":[-0.205456257,-2.515431,-0.0104970932],"rotation":[0.0577802733,0.7012474,0.7077393,0.0633924752],"scale":[1.00000012,1.00000191,0.99999845],"name":"Landing_Gear_07_right","children":[205,206]},{"translation":[-0.302409172,0.1270957,0.16639185],"rotation":[-0.444534153,-0.450937033,0.5486514,0.545918345],"scale":[1.0000006,1.00000083,0.999999166],"name":"landing_gear01_right"},{"translation":[-0.7139559,0.12507534,-0.177423239],"rotation":[-0.444530368,-0.45093137,0.548656,0.545921445],"scale":[1.00000155,1.00000143,0.99999845],"name":"landing_gear08_right"},{"translation":[-0.373281956,-3.21106887,0.009433746],"rotation":[-0.00171652681,-0.707084954,-0.00556244049,0.7071046],"scale":[1.00000024,1.00000048,1.00000083],"name":"Landing_Gear_10_right","children":[208,209,218,219,220]},{"translation":[-0.0251255035,0.339024067,-0.118941784],"rotation":[-0.5374941,-0.539788663,-0.461154252,0.4550439],"scale":[0.999981344,0.9999963,1.00002265],"name":"Landing_Gear_08_right"},{"translation":[4.76837158e-7,-0.00338840485,0.08094406],"rotation":[-0.99862957,-4.432793e-8,3.406478e-7,-0.05233552],"scale":[0.999999762,1.00000036,1.00000024],"name":"Landing_Gear_09_right","children":[210,213,214,215,216,217]},{"translation":[-0.09416199,-0.312451124,-0.243170738],"rotation":[0.501094043,-0.499797136,0.495709479,0.5033683],"scale":[1.00000107,1.0000006,1.00000012],"name":"Landing_Gear_06_right","children":[211,212]},{"translation":[-0.217030048,-0.08245611,0.2587304],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear02_right"},{"translation":[-0.414316177,-0.08274174,0.0263545513],"rotation":[-0.5011059,0.499803245,-0.4956936,0.5033662],"scale":[0.9999964,1.00000978,0.999994636],"name":"landing_gear03_right"},{"translation":[-0.04093027,0.24169302,0.0619034767],"rotation":[-0.5004197,-0.5004178,0.4995824,-0.4995793],"scale":[1.00000024,1.00000048,1.00000072],"name":"Landing_Gear_35_right"},{"translation":[-0.04742527,0.2416637,-0.06125927],"rotation":[-0.5004193,-0.500418067,0.499582171,-0.499579877],"scale":[1.00000048,0.99999845,1.00000107],"name":"Landing_Gear_36_right"},{"translation":[-0.0517377853,-0.00623846054,-0.681098],"rotation":[-8.662516e-7,-1.002765e-14,2.13181821e-13,1],"scale":[1.00007963,0.999921441,0.999999166],"name":"tire_01_key_right"},{"translation":[-0.0389318466,-0.006542444,0.759859562],"rotation":[-1,-9.94863236e-14,9.66441757e-14,1.19248815e-8],"scale":[1.000081,0.9999192,0.999999642],"name":"tire_02_key_right"},{"translation":[-0.03367424,-3.24317956,0.09277725],"rotation":[1.71361023e-7,1.02446961e-7,0.00000132992864,1],"scale":[1.00000119,1,0.999998569],"mesh":18,"name":"Landing_gear_Root_right"},{"translation":[0.106811047,0.491230726,0.296488762],"rotation":[-0.9992415,0.00000166204075,-0.00000249417667,-0.0389420055],"scale":[1.00004983,0.9999272,1.000025],"name":"landing_gear04_right"},{"translation":[0.106812477,0.186984062,-0.245285988],"rotation":[-0.99862957,-5.59745729e-7,9.06202558e-7,-0.0523358621],"scale":[1.00000143,1,0.99999994],"name":"landing_gear05_right"},{"translation":[-0.0153021812,0.474267721,0.275247574],"rotation":[-0.998629451,-4.54888777e-7,0.000002030508,-0.0523382],"scale":[1.00000143,1.0000006,0.9999997],"name":"landing_gear06_right"},{"translation":[-1.22381783,0.348030329,0.153943539],"rotation":[0.00730130542,-0.7070985,0.00345573318,0.707069039],"scale":[0.99999994,1.00000036,1.00000048],"name":"Landing_Gear_14_right"},{"translation":[-0.2384944,-0.622866631,0.0609898567],"rotation":[-0.738115668,-0.6531392,0.109994896,0.128436044],"scale":[1,1.00000024,1],"name":"Landing_Gear_18_right"},{"translation":[-0.27695322,-1.28430152,0.173485756],"rotation":[-0.708400846,-0.000836311956,-0.7036754,-0.05485084],"scale":[1.00000143,1,0.9999993],"name":"Landing_Gear_20_right","children":[224]},{"translation":[0.008528233,-0.06482935,0.00420856476],"rotation":[0.526773155,0.4382799,-0.377282143,0.622959852],"scale":[1.0000037,1.00000608,0.9999915],"name":"Landing_Gear_21_right","children":[225,226]},{"translation":[0.00144290924,0.1629262,0.06679213],"rotation":[0.5143709,-0.5180562,0.4851327,0.481338263],"scale":[0.999991357,1.00000036,1.00000954],"name":"Landing_Gear_19_right"},{"translation":[0.00000238418579,0.134036064,0.00517952442],"rotation":[1.680337e-8,-3.11589247e-7,3.5556468e-8,1],"scale":[0.9999948,1.00000739,0.9999984],"name":"Landing_Gear_41_right"},{"translation":[-0.334146976,-2.01456738,0.263353348],"rotation":[-0.7060457,0.0425617956,-0.7058248,-0.03872242],"scale":[1.000001,1.00000024,1.00000072],"name":"Landing_Gear_33_right","children":[228]},{"translation":[0.117917061,-0.148765087,0.04537964],"rotation":[-0.984737754,0.008130239,-0.17385301,0.0007825128],"scale":[0.999999762,0.9999993,1.00000167],"name":"Landing_Gear_37_right","children":[229,230]},{"translation":[0.667953134,0.5748277,0.00707626343],"rotation":[-0.5088381,-0.496233046,0.494221658,0.5005811],"scale":[0.999994457,1.00000381,1.00000322],"name":"Landing_Gear_17_right"},{"translation":[0.167813063,0.00268483162,0.00000238418579],"rotation":[-6.41455244e-8,-4.106647e-8,4.51690951e-8,1],"scale":[1.00000083,1.00000048,1.00000107],"name":"Landing_Gear_31_right"},{"translation":[-0.667070866,-2.00849319,0.2415781],"rotation":[-0.709682167,-0.09555723,-0.6969779,0.0379721373],"scale":[1.00000048,0.999999762,1.00000131],"name":"Landing_Gear_34_right","children":[232]},{"translation":[0.09678888,-0.131126165,-0.0691990852],"rotation":[-0.839773059,-0.406130224,0.352001667,0.07703543],"scale":[1.00000072,1.00000048,0.9999989],"name":"Landing_Gear_38_right","children":[233]},{"translation":[0.006328821,0.9432006,-0.00322312117],"rotation":[-0.756983638,-0.64889437,0.07686701,0.00183209206],"scale":[0.999998748,1.000002,1.00000048],"name":"Landing_Gear_32_right","children":[234,237]},{"translation":[-4.76837158e-7,-4.76837158e-7,-0.00000166893],"rotation":[-2.79384949e-7,-5.963352e-8,5.96058953e-8,1],"scale":[1.000005,1.00000274,0.9999952],"name":"Landing_Gear_27_right","children":[235,236]},{"translation":[-0.05392933,-0.152823448,0.0107153654],"rotation":[-0.0451062471,0.07957671,0.0931274,0.9914436],"scale":[1.00000119,1.00000083,0.999998748],"name":"Landing_Gear_23_right"},{"translation":[0.161372185,-0.885045052,0.0548145771],"rotation":[0.0121787246,-0.607089758,0.093779996,0.788986],"scale":[1.00000322,1.00000012,0.999995232],"name":"Landing_Gear_28_right"},{"translation":[1.28528214,-0.0296049118,-0.135630727],"rotation":[-0.0498265065,0.05795823,-0.000260304631,0.997074842],"scale":[0.9999991,1.00000632,0.9999972],"name":"Landing_Gear_29_right"},{"translation":[-0.257612228,-2.26505971,0.121347904],"rotation":[-0.706045747,0.04255996,-0.7058249,-0.0387206227],"scale":[1,1.0000006,1.000001],"name":"landing_gear07_right"},{"translation":[-12.9740658,1.4153682,-6.55199766],"rotation":[-0.9643542,0.05196784,-0.259418547,-0.004733256],"scale":[1.00000119,1.00000036,0.999999],"name":"Engine_PIVOT_RIGHT_2"},{"translation":[-0.6497253,2.102611,5.016356],"rotation":[0.4909097,0.490909636,-0.508927763,0.508928239],"scale":[0.9999998,1,1.000001],"name":"WING_DOOR03_right","children":[241]},{"translation":[-0.07994223,-0.3223496,0.15869379],"rotation":[1.22518031e-7,1.05239437e-7,-1.40098223e-7,1],"scale":[1.00000012,0.9999995,1.0000006],"name":"Door03_Hydraulic02_right"},{"translation":[-0.6216232,1.38451254,-26.3910179],"rotation":[0,-1,0,-7.54979e-8],"name":"BACK_DOOR","children":[243,244]},{"translation":[1.51670659,0.0593546629,0.09595871],"name":"Rear_door"},{"translation":[1.66407359,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Rear_door_pivot"},{"translation":[-2.802113,0.120608084,17.4044781],"rotation":[0,0,0.9848078,0.173648223],"scale":[1.59984982,1.59984982,1.59984982],"name":"CARGO_DOOR","children":[246]},{"translation":[-0.07027137,-0.09023255,0.115065575],"rotation":[0.000002611794,0.00000116849469,0.9999597,-0.008979633],"scale":[0.625058949,0.625058949,0.6250587],"name":"CARGO_DOOR_HINGE"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[-0.164798126,-0.98632735,-4.44642041e-7,-0.000002661212],"scale":[1.00000024,1.00000024,1],"name":"CARGO_PISTON"},{"translation":[-1.94440138,-0.0237501785,17.58857],"rotation":[0.7071068,0,0,0.7071067],"scale":[0.7524738,0.752473652,0.752473652],"name":"CARGO_PISTON001"},{"translation":[0.6120134,1.38451254,22.0964947],"name":"FRONT_DOOR","children":[250,251]},{"translation":[1.51670647,0.0593546629,0.09595871],"name":"Passenger_door"},{"translation":[1.66407371,-0.27347517,0.606191635],"rotation":[0,0.8367865,0,0.54752934],"name":"Passenger_door_pivot"},{"translation":[0.190857127,0.9710189,27.28954],"rotation":[-0.5561995,0.243252084,0.728066444,-0.318417639],"scale":[1.00000012,1.00000012,1.00000036],"name":"LeftWiper","children":[253]},{"translation":[0.00000190734863,-0.3225479,0.09060097],"rotation":[0.061628297,-0.7044163,-0.0616281778,0.7044159],"scale":[0.9999997,0.999999762,1],"name":"LeftWiper_Aux1"},{"translation":[-0.190857157,0.97101897,27.28954],"rotation":[-0.318417519,-0.728066444,0.243252143,0.5561996],"scale":[1,0.99999994,0.99999994],"name":"RightWiper","children":[255]},{"translation":[-0.00000381469727,0.322551727,-0.09060049],"rotation":[0.06162833,-0.704416156,-0.06162816,0.7044159],"scale":[1.00000012,1,1],"name":"RightWiper_Aux1"},{"mesh":19,"name":"Body_center"},{"mesh":20,"name":"WINDSHIELD"},{"translation":[-3.42732048,-0.176593766,3.17954969],"rotation":[-7.54979e-8,-1,-7.54979e-8,-5.6999333100000005e-15],"mesh":21,"name":"LIGHT_ASOBO_LandingWing_Right"},{"translation":[3.424549,-0.176594272,3.16573286],"rotation":[0,-1,0,7.54979e-8],"mesh":22,"name":"LIGHT_ASOBO_LandingWing_Left"},{"translation":[2.73906183,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":23,"name":"LIGHT_ASOBO_Wing_Left"},{"translation":[-2.73759484,-0.154844522,5.708071],"rotation":[0,-1,0,-7.54979e-8],"mesh":24,"name":"LIGHT_ASOBO_Wing_Right"},{"translation":[-0.7061607,1.52168584,-37.0003777],"rotation":[0,-1,0,7.54979e-8],"mesh":25,"name":"LIGHT_ASOBO_StrobeTail_Right"},{"translation":[0.7143089,1.52168274,-37.00236],"rotation":[0,-1,0,7.54979e-8],"mesh":26,"name":"LIGHT_ASOBO_StrobeTail_Left"},{"translation":[-3.36571121,-0.176593781,3.267181],"rotation":[0,-1,0,-4.371139e-8],"mesh":27,"name":"LIGHT_ASOBO_RunwayTurnOff_Right"},{"translation":[3.36336136,-0.176594272,3.26802778],"rotation":[0,-1,0,7.54979e-8],"mesh":28,"name":"LIGHT_ASOBO_RunwayTurnOff_Left"},{"translation":[0.0008451908,3.87055969,-0.13583234],"rotation":[0,-1,0,7.54979e-8],"mesh":29,"name":"LIGHT_ASOBO_Beacon_Top"},{"translation":[3.16649675e-7,-2.545454,1.60331059],"rotation":[0,-1,0,7.54979e-8],"mesh":30,"name":"LIGHT_ASOBO_Beacon_Belly"},{"translation":[2.57077742,1.38609684,21.8967667],"scale":[0.99999994,1,1.00000012],"mesh":31,"name":"Porthole_Blocker_center"},{"translation":[-0.306189775,-2.04851747,23.2452831],"rotation":[2.03790163e-9,-0.999634564,-0.02703242,7.558061e-8],"scale":[1,0.999999642,0.999999642],"mesh":32,"name":"LIGHT_ASOBO_LandingNose_Right"},{"translation":[-0.169818163,-2.17914844,23.23821],"rotation":[2.03790163e-9,-0.999634564,-0.02703242,7.558061e-8],"scale":[1,0.999999642,0.999999642],"mesh":33,"name":"LIGHT_ASOBO_Taxi_Right"},{"translation":[0.174989372,-2.17993021,23.237421],"rotation":[2.03790163e-9,-0.999634564,-0.02703242,7.558061e-8],"scale":[1,0.999999642,0.999999642],"mesh":34,"name":"LIGHT_ASOBO_Taxi_Left"},{"translation":[0.312226921,-2.049117,23.2444973],"rotation":[2.03790163e-9,-0.999634564,-0.02703242,7.558061e-8],"scale":[1,0.999999642,0.999999642],"mesh":35,"name":"LIGHT_ASOBO_LandingNose_Left"},{"translation":[-3.24470758,1.89555919,-33.8153839],"rotation":[-5.820805e-11,-1,5.58793474e-8,-7.831478e-8],"scale":[0.9999997,1.00000024,0.99999994],"mesh":36,"name":"LIGHT_ASOBO_Logo_Right"},{"translation":[3.24470735,1.90187967,-33.8153763],"rotation":[-8.881784e-16,-1,-2.91038166e-11,3.99797443e-7],"scale":[1.00000024,1,1.00000012],"mesh":37,"name":"LIGHT_ASOBO_Logo_Left"},{"translation":[-27.6158371,2.75933123,-13.842473],"rotation":[-3.87430219e-7,-1,9.909271e-7,-2.30968055e-7],"scale":[0.999999642,1.00000012,1.00000024],"mesh":38,"name":"LIGHT_ASOBO_StrobeWing_Right"},{"translation":[-27.3778381,2.71607471,-13.5989923],"rotation":[-1.63912787e-7,-1,5.066394e-7,2.384185e-7],"scale":[0.9999998,1,1.00000048],"mesh":39,"name":"LIGHT_ASOBO_NavigationGreen"},{"translation":[27.37888,2.716077,-13.5873423],"rotation":[7.10542736e-15,-1,2.32830422e-10,-1.62166543e-7],"scale":[0.9999998,1.00000024,1.00000024],"mesh":40,"name":"LIGHT_ASOBO_NavigationRed"},{"translation":[29.929781,3.294183,-18.0441437],"rotation":[7.10542736e-15,-1,2.32830422e-10,-1.62166543e-7],"scale":[0.9999998,1.00000024,1.00000024],"mesh":41,"name":"LIGHT_ASOBO_NavigationWing_Left"},{"translation":[27.6289768,2.75933123,-13.8391371],"rotation":[7.10542736e-15,-1,2.32830422e-10,-1.62166543e-7],"scale":[0.9999998,1.00000024,1.00000024],"mesh":42,"name":"LIGHT_ASOBO_StrobeWing_Left"},{"translation":[-29.9282532,3.2941823,-18.0457535],"rotation":[-1.63912787e-7,-1,5.066394e-7,2.384185e-7],"scale":[0.9999998,1,1.00000048],"mesh":43,"name":"LIGHT_ASOBO_NavigationWing_Right"},{"translation":[-0.0014090538,3.22900081,-4.470517],"mesh":44,"name":"Livery_KLM_FuselageA"},{"translation":[0.000472832,2.099659,-22.4412289],"mesh":45,"name":"Livery_KLM_RegNumber"},{"translation":[0,1.53998041,-2.13316154],"mesh":46,"name":"Livery_KLM_FuselageB"},{"mesh":47,"skin":0,"name":"WING_RIGHT_1"},{"mesh":48,"skin":1,"name":"WING_LEFT_1"},{"translation":[-0.000002663216946530156,9.241080284118652,-36.35052490234375],"rotation":[0.28291264176368713,0.5717583298683167,0.4160439670085907,0.6480435132980347],"mesh":49,"name":"Rudder_LIVERYDECAL"},{"translation":[0.7220770120620728,-1.9521019458770752,23.631929397583008],"rotation":[0.715813398361206,0.03603672236204147,0.6965124607086182,0.034396108239889145],"mesh":50,"name":"C_Door_02_Left_LIVERYDECALS"},{"translation":[-0.726417064666748,-1.9530106782913208,23.631912231445312],"rotation":[-0.03489641100168228,0.6998390555381775,-0.03553038462996483,0.7125623822212219],"mesh":51,"name":"C_Door_02_right_LIVERYDECALS"},{"translation":[-2.3514771461486816,1.3771086931228638,-26.49029541015625],"mesh":52,"name":"DoorB_LIVERYDECAL"},{"mesh":53,"name":"Livery_KLM_FuselageA.001"},{"translation":[0.6497254371643066,-2.1026113033294678,-5.016356945037842],"rotation":[0.712636411190033,0.7015312910079956,-0.0006685919361189008,0.001663838280364871],"mesh":54,"name":"Door01_left_LIVERYDECAL"},{"translation":[-0.6497254967689514,-2.102611780166626,-5.016357421875],"rotation":[-0.0016642240807414055,-0.0006689373985864222,-0.7015330791473389,0.7126347422599792],"mesh":55,"name":"Door01_right_LIVERYDECAL"},{"mesh":56,"name":"livery_vstab"},{"translation":[-2.7386319637298584,-0.0703480988740921,17.432857513427734],"mesh":57,"name":"Cargo_Door_LIVERYDECAL"},{"mesh":58,"name":"Plane.001"},{"mesh":59,"name":"Plane.002"},{"mesh":60,"name":"Plane.005"},{"mesh":61,"name":"Plane.006"},{"scale":[1.0019999742507935,1,1],"mesh":62,"name":"Plane.010"}],"scene":0,"scenes":[{"nodes":[0,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299]}],"skins":[{"inverseBindMatrices":0,"joints":[0,140,144,169,178,187,190],"skeleton":0,"name":"skeleton #0"},{"inverseBindMatrices":1,"joints":[0,12,15,16,17,18,19],"skeleton":0,"name":"skeleton #1"}],"textures":[{"extensions":{"MSFT_texture_dds":{"source":0}}},{"extensions":{"MSFT_texture_dds":{"source":1}}},{"extensions":{"MSFT_texture_dds":{"source":2}}},{"extensions":{"MSFT_texture_dds":{"source":3}}},{"extensions":{"MSFT_texture_dds":{"source":4}}},{"extensions":{"MSFT_texture_dds":{"source":5}}},{"extensions":{"MSFT_texture_dds":{"source":6}}},{"extensions":{"MSFT_texture_dds":{"source":7}}},{"extensions":{"MSFT_texture_dds":{"source":8}}},{"extensions":{"MSFT_texture_dds":{"source":9}}},{"extensions":{"MSFT_texture_dds":{"source":10}}},{"extensions":{"MSFT_texture_dds":{"source":11}}},{"extensions":{"MSFT_texture_dds":{"source":12}}},{"extensions":{"MSFT_texture_dds":{"source":13}}},{"extensions":{"MSFT_texture_dds":{"source":13}}},{"extensions":{"MSFT_texture_dds":{"source":14}}},{"extensions":{"MSFT_texture_dds":{"source":15}}},{"extensions":{"MSFT_texture_dds":{"source":16}}},{"extensions":{"MSFT_texture_dds":{"source":17}}}],"extensionsUsed":["ASOBO_normal_map_convention","ASOBO_material_detail_map","ASOBO_material_windshield_v2","ASOBO_material_blend_gbuffer","ASOBO_material_draw_order","MSFT_texture_dds","ASOBO_asset_optimized"],"buffers":[{"byteLength":2657648,"uri":"B787_lod5.bin"}],"images":[{"uri":"787_10_AIRFRAME_FUSELAGE1_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_FUSELAGE1_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_WINGS_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD4_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_TAIL_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"GLASS_DETAILMAP01_LOW_MASK.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"FROST_DETAIL_LOW_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"LIVERY_KLM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_ENGINE_NORM.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"}]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.bin b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.bin new file mode 100644 index 00000000..7d28f39c Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.bin differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.gltf b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.gltf new file mode 100644 index 00000000..29defa65 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/B787_lod6.gltf @@ -0,0 +1 @@ +{"accessors":[{"bufferView":0,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":1,"componentType":5126,"count":221,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":0,"byteOffset":884,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"componentType":5126,"count":221,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":0,"byteOffset":1768,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":1,"byteOffset":2652,"componentType":5126,"count":221,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":0,"byteOffset":2652,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":1,"byteOffset":5304,"componentType":5126,"count":221,"type":"VEC3","name":"accessorAnimationPositions"},{"bufferView":0,"byteOffset":3536,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":2,"byteOffset":3536,"componentType":5126,"count":221,"type":"VEC4","name":"accessorAnimationRotations"},{"bufferView":0,"byteOffset":4420,"componentType":5126,"count":221,"min":[0],"max":[7.33333349],"type":"SCALAR","name":"accessorAnimationInput"},{"bufferView":1,"byteOffset":7956,"componentType":5126,"count":221,"type":"VEC3","name":"accessorAnimationScales"},{"bufferView":3,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_LEFT_vertices#0_POSITION"},{"bufferView":3,"byteOffset":12,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_TANGENT"},{"bufferView":3,"byteOffset":16,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_NORMAL"},{"bufferView":3,"byteOffset":20,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_0"},{"bufferView":3,"byteOffset":24,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_LEFT_vertices#0_TEXCOORD_1"},{"bufferView":3,"byteOffset":28,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_LEFT_vertices#0_COLOR_0"},{"bufferView":4,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_LEFT_indices#0"},{"bufferView":3,"byteOffset":144,"componentType":5126,"count":4,"min":[-0.004999999888241291,0,-0.004999999888241291],"max":[0.004999999888241291,0.009999999776482582,-0.004999999888241291],"type":"VEC3","name":"FX_EXHAUST_RIGHT_vertices#0_POSITION"},{"bufferView":3,"byteOffset":156,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_TANGENT"},{"bufferView":3,"byteOffset":160,"componentType":5120,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_NORMAL"},{"bufferView":3,"byteOffset":164,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_0"},{"bufferView":3,"byteOffset":168,"componentType":5122,"count":4,"type":"VEC2","name":"FX_EXHAUST_RIGHT_vertices#0_TEXCOORD_1"},{"bufferView":3,"byteOffset":172,"componentType":5123,"count":4,"type":"VEC4","name":"FX_EXHAUST_RIGHT_vertices#0_COLOR_0"},{"bufferView":4,"byteOffset":12,"componentType":5123,"count":6,"type":"SCALAR","name":"FX_EXHAUST_RIGHT_indices#0"},{"bufferView":3,"byteOffset":288,"componentType":5126,"count":190,"min":[-29.925140380859375,-3.3663330078125,-39.70708465576172],"max":[29.925128936767578,12.163358688354492,28.476634979248047],"type":"VEC3","name":"x6_Body_center_vertices#0_POSITION"},{"bufferView":3,"byteOffset":300,"componentType":5120,"count":190,"type":"VEC4","name":"x6_Body_center_vertices#0_TANGENT"},{"bufferView":3,"byteOffset":304,"componentType":5120,"count":190,"type":"VEC4","name":"x6_Body_center_vertices#0_NORMAL"},{"bufferView":3,"byteOffset":308,"componentType":5122,"count":190,"type":"VEC2","name":"x6_Body_center_vertices#0_TEXCOORD_0"},{"bufferView":3,"byteOffset":312,"componentType":5122,"count":190,"type":"VEC2","name":"x6_Body_center_vertices#0_TEXCOORD_1"},{"bufferView":3,"byteOffset":316,"componentType":5123,"count":190,"type":"VEC4","name":"x6_Body_center_vertices#0_COLOR_0"},{"bufferView":4,"byteOffset":24,"componentType":5123,"count":294,"type":"SCALAR","name":"x6_Body_center_indices#0"},{"bufferView":6,"byteOffset":28,"componentType":5123,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":16,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_NORMAL"},{"bufferView":6,"componentType":5126,"count":1084,"min":[-6.898191452026367,-2.385265350341797,-0.27293723821640015],"max":[4.0452880859375,0.5350360870361328,0.27293795347213745],"type":"VEC3","name":"x1_Rudder_center.001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":12,"componentType":5120,"count":1084,"type":"VEC4","name":"x1_Rudder_center.001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":20,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":24,"componentType":5122,"count":1084,"type":"VEC2","name":"x1_Rudder_center.001_vertices#0_TEXCOORD_1"},{"bufferView":5,"componentType":5123,"count":5460,"type":"SCALAR","name":"x1_Rudder_center.001_indices#0"},{"bufferView":6,"byteOffset":39052,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":39040,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":39024,"componentType":5126,"count":43,"min":[-0.48449012637138367,0.054303597658872604,-0.7407507300376892],"max":[0.5785654187202454,0.16718320548534393,-0.044933248311281204],"type":"VEC3","name":"x1_Livery_C_Door_02_Left.002_vertices#0_POSITION"},{"bufferView":6,"byteOffset":39036,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":39044,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":39048,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_Left.002_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":10920,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_Left.002_indices#0"},{"bufferView":6,"byteOffset":40600,"componentType":5123,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":40588,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":40572,"componentType":5126,"count":43,"min":[-0.5787447690963745,-0.16539137065410614,0.044925887137651443],"max":[0.4843108654022217,-0.05251185968518257,0.7407436966896057],"type":"VEC3","name":"x1_Livery_C_Door_02_right.002_vertices#0_POSITION"},{"bufferView":6,"byteOffset":40584,"componentType":5120,"count":43,"type":"VEC4","name":"x1_Livery_C_Door_02_right.002_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":40592,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":40596,"componentType":5122,"count":43,"type":"VEC2","name":"x1_Livery_C_Door_02_right.002_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":11100,"componentType":5123,"count":90,"type":"SCALAR","name":"x1_Livery_C_Door_02_right.002_indices#0"},{"bufferView":6,"byteOffset":42148,"componentType":5123,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":42136,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":42120,"componentType":5126,"count":345,"min":[-0.2698783874511719,-0.9995222091674805,-0.5886659622192383],"max":[0.0020599365234375,0.5340242385864258,0.5886745452880859],"type":"VEC3","name":"x0_Livery_KLM_DoorB.001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":42132,"componentType":5120,"count":345,"type":"VEC4","name":"x0_Livery_KLM_DoorB.001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":42140,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":42144,"componentType":5122,"count":345,"type":"VEC2","name":"x0_Livery_KLM_DoorB.001_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":11280,"componentType":5123,"count":906,"type":"SCALAR","name":"x0_Livery_KLM_DoorB.001_indices#0"},{"bufferView":6,"byteOffset":54568,"componentType":5123,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":54556,"componentType":5120,"count":24,"type":"VEC4","name":"x0_Livery_KLM_FuselageA.005_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":54540,"componentType":5126,"count":24,"min":[2.5483758449554443,1.5735995769500732,5.896169662475586],"max":[2.77527117729187,1.843569040298462,21.52033805847168],"type":"VEC3","name":"x0_Livery_KLM_FuselageA.005_vertices#0_POSITION"},{"bufferView":6,"byteOffset":54560,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":54564,"componentType":5122,"count":24,"type":"VEC2","name":"x0_Livery_KLM_FuselageA.005_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":13092,"componentType":5123,"count":63,"type":"SCALAR","name":"x0_Livery_KLM_FuselageA.005_indices#0"},{"bufferView":6,"byteOffset":55432,"componentType":5123,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":55420,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":55404,"componentType":5126,"count":31,"min":[-0.27521419525146484,-0.27002182602882385,-1.6258187294006348],"max":[-0.24078130722045898,0.6198497414588928,1.8943886756896973],"type":"VEC3","name":"x0_R_Door01_left.001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":55416,"componentType":5120,"count":31,"type":"VEC4","name":"x0_R_Door01_left.001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":55424,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":55428,"componentType":5122,"count":31,"type":"VEC2","name":"x0_R_Door01_left.001_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":13220,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_R_Door01_left.001_indices#0"},{"bufferView":6,"byteOffset":56548,"componentType":5123,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":56536,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":56520,"componentType":5126,"count":31,"min":[0.24078059196472168,-0.6198493242263794,-1.8943934440612793],"max":[0.27521395683288574,0.2700219750404358,1.625821590423584],"type":"VEC3","name":"x0_Door01_right.001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":56532,"componentType":5120,"count":31,"type":"VEC4","name":"x0_Door01_right.001_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":56540,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":56544,"componentType":5122,"count":31,"type":"VEC2","name":"x0_Door01_right.001_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":13396,"componentType":5123,"count":87,"type":"SCALAR","name":"x0_Door01_right.001_indices#0"},{"bufferView":6,"byteOffset":57664,"componentType":5123,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":57652,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":57636,"componentType":5126,"count":2356,"min":[-0.5303040146827698,2.561161756515503,-39.11258316040039],"max":[0.5303040146827698,12.468074798583984,-25.891597747802734],"type":"VEC3","name":"livery_vstab_vertices#0_POSITION"},{"bufferView":6,"byteOffset":57648,"componentType":5120,"count":2356,"type":"VEC4","name":"livery_vstab_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":57656,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":57660,"componentType":5122,"count":2356,"type":"VEC2","name":"livery_vstab_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":13572,"componentType":5123,"count":12342,"type":"SCALAR","name":"livery_vstab_indices#0"},{"bufferView":6,"byteOffset":142480,"componentType":5123,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":142468,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":142452,"componentType":5126,"count":35,"min":[0.38646888732910156,-1.475200891494751,-1.4131393432617188],"max":[0.8847513198852539,-0.9122163653373718,1.4013233184814453],"type":"VEC3","name":"Cargo_Door_LIVERYDECAL_vertices#0_POSITION"},{"bufferView":6,"byteOffset":142464,"componentType":5120,"count":35,"type":"VEC4","name":"Cargo_Door_LIVERYDECAL_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":142472,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":142476,"componentType":5122,"count":35,"type":"VEC2","name":"Cargo_Door_LIVERYDECAL_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":38256,"componentType":5123,"count":120,"type":"SCALAR","name":"Cargo_Door_LIVERYDECAL_indices#0"},{"bufferView":6,"byteOffset":143740,"componentType":5123,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":143728,"componentType":5120,"count":270,"type":"VEC4","name":"Plane.002_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":143712,"componentType":5126,"count":270,"min":[-2.8634743690490723,-0.27878737449645996,-25.152372360229492],"max":[2.863468647003174,2.3880088329315186,-20.129650115966797],"type":"VEC3","name":"Plane.002_vertices#0_POSITION"},{"bufferView":6,"byteOffset":143732,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":143736,"componentType":5122,"count":270,"type":"VEC2","name":"Plane.002_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":38496,"componentType":5123,"count":918,"type":"SCALAR","name":"Plane.002_indices#0"},{"bufferView":6,"byteOffset":153460,"componentType":5123,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":153448,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":153432,"componentType":5126,"count":2765,"min":[-1.2694666385650635,-2.546407699584961,-15.50222110748291],"max":[1.269464135169983,-1.9093613624572754,8.595946311950684],"type":"VEC3","name":"Plane.004_vertices#0_POSITION"},{"bufferView":6,"byteOffset":153444,"componentType":5120,"count":2765,"type":"VEC4","name":"Plane.004_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":153452,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":153456,"componentType":5122,"count":2765,"type":"VEC2","name":"Plane.004_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":40332,"componentType":5123,"count":8436,"type":"SCALAR","name":"Plane.004_indices#0"},{"bufferView":6,"byteOffset":253000,"componentType":5123,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":252988,"componentType":5120,"count":12650,"type":"VEC4","name":"Plane.001_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":252972,"componentType":5126,"count":12650,"min":[-2.848564624786377,1.0104148387908936,-2.4503250122070312],"max":[2.848580837249756,2.654226064682007,19.7845458984375],"type":"VEC3","name":"Plane.001_vertices#0_POSITION"},{"bufferView":6,"byteOffset":252992,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":252996,"componentType":5122,"count":12650,"type":"VEC2","name":"Plane.001_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":57204,"componentType":5123,"count":39384,"type":"SCALAR","name":"Plane.001_indices#0"},{"bufferView":6,"byteOffset":708400,"componentType":5123,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":708388,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":708372,"componentType":5126,"count":92,"min":[-2.3540401458740234,0.9106197357177734,23.448795318603516],"max":[2.3526997566223145,1.9353947639465332,24.303451538085938],"type":"VEC3","name":"Plane.003_vertices#0_POSITION"},{"bufferView":6,"byteOffset":708384,"componentType":5120,"count":92,"type":"VEC4","name":"Plane.003_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":708392,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":708396,"componentType":5122,"count":92,"type":"VEC2","name":"Plane.003_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":135972,"componentType":5123,"count":336,"type":"SCALAR","name":"Plane.003_indices#0"},{"bufferView":6,"byteOffset":711712,"componentType":5123,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_COLOR_0"},{"bufferView":6,"byteOffset":711700,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_NORMAL"},{"bufferView":6,"byteOffset":711684,"componentType":5126,"count":3715,"min":[-3.255725383758545,-1.545548439025879,-30.79000473022461],"max":[3.2557260990142822,-0.9825637340545654,28.268733978271484],"type":"VEC3","name":"Plane.008_vertices#0_POSITION"},{"bufferView":6,"byteOffset":711696,"componentType":5120,"count":3715,"type":"VEC4","name":"Plane.008_vertices#0_TANGENT"},{"bufferView":6,"byteOffset":711704,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_0"},{"bufferView":6,"byteOffset":711708,"componentType":5122,"count":3715,"type":"VEC2","name":"Plane.008_vertices#0_TEXCOORD_1"},{"bufferView":5,"byteOffset":136644,"componentType":5123,"count":11496,"type":"SCALAR","name":"Plane.008_indices#0"},{"bufferView":7,"componentType":5126,"count":81,"min":[0.041666666666666664],"max":[3.375],"type":"SCALAR"},{"bufferView":8,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":9,"componentType":5126,"count":81,"type":"VEC4"},{"bufferView":10,"componentType":5126,"count":161,"min":[0.041666666666666664],"max":[6.708333333333333],"type":"SCALAR"},{"bufferView":11,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":12,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":13,"componentType":5126,"count":161,"type":"VEC3"},{"bufferView":14,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":15,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":16,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":17,"componentType":5126,"count":161,"type":"VEC4"},{"bufferView":18,"componentType":5126,"count":81,"type":"VEC3"},{"bufferView":19,"componentType":5126,"count":81,"type":"VEC4"}],"animations":[{"name":"All Animations","channels":[{"sampler":0,"target":{"node":2,"path":"translation"}},{"sampler":1,"target":{"node":2,"path":"rotation"}},{"sampler":2,"target":{"node":2,"path":"scale"}},{"sampler":3,"target":{"node":6,"path":"translation"}},{"sampler":4,"target":{"node":6,"path":"rotation"}},{"sampler":5,"target":{"node":6,"path":"scale"}}],"samplers":[{"input":0,"output":1,"interpolation":"LINEAR"},{"input":2,"output":3,"interpolation":"LINEAR"},{"input":4,"output":5,"interpolation":"LINEAR"},{"input":6,"output":7,"interpolation":"LINEAR"},{"input":8,"output":9,"interpolation":"LINEAR"},{"input":10,"output":11,"interpolation":"LINEAR"}]},{"name":"Rudder_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":10,"path":"translation"}},{"sampler":1,"target":{"node":10,"path":"rotation"}}],"samplers":[{"input":128,"output":129,"interpolation":"LINEAR"},{"input":128,"output":130,"interpolation":"LINEAR"}]},{"name":"C_Door_02_Left_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":11,"path":"translation"}},{"sampler":1,"target":{"node":11,"path":"rotation"}}],"samplers":[{"input":131,"output":132,"interpolation":"LINEAR"},{"input":131,"output":133,"interpolation":"LINEAR"}]},{"name":"C_Door_02_right_LIVERYDECALS","channels":[{"sampler":0,"target":{"node":12,"path":"translation"}},{"sampler":1,"target":{"node":12,"path":"rotation"}}],"samplers":[{"input":131,"output":134,"interpolation":"LINEAR"},{"input":131,"output":135,"interpolation":"LINEAR"}]},{"name":"DoorB_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":13,"path":"translation"}}],"samplers":[{"input":128,"output":136,"interpolation":"LINEAR"}]},{"name":"Door01_left_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":15,"path":"rotation"}}],"samplers":[{"input":131,"output":137,"interpolation":"LINEAR"}]},{"name":"Door01_right_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":16,"path":"rotation"}}],"samplers":[{"input":131,"output":138,"interpolation":"LINEAR"}]},{"name":"Cargo_Door_LIVERYDECAL","channels":[{"sampler":0,"target":{"node":18,"path":"translation"}},{"sampler":1,"target":{"node":18,"path":"rotation"}}],"samplers":[{"input":128,"output":139,"interpolation":"LINEAR"},{"input":128,"output":140,"interpolation":"LINEAR"}]}],"asset":{"generator":"babylon.js glTF exporter for 3dsmax 2019 v1.0.7818.25960","version":"2.0","extensions":{"ASOBO_asset_optimized":{"BoundingBoxMax":[29.925128936767578,12.163358688354492,28.476634979248047],"BoundingBoxMin":[-29.925140380859375,-3.3663330078125,-39.70708465576172],"MajorVersion":4,"MinorVersion":4,"UseCheckerboardMaterialForMissingTextures":true},"ASOBO_normal_map_convention":{"tangent_space_convention":"DirectX"}}},"bufferViews":[{"buffer":0,"byteLength":5304,"name":"bufferViewAnimationFloatScalar"},{"buffer":0,"byteLength":10608,"byteOffset":5304,"name":"bufferViewAnimationFloatVec3"},{"buffer":0,"byteLength":7072,"byteOffset":15912,"name":"bufferViewAnimationFloatVec4"},{"buffer":0,"byteLength":7128,"byteStride":36,"byteOffset":22984,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":612,"byteOffset":30112,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":159636,"byteOffset":30724,"target":34963,"name":"BufferViewIndex"},{"buffer":0,"byteLength":845424,"byteStride":36,"byteOffset":190360,"target":34962,"name":"BufferViewVertexND"},{"buffer":0,"byteLength":324,"byteOffset":1035784},{"buffer":0,"byteLength":972,"byteOffset":1036108},{"buffer":0,"byteLength":1296,"byteOffset":1037080},{"buffer":0,"byteLength":644,"byteOffset":1038376},{"buffer":0,"byteLength":1932,"byteOffset":1039020},{"buffer":0,"byteLength":2576,"byteOffset":1040952},{"buffer":0,"byteLength":1932,"byteOffset":1043528},{"buffer":0,"byteLength":2576,"byteOffset":1045460},{"buffer":0,"byteLength":972,"byteOffset":1048036},{"buffer":0,"byteLength":2576,"byteOffset":1049008},{"buffer":0,"byteLength":2576,"byteOffset":1051584},{"buffer":0,"byteLength":972,"byteOffset":1054160},{"buffer":0,"byteLength":1296,"byteOffset":1055132}],"extensionsRequired":["MSFT_texture_dds"],"materials":[{"name":"Material #8","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.1}},{"name":"LOD6_Livery_FS","occlusionTexture":{"index":1},"pbrMetallicRoughness":{"baseColorTexture":{"index":0},"metallicRoughnessTexture":{"index":1}}},{"name":"LIVERYDECALS","alphaMode":"BLEND","pbrMetallicRoughness":{"metallicFactor":0,"roughnessFactor":0.05,"baseColorTexture":{"index":2}},"extensions":{"ASOBO_material_blend_gbuffer":{"emissiveBlendFactor":0,"normalBlendFactor":0,"occlusionBlendFactor":0},"ASOBO_material_draw_order":{"drawOrderOffset":1}}}],"meshes":[{"primitives":[{"attributes":{"COLOR_0":17,"NORMAL":14,"POSITION":12,"TANGENT":13,"TEXCOORD_0":15,"TEXCOORD_1":16},"indices":18,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_LEFT"},{"primitives":[{"attributes":{"COLOR_0":24,"NORMAL":21,"POSITION":19,"TANGENT":20,"TEXCOORD_0":22,"TEXCOORD_1":23},"indices":25,"material":0,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2,"VertexType":"VTX","VertexVersion":2}}}],"name":"FX_EXHAUST_RIGHT"},{"primitives":[{"attributes":{"COLOR_0":31,"NORMAL":28,"POSITION":26,"TANGENT":27,"TEXCOORD_0":29,"TEXCOORD_1":30},"indices":32,"material":1,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":98,"VertexType":"VTX","VertexVersion":2}}}],"name":"x6_Body_center"},{"primitives":[{"attributes":{"COLOR_0":33,"NORMAL":34,"POSITION":35,"TANGENT":36,"TEXCOORD_0":37,"TEXCOORD_1":38},"indices":39,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":1820,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Rudder_center.001"},{"primitives":[{"attributes":{"COLOR_0":40,"NORMAL":41,"POSITION":42,"TANGENT":43,"TEXCOORD_0":44,"TEXCOORD_1":45},"indices":46,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_Left.002"},{"primitives":[{"attributes":{"COLOR_0":47,"NORMAL":48,"POSITION":49,"TANGENT":50,"TEXCOORD_0":51,"TEXCOORD_1":52},"indices":53,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":30,"VertexType":"VTX","VertexVersion":2}}}],"name":"x1_Livery_C_Door_02_right.002"},{"primitives":[{"attributes":{"COLOR_0":54,"NORMAL":55,"POSITION":56,"TANGENT":57,"TEXCOORD_0":58,"TEXCOORD_1":59},"indices":60,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":302,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_DoorB.001"},{"primitives":[{"attributes":{"COLOR_0":61,"NORMAL":62,"POSITION":63,"TEXCOORD_0":64,"TEXCOORD_1":65},"indices":66,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":21,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Livery_KLM_FuselageA.005"},{"primitives":[{"attributes":{"COLOR_0":67,"NORMAL":68,"POSITION":69,"TANGENT":70,"TEXCOORD_0":71,"TEXCOORD_1":72},"indices":73,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_R_Door01_left.001"},{"primitives":[{"attributes":{"COLOR_0":74,"NORMAL":75,"POSITION":76,"TANGENT":77,"TEXCOORD_0":78,"TEXCOORD_1":79},"indices":80,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":29,"VertexType":"VTX","VertexVersion":2}}}],"name":"x0_Door01_right.001"},{"primitives":[{"attributes":{"COLOR_0":81,"NORMAL":82,"POSITION":83,"TANGENT":84,"TEXCOORD_0":85,"TEXCOORD_1":86},"indices":87,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":4114,"VertexType":"VTX","VertexVersion":2}}}],"name":"livery_vstab"},{"primitives":[{"attributes":{"COLOR_0":88,"NORMAL":89,"POSITION":90,"TANGENT":91,"TEXCOORD_0":92,"TEXCOORD_1":93},"indices":94,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":40,"VertexType":"VTX","VertexVersion":2}}}],"name":"Cargo_Door_LIVERYDECAL"},{"primitives":[{"attributes":{"COLOR_0":95,"NORMAL":96,"POSITION":97,"TEXCOORD_0":98,"TEXCOORD_1":99},"indices":100,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":306,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.002"},{"primitives":[{"attributes":{"COLOR_0":101,"NORMAL":102,"POSITION":103,"TANGENT":104,"TEXCOORD_0":105,"TEXCOORD_1":106},"indices":107,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":2812,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.004"},{"primitives":[{"attributes":{"COLOR_0":108,"NORMAL":109,"POSITION":110,"TEXCOORD_0":111,"TEXCOORD_1":112},"indices":113,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":13128,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.001"},{"primitives":[{"attributes":{"COLOR_0":114,"NORMAL":115,"POSITION":116,"TANGENT":117,"TEXCOORD_0":118,"TEXCOORD_1":119},"indices":120,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":112,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.003"},{"primitives":[{"attributes":{"COLOR_0":121,"NORMAL":122,"POSITION":123,"TANGENT":124,"TEXCOORD_0":125,"TEXCOORD_1":126},"indices":127,"material":2,"mode":4,"extras":{"ASOBO_primitive":{"PrimitiveCount":3832,"VertexType":"VTX","VertexVersion":2}}}],"name":"Plane.008"}],"nodes":[{"extensions":{"ASOBO_unique_id":{"id":"B787:HIPS"}},"name":"HIPS","children":[1,5,9]},{"extensions":{"ASOBO_unique_id":{"id":"B787:Wing_left"}},"name":"Wing_left","children":[2]},{"translation":[3.348375,-0.123601377,-1.04428136],"rotation":[0.00473341,0.2594188,0.0519678928,0.964354157],"scale":[1.00000048,1.0000006,1.00000024],"extensions":{"ASOBO_unique_id":{"id":"B787:WING_BONE_LEFT_00"}},"name":"WING_BONE_LEFT_00","children":[3]},{"translation":[5.868531,-0.6075288,2.41399121],"rotation":[0.007325325,-0.259887159,-0.06454417,0.9634517],"scale":[0.9999994,0.999999344,0.999999642],"extensions":{"ASOBO_unique_id":{"id":"B787:Engine_PIVOT_LEFT_1"}},"name":"Engine_PIVOT_LEFT_1","children":[4]},{"translation":[0.188941,-1.5111562,1.08643889],"rotation":[-0.008386433,-3.75154627e-7,0.0153054614,0.9998477],"scale":[1.00000012,0.9999999,0.9999998],"mesh":0,"extensions":{"ASOBO_unique_id":{"id":"FX_EXHAUST_LEFT"}},"name":"FX_EXHAUST_LEFT"},{"rotation":[-1,0,0,-1.62920685e-7],"extensions":{"ASOBO_unique_id":{"id":"B787:Wing_right"}},"name":"Wing_right","children":[6]},{"translation":[-3.348375,0.123601377,1.04428136],"rotation":[0.004733401,0.259418637,0.0519678779,0.964354157],"scale":[1,1,0.9999999],"extensions":{"ASOBO_unique_id":{"id":"B787:WING_BONE_RIGHT_00"}},"name":"WING_BONE_RIGHT_00","children":[7]},{"translation":[-5.868534,0.60752964,-2.41399217],"rotation":[0.00732532656,-0.259887159,-0.064544186,0.9634517],"scale":[1,1.00000012,1.00000012],"extensions":{"ASOBO_unique_id":{"id":"B787:Engine_PIVOT_RIGHT_1"}},"name":"Engine_PIVOT_RIGHT_1","children":[8]},{"translation":[-0.188936234,1.51115572,-1.08643663],"rotation":[-0.9998477,-0.0153054548,-2.00650533e-7,-0.008386262],"scale":[1.00000012,1,0.9999999],"mesh":1,"extensions":{"ASOBO_unique_id":{"id":"FX_EXHAUST_RIGHT"}},"name":"FX_EXHAUST_RIGHT"},{"mesh":2,"extensions":{"ASOBO_unique_id":{"id":"x6_Body_center"}},"name":"Body_center"},{"translation":[-0.000002663216946530156,9.241080284118652,-36.35052490234375],"rotation":[0.28291264176368713,0.5717583298683167,0.4160439670085907,0.6480435132980347],"mesh":3,"name":"Rudder_LIVERYDECAL"},{"translation":[0.7220770120620728,-1.9521019458770752,23.631929397583008],"rotation":[0.715813398361206,0.03603672236204147,0.6965124607086182,0.034396108239889145],"mesh":4,"name":"C_Door_02_Left_LIVERYDECALS"},{"translation":[-0.726417064666748,-1.9530106782913208,23.631912231445312],"rotation":[-0.03489641100168228,0.6998390555381775,-0.03553038462996483,0.7125623822212219],"mesh":5,"name":"C_Door_02_right_LIVERYDECALS"},{"translation":[-2.3514771461486816,1.3771086931228638,-26.49029541015625],"mesh":6,"name":"DoorB_LIVERYDECAL"},{"mesh":7,"name":"Livery_KLM_FuselageA.001"},{"translation":[0.6497254371643066,-2.1026113033294678,-5.016356945037842],"rotation":[0.712636411190033,0.7015312910079956,-0.0006685919361189008,0.001663838280364871],"mesh":8,"name":"Door01_left_LIVERYDECAL"},{"translation":[-0.6497254967689514,-2.102611780166626,-5.016357421875],"rotation":[-0.0016642240807414055,-0.0006689373985864222,-0.7015330791473389,0.7126347422599792],"mesh":9,"name":"Door01_right_LIVERYDECAL"},{"mesh":10,"name":"livery_vstab"},{"translation":[-2.7386319637298584,-0.0703480988740921,17.432857513427734],"mesh":11,"name":"Cargo_Door_LIVERYDECAL"},{"mesh":12,"name":"Plane.001"},{"mesh":13,"name":"Plane.002"},{"mesh":14,"name":"Plane.005"},{"mesh":15,"name":"Plane.006"},{"scale":[1.0019999742507935,1,1],"mesh":16,"name":"Plane.010"}],"scene":0,"scenes":[{"nodes":[0,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}],"textures":[{"extensions":{"MSFT_texture_dds":{"source":0}}},{"extensions":{"MSFT_texture_dds":{"source":1}}},{"extensions":{"MSFT_texture_dds":{"source":2}}}],"extensionsUsed":["ASOBO_normal_map_convention","ASOBO_unique_id","MSFT_texture_dds","ASOBO_asset_optimized"],"buffers":[{"byteLength":1056428,"uri":"B787_lod6.bin"}],"images":[{"uri":"787_10_AIRFRAME_LOD6_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LOD6_COMP.PNG.DDS","extras":"ASOBO_image_converted_meta"},{"uri":"787_10_AIRFRAME_LIVERYDECALS_ALBD.PNG.DDS","extras":"ASOBO_image_converted_meta"}]} \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/model.CFG b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/model.CFG new file mode 100644 index 00000000..db50b056 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/model/model.CFG @@ -0,0 +1,16 @@ +; Reference LOD implementation, please keep these comments (for now). + +[model.options] +; if true, when showing the exterior, also show the interior model (default false) +withExterior_showInterior=true +; if true, when showing the interior with the exterior, exclude interior.lod.0 (default false); only has an effect when withExterior_showInterior is true +withExterior_showInterior_hideFirstLod=true +; when showing the interior, force showing lod0 (default true) +withInterior_forceFirstLod=true +; when showing the interior, also show the exterior model (default false) +withInterior_showExterior=true + +[models] +exterior=B787.xml +interior=B787_10_interior.xml + diff --git a/SimObjects/Airplanes/Asobo_B787_10/panel/PANEL.CFG b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/PANEL.CFG similarity index 59% rename from SimObjects/Airplanes/Asobo_B787_10/panel/PANEL.CFG rename to src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/PANEL.CFG index 93be270b..6d6ecac7 100644 --- a/SimObjects/Airplanes/Asobo_B787_10/panel/PANEL.CFG +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/PANEL.CFG @@ -5,33 +5,35 @@ size_mm=1280,950 pixel_size=1280,950 texture=PFD -htmlgauge00=Airliners/B787_10/PFD/B787_10_PFD.html, 0,0,1280,950 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=left_outboard_display, 0,0,1280,950 +htmlgauge01=Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.html, 0,0,1280,950 [VCockpit02] size_mm=1280,950 pixel_size=1280,950 texture=MFD_1 -htmlgauge00=Airliners/B787_10/MFD/B787_10_MFD.html?Index=1, 0,0,1280,950 +htmlgauge00=Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.html?Index=1, 0,0,1280,950 [VCockpit03] size_mm=1280,950 pixel_size=1280,950 texture=MFD_2 -htmlgauge00=Airliners/B787_10/MFD/B787_10_MFD.html?Index=2, 0,0,1280,950 +htmlgauge00=Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.html?Index=2, 0,0,1280,950 [VCockpit04] size_mm=1280,1020 pixel_size=1280,1020 texture=MFD_3 -htmlgauge00=Airliners/B787_10/FMC/B787_10_FMC.html?Index=1, 0,0,640,1020 -htmlgauge01=Airliners/B787_10/FMC/B787_10_FMC.html?Index=2, 640,0,640,1020 +htmlgauge00=Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.html?Index=1, 0,0,640,1020 +htmlgauge01=Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.html?Index=2, 640,0,640,1020 [VCockpit05] size_mm=512,512 pixel_size=512,512 texture=AttitudeDisplay -htmlgauge00=Airliners/B787_10/SAI/B787_10_SAI.html, 0,0,512,512 -htmlgauge01=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=tool_simconnect_handling, 0,0, 1, 1 +htmlgauge00=Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.html, 0,0,512,512 +htmlgauge01=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=tool_simconnect_handling, 0,0, 1, 1 +htmlgauge02=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=ccs, 0,0, 1, 1 [VCockpit06] size_mm=512,204 @@ -43,37 +45,37 @@ htmlgauge00=Airliners/B787_10/IAS/B787_10_IAS.html, 0,0, 512, 204 size_mm=512,204 pixel_size=512,204 texture=FCU_HDG -htmlgauge00=Airliners/B787_10/HDG/B787_10_HDG.html, 0,0, 512, 204 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=mcp_heading_display, 0,0,512, 204 [VCockpit08] size_mm=512,102 pixel_size=512,102 texture=FCU_VSPEED -htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=mcp_vspeed, 0,0,512, 102 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=mcp_vertical_speed_display, 0,0,512, 102 [VCockpit09] size_mm=512,204 pixel_size=512,204 texture=FCU_ALT -htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=mcp_altitude, 0,0,512, 204 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=mcp_altitude_display, 0,0,512, 204 [VCockpit10] size_mm=340,256 pixel_size=340,256 texture=COMNAV_Screen_1 -htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=pedestal_tuning_control_panel_1, 0,0, 340, 256, 1 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=pedestal_tuning_control_panel_1, 0,0, 340, 256, 1 [VCockpit11] size_mm=340,256 pixel_size=340,256 texture=COMNAV_Screen_2 -htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=pedestal_tuning_control_panel_2, 0,0, 340, 256, 2 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=pedestal_tuning_control_panel_2, 0,0, 340, 256, 2 [VCockpit12] size_mm=340,256 pixel_size=340,256 texture=COMNAV_Screen_3 -htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH-wasm.wasm&wasm_gauge=pedestal_tuning_control_panel_3, 0,0, 340, 256, 3 +htmlgauge00=WasmInstrument/WasmInstrument.html?wasm_module=B78XH.wasm&wasm_gauge=pedestal_tuning_control_panel_3, 0,0, 340, 256, 3 [VCockpit13] size_mm=1380,1280 diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/panel.xml b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/panel.xml new file mode 100644 index 00000000..fe4484ba --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/panel/panel.xml @@ -0,0 +1,1107 @@ + + + + + + + + B787_10_PFD + + + + + + + B787_10_MFD_1 + + + + + + + B787_10_MFD_2 + + + + + + + B787_10_FMC_1 + + + + True + + + + B787_10_FMC_2 + + + + + + + + + B787_10_IAS + + + + True + + + + B787_10_HDG + + + + + + + B787_10_VSpeed + + + + + + + B787_10_ALT + + + + + + + + + B787_10_HUD + + + + + + + + + B787_10_SAI + + + + + + + + + + Warning + AUTOPILOT DISC + + + + + + + 1 + + + + + + + + 0 + + + + + + + + 1 + + + + + + + + + Caution + AUTOTHROT DISC + + + + + + + 1 + + + + + + + + 0 + + + + + + + + 1 + + + + + + + + + Caution + + + + + + + + Warning + FUEL OFF + + + + 0 + + + + + + Warning + DOOR + + + + 0 + + + + + + Warning + PARK BRAKE + + + + + + + Warning + FIRE + + + + + + + Caution + FUEL LOW + + + + + 9 + + + + 9 + + + + + + + 9 + + + + + + 9 + + + + + + Caution + FUEL IMBALANCE + + + + + + + + + + + + + + Warning + aural_landing_gear + L/G GEAR NOT DOWN + L/G GEAR NOT DOWN + + + + + + + 1500 + + + + + + + + + 750 + + + + + 100 + + + + 100 + + + + 100 + + + + + + 3 + + + + 0 + + + + + + + + + + + 750 + + + + + 100 + + + + 100 + + + + 100 + + + + + + + + + + + SoundOnly + aural_5ft + + + + + + + 55 + + + + + + + + + 5 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_10ft + + + + + + + 60 + + + + + + + + + 10 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_20ft + + + + + + + 70 + + + + + + + + + 20 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_30ft + + + + + + + 80 + + + + + + + + + 30 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_40ft + + + + + + + 90 + + + + + + + + + 40 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_50ft + + + + + + + 100 + + + + + + + + + 50 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_60ft + + + + + + + 110 + + + + + + + + + 60 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_70ft + + + + + + + 120 + + + + + + + + + 70 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_100ft + + + + + + + 150 + + + + + + + + + 100 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_200ft + + + + + + + 250 + + + + + + + + + 200 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_300ft + + + + + + + 350 + + + + + + + + + 300 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_400ft + + + + + + + 450 + + + + + + + + + 400 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_500ft + + + + + + + 550 + + + + + + + + + 500 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_1000ft + + + + + + + 1050 + + + + + + + + + 1000 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_2500ft + + + + + + + 2550 + + + + + + + + + 2500 + + + + 100 + + + + 100 + + + + 100 + + + + + + + 1 + + + + + + + + SoundOnly + aural_stall + + + + + + + SoundOnly + aural_overspeed + + + + + + + SoundOnly + aural_v1 + True + + + + + + + + 30 + + + + + + + + + + + + + + + + + + // RADIO MINIMUMS + + SoundOnly + aural_minimums + + + + + + + 2550 + + + + + + + + + + + + + + + + + + + 1 + + + + + + + // BARO MINIMUMS + + SoundOnly + aural_minimums + + + + + + + 2550 + + + + + + + + + + + + + + + + + 1 + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/runway.FLT b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/runway.FLT new file mode 100644 index 00000000..bb0f5fc3 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/runway.FLT @@ -0,0 +1,205 @@ +[SimVars.0] +PVelBodyAxis=0 +BVelBodyAxis=0 +HVelBodyAxis=0 +XVelBodyAxis=0 +YVelBodyAxis=0 +ZVelBodyAxis=0 +SimOnGround=True + +[Avionics.0] +Comm1Active=127.850 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=0 +PropellerLeverPct=1 +MixtureLeverPct=1 +Pct Engine RPM=0.54978632285897632848 +MaxReachedEngineRPM=28077.1441001799285 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +CarbHeat/DeiceSwitch=True +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=0 +PropellerLeverPct=1 +MixtureLeverPct=1 +Pct Engine RPM=0.54978632285897632848 +MaxReachedEngineRPM=28077.1441001799285 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +CarbHeat/DeiceSwitch=True +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=True +PropDeiceSwitch=False +Autobrakes=0 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 +AuxPowerUnitSwitch=False + +[LocalVars.0] +XMLVAR_SpawnOnRunway=1 +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=29.921342849731445313 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=True +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=False +WingLights=True +CabinLights=False +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=True +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=044.44 +LeftFlap=050.0 +RightFlap=050.0 +GearsHandle=000.01 +Gear1=100.00 +Gear2=100.00 +Gear3=100.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=100.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10.PC.PCK b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10.PC.PCK new file mode 100644 index 00000000..bd903312 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10.PC.PCK differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10_H.PC.PCK b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10_H.PC.PCK new file mode 100644 index 00000000..ab42a121 Binary files /dev/null and b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/Asobo_B787_10_H.PC.PCK differ diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/sound.xml b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/sound.xml new file mode 100644 index 00000000..049839a9 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/sound/sound.xml @@ -0,0 +1,657 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/systems.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/systems.cfg new file mode 100644 index 00000000..6206b53b --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/systems.cfg @@ -0,0 +1,230 @@ +[VERSION] +major = 1 +minor = 0 + +[LIGHTS] +lightdef.0 = Type:1#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_BeaconTop#Node:LIGHT_ASOBO_Beacon_Top#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Beacon_Top +lightdef.1 = Type:1#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_BeaconBellyOmni#Node:LIGHT_ASOBO_Beacon_Belly#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Beacon_Belly +lightdef.2 = Type:3#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,180#EffectFile:LIGHT_ASOBO_NavigationRed#Node:LIGHT_ASOBO_NavigationRed#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_NavigationRed +lightdef.3 = Type:3#Index:0#LocalPosition:0.001,0,0#LocalRotation:0,0,180#EffectFile:LIGHT_ASOBO_NavigationGreen#Node:LIGHT_ASOBO_NavigationGreen#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_NavigationGreen +lightdef.4 = Type:2#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,180#EffectFile:LIGHT_ASOBO_StrobeSimple#Node:LIGHT_ASOBO_StrobeWing_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_StrobeWing_Left +lightdef.5 = Type:2#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,180#EffectFile:LIGHT_ASOBO_StrobeSimple#Node:LIGHT_ASOBO_StrobeWing_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_StrobeWing_Right +lightdef.6 = Type:3#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_NavigationWhite#Node:LIGHT_ASOBO_NavigationWing_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_NavigationWing_Left +lightdef.7 = Type:3#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_NavigationWhite#Node:LIGHT_ASOBO_NavigationWing_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_NavigationWing_Right +lightdef.8 = Type:2#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_StrobeSimple#Node:LIGHT_ASOBO_StrobeTail_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_StrobeTail_Left +lightdef.9 = Type:2#Index:0#LocalPosition:0,0,0#LocalRotation:0,0,0#EffectFile:LIGHT_ASOBO_StrobeSimple#Node:LIGHT_ASOBO_StrobeTail_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_StrobeTail_Right +lightdef.10 = Type:6#Index:1#LocalPosition:0,0,0#LocalRotation:0,0,-150#EffectFile:LIGHT_ASOBO_TaxiLarge#Node:LIGHT_ASOBO_Taxi_Left#PotentiometerIndex:0#EmMesh:LIGHT_ASOBO_Taxi_Left +lightdef.11 = Type:6#Index:1#LocalPosition:0,0,0#LocalRotation:0,0,150#EffectFile:LIGHT_ASOBO_TaxiLarge#Node:LIGHT_ASOBO_Taxi_Right#PotentiometerIndex:0#EmMesh:LIGHT_ASOBO_Taxi_Right +lightdef.12 = Type:6#Index:2#LocalPosition:0,0,0#LocalRotation:20,0,-150#EffectFile:LIGHT_ASOBO_TaxiLarge#Node:LIGHT_ASOBO_RunwayTurnOff_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_RunwayTurnOff_Left +lightdef.13 = Type:6#Index:3#LocalPosition:0,0,0#LocalRotation:20,0,150#EffectFile:LIGHT_ASOBO_TaxiLarge#Node:LIGHT_ASOBO_RunwayTurnOff_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_RunwayTurnOff_Right +lightdef.14 = Type:9#Index:0#LocalPosition:-110.94,-10.64,6.21#LocalRotation:-70,0,100#EffectFile:LIGHT_ASOBO_LogoLight#Node:LIGHT_ASOBO_Logo_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Logo_Left +lightdef.15 = Type:9#Index:0#LocalPosition:0,0,0#LocalRotation:-70,0,-100#EffectFile:LIGHT_ASOBO_LogoLight#Node:LIGHT_ASOBO_Logo_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Logo_Right +lightdef.16 = Type:5#Index:2#LocalPosition:0,0,0#LocalRotation:0,0,-165#EffectFile:LIGHT_ASOBO_LandingLarge#Node:LIGHT_ASOBO_LandingWing_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_LandingWing_Left +lightdef.17 = Type:5#Index:3#LocalPosition:0,0,0#LocalRotation:0,0,165#EffectFile:LIGHT_ASOBO_LandingLarge#Node:LIGHT_ASOBO_LandingWing_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_LandingWing_Right +lightdef.18 = Type:5#Index:1#LocalPosition:0,0,0#LocalRotation:0,0,-170#EffectFile:LIGHT_ASOBO_LandingLarge#Node:LIGHT_ASOBO_LandingNose_Left#PotentiometerIndex:0#EmMesh:LIGHT_ASOBO_LandingNose_Left +lightdef.19 = Type:5#Index:1#LocalPosition:0,0,0#LocalRotation:0,0,170#EffectFile:LIGHT_ASOBO_LandingLarge#Node:LIGHT_ASOBO_LandingNose_Right#PotentiometerIndex:0#EmMesh:LIGHT_ASOBO_LandingNose_Right +lightdef.20 = Type:8#Index:0#LocalPosition:0,0,0#LocalRotation:-15,0,-45#EffectFile:LIGHT_ASOBO_WingLarge#Node:LIGHT_ASOBO_Wing_Left#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Wing_Left +lightdef.21 = Type:8#Index:0#LocalPosition:0,0,0#LocalRotation:-15,0,45#EffectFile:LIGHT_ASOBO_WingLarge#Node:LIGHT_ASOBO_Wing_Right#PotentiometerIndex:1#EmMesh:LIGHT_ASOBO_Wing_Right +lightdef.22 = Type:10#Index:2#LocalPosition:85.8,-1.2,4.75#LocalRotation:-10,0,0#EffectFile:LIGHT_ASOBO_GlareshieldShort#Node:#PotentiometerIndex:20 +lightdef.23 = Type:10#Index:2#LocalPosition:85.8,-0.6,4.75#LocalRotation:-10,0,0#EffectFile:LIGHT_ASOBO_GlareshieldShort#Node:#PotentiometerIndex:20 +lightdef.24 = Type:10#Index:2#LocalPosition:85.8,0,4.75#LocalRotation:-10,0,0#EffectFile:LIGHT_ASOBO_GlareshieldShort#Node:#PotentiometerIndex:20 +lightdef.25 = Type:10#Index:2#LocalPosition:85.8,0.6,4.75#LocalRotation:-10,0,0#EffectFile:LIGHT_ASOBO_GlareshieldShort#Node:#PotentiometerIndex:20 +lightdef.26 = Type:10#Index:2#LocalPosition:85.8,1.2,4.75#LocalRotation:-10,0,0#EffectFile:LIGHT_ASOBO_GlareshieldShort#Node:#PotentiometerIndex:20 +lightdef.27 = Type:10#Index:1#LocalPosition:82.9,-2.7,6.6#LocalRotation:60,0,0#EffectFile:LIGHT_ASOBO_CockpitSpotLarge#Node:#PotentiometerIndex:16 +lightdef.28 = Type:10#Index:1#LocalPosition:82.9,-2.6,6#LocalRotation:120,0,-110#EffectFile:LIGHT_ASOBO_Glareshield#Node:#PotentiometerIndex:16 +lightdef.29 = Type:10#Index:1#LocalPosition:82.9,2.7,6.6#LocalRotation:60,0,0#EffectFile:LIGHT_ASOBO_CockpitSpotLarge#Node:#PotentiometerIndex:18 +lightdef.30 = Type:10#Index:1#LocalPosition:82.9,2.6,6#LocalRotation:120,0,110#EffectFile:LIGHT_ASOBO_Glareshield#Node:#PotentiometerIndex:18 +lightdef.31 = Type:10#Index:3#LocalPosition:84,0,5.8#LocalRotation:75,0,0#EffectFile:LIGHT_ASOBO_CockpitSpot#Node:#PotentiometerIndex:22 +lightdef.32 = Type:10#Index:4#LocalPosition:80.7,0,8.6#LocalRotation:90,0,0#EffectFile:LIGHT_ASOBO_CockpitSpotLarge#Node:#PotentiometerIndex:25 +lightdef.33 = Type:10#Index:4#LocalPosition:82.5,0,3.5#LocalRotation:-63,0,0#EffectFile:LIGHT_ASOBO_CockpitSpot#Node:#PotentiometerIndex:25 +lightdef.34 = Type:13#Index:0#LocalPosition:86.5,-1.8,3.8#LocalRotation:-10,0,180#EffectFile:LIGHT_ASOBO_ScreenBlue#Node:#PotentiometerIndex:32 +lightdef.35 = Type:13#Index:0#LocalPosition:86.5,-0.8,3.8#LocalRotation:-10,0,180#EffectFile:LIGHT_ASOBO_ScreenBlue#Node:#PotentiometerIndex:33 +lightdef.36 = Type:13#Index:0#LocalPosition:86.5,0.8,3.8#LocalRotation:-10,0,180#EffectFile:LIGHT_ASOBO_ScreenBlue#Node:#PotentiometerIndex:34 +lightdef.37 = Type:13#Index:0#LocalPosition:86.5,1.8,3.8#LocalRotation:-10,0,180#EffectFile:LIGHT_ASOBO_ScreenBlue#Node:#PotentiometerIndex:35 +lightdef.38 = Type:13#Index:0#LocalPosition:86,0,3.1#LocalRotation:-55,0,180#EffectFile:LIGHT_ASOBO_ScreenBlue#Node:#PotentiometerIndex:36 +lightdef.39 = Type:4#Index:0#LocalPosition:85.51,0,5.59#LocalRotation:-30,0,0#EffectFile:LIGHT_ASOBO_GaugeSmall#PotentiometerIndex:1 +lightdef.40 = Type:13#Index:0#LocalPosition:83,0,5#LocalRotation:-55,0,180#EffectFile:LIGHT_ASOBO_CockpitMinimalAmbiant#Node:#PotentiometerIndex:40 + +[BRAKES] +parking_brake = 1 ; BrakeTypes enum +auto_brakes = 5 ; This value is the number of "positive" settings, not including OFF. '0' means NO AutoBrake +toe_brakes_scale = 0.5 ; Brake scalar +differential_braking_scale = 0 ; Delta on the amount of brake when the rudder pedals deflected +hydraulic_system_scalar = 1 ; On brakes dependant on the hydraulic system, ratio hyd system to max brake hyd pressure +rto_disabled_on_takeoff = 1 +autobrakes_disabled_on_takeoff = 1 +autobrakes_disabled_on_braking = 1 + +[ELECTRICAL] +bus.1 = Name:AC_BUS +bus.2 = Connections:bus.1#Name:BAT_BUS +battery.1 = Connections:bus.2#Capacity:28#Voltage:curve.1#Name:Main_Battery ; Main_Battery +alternator.1 = Connections:bus.1#iEng:0#RatedVoltage:28#Load:curve.2 +alternator.2 = Connections:bus.1#iEng:0#RatedVoltage:28#Load:curve.2 +alternator.3 = Connections:bus.1#iEng:1#RatedVoltage:28#Load:curve.2 +alternator.4 = Connections:bus.1#iEng:1#RatedVoltage:28#Load:curve.2 +alternator.5 = Connections:bus.1#IsOnAPU:True#RatedVoltage:28#Load:curve.2 +alternator.6 = Connections:bus.1#IsOnAPU:True#RatedVoltage:28#Load:curve.2 +externalpower.1 = Connections:bus.1#RatedVoltage:30.25#Load:400 +externalpower.2 = Connections:bus.1#RatedVoltage:30.25#Load:400 +externalpower.3 = Connections:bus.1#RatedVoltage:30.25#Load:400 +curve.1 = 0:21, 0.1:22.5, 0.5:24, 0.9:25, 1:25.4 ; Battery voltage for capacity % +curve.2 = 0.05:0, 0.25:60, .35:80, 0.9:90 ; Load from RPM table 30A at idle speed & 60 at 90%rpm +circuit.1 = Type:CIRCUIT_GENERAL_PANEL#Connections:bus.1#Power:0.5,1,20.0#Name:General_Panel ; General panel +circuit.2 = Type:CIRCUIT_STANDBY_VACUUM#Connections:bus.1#Power:5,10,20.0#Name:STBY_Vacuum ; stby vacuum +circuit.3 = Type:CIRCUIT_GEAR_MOTOR#Connections:bus.1#Power:200, 240, 20.0#Name:Gear_Motor ; Gear motor +circuit.4 = Type:CIRCUIT_GEAR_WARNING#Connections:bus.1#Power:2.5, 5, 17.0#Name:Gear_Warning ; Gear warning +circuit.5 = Type:CIRCUIT_PITOT_HEAT#Connections:bus.1#Power:30, 40, 20.0#Name:Pitot_Heat ; pitot_heat 40W +circuit.6 = Type:CIRCUIT_STARTER:1#Connections:bus.1#Power:2000, 3500, 20.0#Name:Starter_1 ; Starter 3500W +circuit.7 = Type:CIRCUIT_STARTER:2#Connections:bus.1#Power:2000, 3500, 20.0#Name:Starter_2 ; Starter 3500W +circuit.8 = Type:CIRCUIT_APU_STARTER:1#Connections:bus.1#Power:2000, 3500, 20.0#Name:Starter_APU ; Starter 3500W +circuit.9 = Type:CIRCUIT_XPNDR#Connections:bus.1#Power:20, 25, 20.0#Name:XPNDR ; Transponder 25W +circuit.10 = Type:CIRCUIT_MARKER_BEACON#Connections:bus.1#Power:5,10,20.0#Name:Marker_Position ; marker beacon +circuit.11 = Type:CIRCUIT_ADC_AHRS#Connections:bus.1, bus.6#Power:25, 30, 20.0#Name:ADC_AHRS ; ADC/AHRS 30W +circuit.12 = Type:CIRCUIT_FIS#Connections:bus.1#Power:10, 15, 20.0#Name:FIS ; FIS 15W +circuit.13 = Type:CIRCUIT_ADF_DME#Connections:bus.1#Power:28, 35, 20.0#Name:ADF_DME ; ADF/DME 35W +circuit.14 = Type:CIRCUIT_AUDIO#Connections:bus.1#Power:10, 15, 20.0#Name:Audio ; Audio 15W +circuit.15 = Type:CIRCUIT_AUTOPILOT#Connections:bus.1#Power:10, 15, 20.0#Name:Autopilot ; Autopilot 15W +circuit.16 = Type:CIRCUIT_DIRECTIONAL_GYRO_SLAVING#Connections:bus.1#Power:10, 15, 20.0#Name:Directional_Gyro ; directional gyro 15W +circuit.17 = Type:CIRCUIT_NAV:1#Connections:bus.1#Power:4, 5, 20.0#Name:NAV1 ; NAV 1 5W +circuit.18 = Type:CIRCUIT_COM:1#Connections:bus.1#Power:4, 5, 20.0#Name:COM1 ; COM 1 5W +circuit.19 = Type:CIRCUIT_NAV:2#Connections:bus.1#Power:4, 5, 20.0#Name:NAV2 ; NAV 2 5W +circuit.20 = Type:CIRCUIT_COM:2#Connections:bus.1#Power:4, 5, 20.0#Name:COM2 ; COM 2 5W +circuit.21 = Type:CIRCUIT_NAV:3#Connections:bus.1#Power:4, 5, 20.0#Name:NAV3 ; NAV 3 5W +circuit.22 = Type:CIRCUIT_COM:3#Connections:bus.1#Power:4, 5, 20.0#Name:COM3 ; COM 3 5W +circuit.23 = Type:CIRCUIT_PFD:1#Connections:bus.1#Power:30, 40, 20.0#Name:PFD1 ; PFD1 40W +circuit.24 = Type:CIRCUIT_PFD:2#Connections:bus.1#Power:30, 40, 20.0#Name:PFD2 ; PFD2 40W +circuit.25 = Type:CIRCUIT_MFD:1#Connections:bus.1#Power:25, 30, 20.0#Name:MFD1 ; MFD1 30W +circuit.26 = Type:CIRCUIT_MFD:2#Connections:bus.1#Power:25, 30, 20.0#Name:MFD2 ; MFD2 30W +circuit.27 = Type:CIRCUIT_XML:1#Connections:bus.1#Power:25, 30, 20.0#Name:ND1 +circuit.28 = Type:CIRCUIT_XML:2#Connections:bus.1#Power:25, 30, 20.0#Name:ND2 +circuit.29 = Type:CIRCUIT_XML:3#Connections:bus.1#Power:25, 30, 20.0#Name:EngineDisplay1 +circuit.30 = Type:CIRCUIT_XML:4#Connections:bus.1#Power:25, 30, 20.0#Name:EngineDisplay2 +circuit.31 = Type:CIRCUIT_XML:5#Connections:bus.1#Power:25, 30, 20.0#Name:CDU1 +circuit.32 = Type:CIRCUIT_XML:6#Connections:bus.1#Power:25, 30, 20.0#Name:CDU2 +circuit.33 = Type:CIRCUIT_XML:7#Connections:bus.1#Power:25, 30, 20.0#Name:CDU3 +circuit.34 = Type:CIRCUIT_FUEL_PUMP:1#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_CenterL ; Fuel Pump 5W +circuit.35 = Type:CIRCUIT_FUEL_PUMP:2#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_CenterR ; Fuel Pump 5W +circuit.36 = Type:CIRCUIT_FUEL_PUMP:3#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_LeftFwd ; Fuel Pump 5W +circuit.37 = Type:CIRCUIT_FUEL_PUMP:4#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_LeftAft ; Fuel Pump 5W +circuit.38 = Type:CIRCUIT_FUEL_PUMP:5#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_RightFwd ; Fuel Pump 5W +circuit.39 = Type:CIRCUIT_FUEL_PUMP:6#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_RightAft ; Fuel Pump 5W +circuit.40 = Type:CIRCUIT_FUEL_VALVE:1#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_LeftEngine ; Fuel Valves 5W +circuit.41 = Type:CIRCUIT_FUEL_VALVE:2#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_RightEngine ; Fuel Valves 5W +circuit.42 = Type:CIRCUIT_FUEL_VALVE:3#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_CrossFeed ; Fuel Valves 5W +circuit.43 = Type:CIRCUIT_FUEL_VALVE:4#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_LeftJetisson ; Fuel Valves 5W +circuit.44 = Type:CIRCUIT_FUEL_VALVE:5#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_RightJetisson ; Fuel Valves 5W +circuit.45 = Type:CIRCUIT_FUEL_VALVE:6#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_LeftBalance ; Fuel Valves 5W +circuit.46 = Type:CIRCUIT_FUEL_VALVE:7#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_RightBalance ; Fuel Valves 5W +circuit.47 = Type:CIRCUIT_FUEL_VALVE:8#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_LeftJetissonArming ; Fuel Valves 5W +circuit.48 = Type:CIRCUIT_FUEL_VALVE:9#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_RightJetissonArming ; Fuel Valves 5W +circuit.49 = Type:CIRCUIT_LIGHT_NAV#Connections:bus.1#Power:30, 45, 20.0#Name:Nav_Light_1 ; nav lights 45W +circuit.50 = Type:CIRCUIT_LIGHT_BEACON#Connections:bus.1#Power:12, 16, 20.0#Name:Beacon_Light_Belly ; Beacon lights 28V @ 0.26A +circuit.51 = Type:CIRCUIT_LIGHT_LANDING:1#Connections:bus.1#Power:80, 95, 20.0#Name:Landing_Light_Nose ; Landing light 95W +circuit.52 = Type:CIRCUIT_LIGHT_LANDING:2#Connections:bus.1#Power:80, 95, 20.0#Name:Landing_Light_Left ; Landing light 95W +circuit.53 = Type:CIRCUIT_LIGHT_LANDING:3#Connections:bus.1#Power:80, 95, 20.0#Name:Landing_Light_Right ; Landing light 95W +circuit.54 = Type:CIRCUIT_LIGHT_TAXI:1#Connections:bus.1#Power:45, 60, 20.0#Name:Taxi_Light ; taxi light Turnoff left 60W +circuit.55 = Type:CIRCUIT_LIGHT_TAXI:2#Connections:bus.1#Power:45, 60, 20.0#Name:Taxi_Light_TurnOff_Left ; taxi light Turnoff right 60W +circuit.56 = Type:CIRCUIT_LIGHT_TAXI:3#Connections:bus.1#Power:45, 60, 20.0#Name:Taxi_Light_TurnOff_Right ; taxi light 60W +circuit.57 = Type:CIRCUIT_LIGHT_STROBE#Connections:bus.1#Power:40, 50, 20.0#Name:Strobe_Lights ; strobe light 25W +circuit.58 = Type:CIRCUIT_LIGHT_WING#Connections:bus.1#Power:20, 30, 20.0#Name:Wing_Light ; wing lights 15W +circuit.59 = Type:CIRCUIT_LIGHT_LOGO#Connections:bus.1#Power:20, 30, 20.0#Name:Logo_Lights ; logo lights 15W +circuit.60 = Type:CIRCUIT_LIGHT_CABIN:1#Connections:bus.1#Power:30, 40, 20.0#Name:Cabin_Light_pilot ; Cabin light 40W +circuit.61 = Type:CIRCUIT_LIGHT_CABIN:2#Connections:bus.1#Power:30, 40, 20.0#Name:Cabin_Light_copilot ; Cabin light 40W +circuit.62 = Type:CIRCUIT_LIGHT_CABIN:3#Connections:bus.1#Power:30, 40, 20.0#Name:Cabin_Light_copilot ; Cabin light 40W +circuit.63 = Type:CIRCUIT_LIGHT_CABIN:4#Connections:bus.1#Power:30, 40, 20.0#Name:Cabin_Light_copilot ; Cabin light 40W +circuit.64 = Type:CIRCUIT_LIGHT_GLARESHIELD:1#Connections:bus.1#Power:3, 5, 20.0#Name:Glareshield_1_Light ; Glareshield 1 light 5W +circuit.65 = Type:CIRCUIT_LIGHT_GLARESHIELD:2#Connections:bus.1#Power:3, 5, 20.0#Name:Glareshield_2_Light ; Glareshield 2 light 5W +circuit.66 = Type:CIRCUIT_LIGHT_PANEL:1#Connections:bus.1#Power:2, 5, 20.0#Name:Panel_Light_1 ; panel light 5W +circuit.67 = Type:CIRCUIT_LIGHT_PANEL:2#Connections:bus.1#Power:2, 5, 20.0#Name:Panel_Light_2 ; panel light 5W +circuit.68 = Type:CIRCUIT_LIGHT_PANEL:3#Connections:bus.1#Power:2, 5, 20.0#Name:Panel_Light_3 ; panel light 5W +circuit.69 = Type:CIRCUIT_LIGHT_PANEL:4#Connections:bus.1#Power:2, 5, 20.0#Name:Panel_Light_4 ; panel light 5W +circuit.70 = Type:CIRCUIT_LIGHT_PANEL:5#Connections:bus.1#Power:2, 5, 20.0#Name:Panel_Light_5 ; panel light 5W +circuit.71 = Type:CIRCUIT_LIGHT_RECOGNITION#Connections:bus.1#Power:2, 5, 20.0#Name:Reco_Light_1 ; recognition light 5W +circuit.72 = Type:CIRCUIT_FUEL_PUMP:7#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Pump_APUDCPump ; Fuel Pump 5W +circuit.73 = Type:CIRCUIT_XML:8#Connections:bus.1#Power:3, 5, 20.0#Name:Wipers_Left +circuit.74 = Type:CIRCUIT_AVIONICS#Connections:bus.2#Power:0.5,1,20.0#Name:Avionics ; Avionics +circuit.75 = Type:CIRCUIT_XML:9#Connections:bus.1#Power:3, 5, 20.0#Name:Wipers_Right +circuit.76 = Type:CIRCUIT_FLAP_MOTOR:1 #Connections:bus.2# Power:200, 240, 20.0# Name:Flaps_Motor_Leading ; Flaps motor +circuit.77 = Type:CIRCUIT_FLAP_MOTOR:2 #Connections:bus.2# Power:200, 240, 20.0# Name:Flaps_Motor_Trailing ; Flaps motor +circuit.78 = Type:CIRCUIT_FUEL_VALVE:10#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_ScavengeLeft ; Fuel Valves 5W +circuit.79 = Type:CIRCUIT_FUEL_VALVE:11#Connections:bus.1#Power:3, 5, 20.0#Name:Fuel_Valve_ScavengeRight ; Fuel Valves 5W +circuit.80 = Type:CIRCUIT_IFE_PASS_SEATS:1#Connections:bus.1#Power:80, 95, 20.0#Name:IFE_PassSeats ; IFE 95W +circuit.81 = Type:CIRCUIT_CABIN_UTILITY:2#Connections:bus.1#Power:80, 95, 20.0#Name:CABIN_UTILITY ; Cabin 95W +apu_pct_rpm_per_second = 0.03 + +[HYDRAULIC_SYSTEM] +normal_pressure = 5000.0 ; PSI +electric_pumps = 0 ; no electric pumps +engine_map = 1,1,1,1 ; pumps on Eng1,2,3,4 + +[PNEUMATIC_SYSTEM] +max_pressure = 18.000000 +bleed_air_scalar = 1.000000 + +[PITOT_STATIC] +vertical_speed_time_constant = 1 ; Increasing this value will cause a more instantaneous reaction in the VSI +pitot_heat = 1.0 ; Scalar on heat effectiveness, 0 = not available + +[VACUUM_SYSTEM] +max_pressure = 5.150000 +vacuum_type = 2 + +[STALL_WARNING] +type = 2 +stick_shaker = 1 + +[DEICE_SYSTEM] +structural_deice_type = 1 ; 0 = None, 1 = Heated Leading Edge, 2 = Bleed Air Boots, 3 = Eng Pump Boots + +[RADIOS] +Audio.1 = 1 +Com.1 = 1, 1 +Com.2 = 1, 1 +Com.3 = 1, 1 +Nav.1 = 1, 1, 1 +Nav.2 = 1, 1, 1 +Nav.3 = 1, 1, 1 +Nav.4 = 1, 1, 1 +Adf.1 = 1 +Adf.2 = 1 +Transponder.1 = 1 +Marker.1 = 1 + +[GEAR_WARNING_SYSTEM] +gear_warning_available = 1 ; Normal +pct_throttle_limit = 0.1 ; Percent throttle that activates warning +flap_limit_idle = 5.0 ; Flap angle that activates warning at idle +flap_limit_power = 25.5 ; Flap angle that activates warning at above idle + +[AUTOPILOT] +autopilot_available = 1 +flight_director_available = 1 +default_vertical_speed = 1800.0 +autothrottle_available = 1 +autothrottle_arming_required = 1 +autothrottle_max_rpm = 99 +autothrottle_takeoff_ga = 1 +autothrottle_managed_by_plane = 0 +pitch_takeoff_ga = 8 +pitch_use_elevator_only = 1 +max_pitch = 25.0 +max_pitch_acceleration = 30.0 +max_pitch_velocity_lo_alt = 15 +max_pitch_velocity_hi_alt = 15 +max_pitch_velocity_lo_alt_breakpoint = 20000.0 +max_pitch_velocity_hi_alt_breakpoint = 28000.0 +max_bank = 30,25,20,15,10 +auto_max_bank = 1 +max_bank_acceleration = 30 +max_bank_velocity = 15 +max_throttle_rate = 0.15 +yaw_damper_gain = 1.0 +min_vertical_speed_ref = -8000 +max_vertical_speed_ref = 6000 +min_altitude_ref = 0 +max_altitude_ref = 50000 +default_pitch_mode = 1 +min_flight_time_for_ap = 5 +flc_min_pitch_low_alt = -5 +flc_min_low_alt_limit = 1000 diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/target_performance.cfg b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/target_performance.cfg new file mode 100644 index 00000000..e7f949f7 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/target_performance.cfg @@ -0,0 +1,62 @@ +[TARGET_PERFORMANCE] + +// stall +full_flap_full_weight_poweron_stall_speed = 115, 1.; +no_flap_full_weight_poweron_stall_speed = 150, 1.; +stall_aoa = 15, 0.2; + +// lift +no_flap_zero_lift_aoa = -3.6, 0.2; +no_flap_min_drag_aoa = -2.6625,0.2; +full_flap_zero_lift_aoa = -7.728, 0.2; +no_flap_max_lift_coef = 1.8122, 0.01; +full_flap_max_lift_coef = 3.0832, 0.01; + +no_flap_min_drag_coef = 0.0218,0.01; +no_flap_min_drag_lift_coef = 0.17,0.02; +no_flap_induced_drag_coef = 0.0577,0.005; + +// drags +no_flap_zero_aoa_drag_coef = 0.0331, 0.001; +full_flap_zero_aoa_drag_coef = 0.2189, 0.001; +no_flap_flap_parasit_drag_coef = 0.0302, 0.001; +full_flap_parasit_drag_coef = 0.0836, 0.001; +full_flap_induced_drag_coef = 0.0404, 0.001; + +full_flap_min_drag_coef = 0.1450,0.01; +full_flap_min_drag_aoa = -5.996,0.1; + +// glide +no_flap_full_weight_glide_speed = 253,1; +no_flap_full_weight_vert_glide_speed = 1383,10; +no_flap_full_weight_best_glide_finesse = 18.51,0.2; + +// climb rate +best_max_weight_climb_angle_speed = 253,1; +best_max_weight_angle_of_climb = 15.44,0.1; +best_max_weight_climb_rate_speed = 457,1; +best_max_weight_climb_rate = 2986,10; + +max_endurance_speed = 207.0,1; +max_range_speed = 253,1; +optimum_cruise_speed = 307,1; +cruise_speed_level_flight_75pctpower = 307.0,1; +max_speed_level_flight_max_power = 775.0,1; + +no_flap_max_vert_dive_speed_0pctpower = 1225.2,1; +full_flap_max_vert_dive_speed_0pctpower = 511.8,1; +no_flap_max_flat_fall_speed_0pctpower = 143.1,1; + +[DOUBLE_CHECKS] +wing_area = 4058.0,0.1; +wing_span = 197.0,0.1; +htail_area = 746.00,0.1; +htail_span = 64.3,0.1; +vtail_area = 517.0,0.1; +vtail_span = 28.0,0.1; +max_gross_weight = 557000,1.0; +empty_weight = 298700,1.0; +max_hp = 136800,0.1; + +[PERFORMANCE_REPORT] +//file_path="C:\Users\golivier\Desktop\JUNK_MESH\perf_report.csv" diff --git a/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/taxi.flt b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/taxi.flt new file mode 100644 index 00000000..b9c22dc3 --- /dev/null +++ b/src/base/hd-aircraft-b78x/SimObjects/Airplanes/Heavy-Division-B78XH-mod/taxi.flt @@ -0,0 +1,204 @@ +[SimVars.0] +PVelBodyAxis=0 +BVelBodyAxis=0 +HVelBodyAxis=0 +XVelBodyAxis=0 +YVelBodyAxis=0 +ZVelBodyAxis=0 +SimOnGround=True + +[Avionics.0] +Comm1Active=127.850 +Comm1Standby=124.850 +Comm2Active=124.850 +Comm2Standby=124.850 +Comm3Active=124.850 +Comm3Standby=124.850 +Nav1Active=110.50 +Nav1Standby=113.90 +OBS1=360 +Nav2Active=110.50 +Nav2Standby=113.90 +OBS2=360 + +TransponderState=4 +ADFActive=890 +ADF2Active=890 +DMESelected=1 +ComTransmit=1 +ComReceiveBoth=False +Com1Receive=True +Com2Receive=False +Com3Receive=False +AudioNav1Listen=False +AudioNav2Listen=False +AudioMarkerListen=True +AudioDmeListen=False +AudioAdfListen=False +AudioAdf2Listen=False +AvionicsSwitch=True + +[Engine Parameters.1.0] +ThrottleLeverPct=0 +PropellerLeverPct=1 +MixtureLeverPct=1 +Pct Engine RPM=0.54978632285897632848 +MaxReachedEngineRPM=28077.1441001799285 +LeftMagneto=True +RightMagneto=True +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[Engine Parameters.2.0] +ThrottleLeverPct=0 +PropellerLeverPct=1 +MixtureLeverPct=1 +Pct Engine RPM=0.54978632285897632848 +MaxReachedEngineRPM=28077.1441001799285 +LeftMagneto=False +RightMagneto=False +GeneratorSwitch=True +CowlFlapPct=0 +FuelPumpSwitch=False +CarbHeat/DeiceSwitch=False +EngineMasterSwitch=True +GlowPlugTemperaturePct=1 +Afterburner=0 +EGT_DegR=1250 +ITT_DegR=1600 + +[FuelSystem.0] +Valve.1=True +Valve.2=True +Valve.3=False +Valve.4=False +Valve.5=False +Valve.6=False +Valve.7=False +Valve.8=False +Valve.9=False +Pump.1=True +Pump.2=True +Pump.3=True +Pump.4=True +Pump.5=True +Pump.6=True + +[Systems.0] +BatterySwitch=True +StructuralDeiceSwitch=False +PropDeiceSwitch=False +Autobrakes=4 +StandbyVacuum=False +PropSync=False +AutoFeatherSwitch=False +FlightDirector=True +PanelLights=False +LaunchBarSwitch=False +LaunchBarState=0 +TailhookHandle=False +TailhookState=0 +FoldingWingsHandle=False +FoldingWingsState=0, 0 + +[LocalVars.0] +XMLVAR_SeatBelts=1 + +[Electrical.0] +circuit.73=False +circuit.75=False + +[Gauges.0] +KollsmanSetting=29.921342849731445313 + +[BleedAir.0] +BleedAirSource=0 + +[Switches.0] +PitotHeat=False +BeaconLights=True +LandingLights=False +LogoLights=True +NavLights=True +PanelLights=True +RecognitionLights=True +StrobeLights=True +TaxiLights=True +WingLights=True +CabinLights=True +GlareshieldLights=False +PedestalLights=False +WindshieldDeice=1 +Potentiometer.16 = 0.5 +Potentiometer.17 = 0.5 +Potentiometer.18 = 0.5 +Potentiometer.19 = 0.5 +Potentiometer.20 = 0 +Potentiometer.21 = 0.5 +Potentiometer.22 = 0 +Potentiometer.23 = 0.5 +Potentiometer.24 = 0.5 +Potentiometer.25 = 0 +Potentiometer.26 = 0.5 +Potentiometer.27 = 0.5 +Potentiometer.28 = 0.5 +Potentiometer.29 = 0.5 +Potentiometer.30 = 0.5 +Potentiometer.31 = 0.5 + +[AutoPilot.0] +MasterSwitch=False +WingLeveler=False +Nav1Lock=False +HeadingLock=False +HeadingValue=0 +AltitudeLock=False +AltitudeValue=10000 +AttitudeHold=False +AirspeedHold=False +AirspeedValue=200 +MachHold=False +MachValue=0 +VerticalSpeedHold=False +VerticalSpeedValue=0 +RPMHold=False +RPMValue=0 +GlideslopeHold=False +ApproachHold=False +BackCourseHold=False +YawDamper=False +ToGa=False +AutoThrottleArm=False +GPSdrivesNAV1=True +IsUsedForLesson=False +ForceDisplayUI=False + +[Controls.0] +SpoilersHandle=000.00 +FlapsHandle=000.00 +LeftFlap=000.00 +RightFlap=000.00 +GearsHandle=000.01 +Gear1=100.00 +Gear2=100.00 +Gear3=100.00 +YokeY=050.00 +YokeX=050.00 +Rudder=050.00 +LeftBrake=000.00 +RightBrake=000.00 +ParkingBrake=000.00 + +RudderTrimPct=0 +AileronTrimPct=0 +AileronTrimDisabled=False +ElevatorTrimDisabled=False +RudderTrimDisabled=False +SpoilersArmed=True \ No newline at end of file diff --git a/html_ui/B78XH/Autopilot/B78XHNavModeSelector.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Autopilot/B78XHNavModeSelector.js similarity index 100% rename from html_ui/B78XH/Autopilot/B78XHNavModeSelector.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Autopilot/B78XHNavModeSelector.js diff --git a/html_ui/B78XH/DataHolders/FMC/FMCDataHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/FMCDataHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/FMC/FMCDataHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/FMCDataHolder.js diff --git a/html_ui/B78XH/DataHolders/FMC/FMCMessagesHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/FMCMessagesHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/FMC/FMCMessagesHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/FMCMessagesHolder.js diff --git a/html_ui/B78XH/DataHolders/FMC/PreFlightDataHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/PreFlightDataHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/FMC/PreFlightDataHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/FMC/PreFlightDataHolder.js diff --git a/html_ui/B78XH/DataHolders/HeavyDataHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/HeavyDataHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/HeavyDataHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/HeavyDataHolder.js diff --git a/html_ui/B78XH/DataHolders/MFD/MFDDataHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/MFD/MFDDataHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/MFD/MFDDataHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/MFD/MFDDataHolder.js diff --git a/html_ui/B78XH/DataHolders/PFD/PFDDataHolder.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/PFD/PFDDataHolder.js similarity index 100% rename from html_ui/B78XH/DataHolders/PFD/PFDDataHolder.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/DataHolders/PFD/PFDDataHolder.js diff --git a/html_ui/B78XH/Directors/SpeedDirector.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Directors/SpeedDirector.js similarity index 100% rename from html_ui/B78XH/Directors/SpeedDirector.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Directors/SpeedDirector.js diff --git a/html_ui/B78XH/Managers/FMCMessagesManager.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Managers/FMCMessagesManager.js similarity index 100% rename from html_ui/B78XH/Managers/FMCMessagesManager.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Managers/FMCMessagesManager.js diff --git a/html_ui/B78XH/Systems/B78XH_APU.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_APU.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_APU.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_APU.js diff --git a/html_ui/B78XH/Systems/B78XH_APUInfo.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_APUInfo.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_APUInfo.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_APUInfo.js diff --git a/html_ui/B78XH/Systems/B78XH_IRS.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_IRS.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_IRS.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_IRS.js diff --git a/html_ui/B78XH/Systems/B78XH_Initializer.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_Initializer.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_Initializer.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_Initializer.js diff --git a/html_ui/B78XH/Systems/B78XH_Systems.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_Systems.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_Systems.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_Systems.js diff --git a/html_ui/B78XH/Systems/B78XH_SystemsInfo.js b/src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_SystemsInfo.js similarity index 100% rename from html_ui/B78XH/Systems/B78XH_SystemsInfo.js rename to src/base/hd-aircraft-b78x/html_ui/B78XH/Systems/B78XH_SystemsInfo.js diff --git a/src/base/hd-aircraft-b78x/html_ui/B78XH/b78xh.json b/src/base/hd-aircraft-b78x/html_ui/B78XH/b78xh.json new file mode 100644 index 00000000..6da30bc7 --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/B78XH/b78xh.json @@ -0,0 +1,5 @@ +{ + "package_version": "0.1.15-22", + "fms_man_version": "HD-P000-1-15-22", + "fms_bak_version": "HD-C000-1-15-22" +} \ No newline at end of file diff --git a/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/BaseNDCompass.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/BaseNDCompass.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Airliners/Shared/BaseNDCompass.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/BaseNDCompass.js diff --git a/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/Boeing/Heavy_Boeing_FMC.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/Boeing/Heavy_Boeing_FMC.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Airliners/Shared/Boeing/Heavy_Boeing_FMC.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/Boeing/Heavy_Boeing_FMC.js diff --git a/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDCompass.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDCompass.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDCompass.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDCompass.js diff --git a/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDInfo.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDInfo.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDInfo.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/MFD/NDInfo.js diff --git a/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/PFD/AttitudeIndicator.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/PFD/AttitudeIndicator.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Airliners/Shared/PFD/AttitudeIndicator.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Airliners/Shared/PFD/AttitudeIndicator.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/Waypoint.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/Waypoint.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/Waypoint.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/Waypoint.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/WaypointLoader.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/WaypointLoader.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/WaypointLoader.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/FlightElements/WaypointLoader.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.css b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.css similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.css rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.css diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.html b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.html similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.html rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.html diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/MapInstrument.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAirplaneElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAirplaneElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAirplaneElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAirplaneElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAltitudeInterceptElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAltitudeInterceptElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAltitudeInterceptElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgAltitudeInterceptElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityManager.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityManager.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityManager.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgCityManager.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgConstraintElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgConstraintElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgConstraintElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgConstraintElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFlightPlanElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFlightPlanElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFlightPlanElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFlightPlanElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFuelRingElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFuelRingElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFuelRingElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgFuelRingElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgLabeledRingElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgLabeledRingElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgLabeledRingElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgLabeledRingElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMap.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMap.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMap.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMap.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapConfig.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapConfig.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapConfig.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapConfig.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMapElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMaskElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMaskElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMaskElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgMaskElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestAirportElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestAirportElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestAirportElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestAirportElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestIntersectionElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestIntersectionElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestIntersectionElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestIntersectionElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestNDBElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestNDBElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestNDBElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestNDBElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestVORElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestVORElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestVORElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgNearestVORElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgObstacleElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgObstacleElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgObstacleElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgObstacleElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeCompassElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeCompassElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeCompassElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeCompassElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeRingElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeRingElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeRingElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRangeRingElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRoadNetworkElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRoadNetworkElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRoadNetworkElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgRoadNetworkElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTextManager.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTextManager.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTextManager.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTextManager.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTrackVectorElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTrackVectorElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTrackVectorElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgTrackVectorElement.js diff --git a/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgWaypointElement.js b/src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgWaypointElement.js similarity index 100% rename from html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgWaypointElement.js rename to src/base/hd-aircraft-b78x/html_ui/HPages/VCockpit/Instruments/Shared/Map/Svg/SvgWaypointElement.js diff --git a/html_ui/Heavy/Enums/B78XH_EICAS_Messages.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Enums/B78XH_EICAS_Messages.js similarity index 100% rename from html_ui/Heavy/Enums/B78XH_EICAS_Messages.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Enums/B78XH_EICAS_Messages.js diff --git a/html_ui/Heavy/Enums/B78XH_LocalVariables.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Enums/B78XH_LocalVariables.js similarity index 100% rename from html_ui/Heavy/Enums/B78XH_LocalVariables.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Enums/B78XH_LocalVariables.js diff --git a/html_ui/Heavy/Utils/HeavyDataStorage.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyDataStorage.js similarity index 100% rename from html_ui/Heavy/Utils/HeavyDataStorage.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyDataStorage.js diff --git a/html_ui/Heavy/Utils/HeavyEventDispatcher.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyEventDispatcher.js similarity index 100% rename from html_ui/Heavy/Utils/HeavyEventDispatcher.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyEventDispatcher.js diff --git a/html_ui/Heavy/Utils/HeavyUpdateDelayer.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyUpdateDelayer.js similarity index 100% rename from html_ui/Heavy/Utils/HeavyUpdateDelayer.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyUpdateDelayer.js diff --git a/html_ui/Heavy/Utils/HeavyUtils.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyUtils.js similarity index 100% rename from html_ui/Heavy/Utils/HeavyUtils.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/HeavyUtils.js diff --git a/html_ui/Heavy/Utils/UpdateDelayer.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/UpdateDelayer.js similarity index 100% rename from html_ui/Heavy/Utils/UpdateDelayer.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/Utils/UpdateDelayer.js diff --git a/html_ui/Heavy/fonts/Heavy787FMC.otf b/src/base/hd-aircraft-b78x/html_ui/Heavy/fonts/Heavy787FMC.otf similarity index 100% rename from html_ui/Heavy/fonts/Heavy787FMC.otf rename to src/base/hd-aircraft-b78x/html_ui/Heavy/fonts/Heavy787FMC.otf diff --git a/html_ui/Heavy/libs/hdlogger.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdlogger.js similarity index 67% rename from html_ui/Heavy/libs/hdlogger.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdlogger.js index 31e08e7f..813d5bbd 100644 --- a/html_ui/Heavy/libs/hdlogger.js +++ b/src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdlogger.js @@ -53,212 +53,331 @@ } } - /** - * Parses an URI - * - * @author Steven Levithan (MIT license) - * @api private - */ - - var re = /^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/; - - var parts = [ - 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor' - ]; - - var parseuri = function parseuri(str) { - var src = str, - b = str.indexOf('['), - e = str.indexOf(']'); - - if (b != -1 && e != -1) { - str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length); - } - - var m = re.exec(str || ''), - uri = {}, - i = 14; + const PACKET_TYPES = Object.create(null); // no Map = no polyfill + PACKET_TYPES["open"] = "0"; + PACKET_TYPES["close"] = "1"; + PACKET_TYPES["ping"] = "2"; + PACKET_TYPES["pong"] = "3"; + PACKET_TYPES["message"] = "4"; + PACKET_TYPES["upgrade"] = "5"; + PACKET_TYPES["noop"] = "6"; + const PACKET_TYPES_REVERSE = Object.create(null); + Object.keys(PACKET_TYPES).forEach(key => { + PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; + }); + const ERROR_PACKET = { type: "error", data: "parser error" }; - while (i--) { - uri[parts[i]] = m[i] || ''; + const withNativeBlob$1 = typeof Blob === "function" || + (typeof Blob !== "undefined" && + Object.prototype.toString.call(Blob) === "[object BlobConstructor]"); + const withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; + // ArrayBuffer.isView method is not defined in IE10 + const isView$1 = obj => { + return typeof ArrayBuffer.isView === "function" + ? ArrayBuffer.isView(obj) + : obj && obj.buffer instanceof ArrayBuffer; + }; + const encodePacket = ({ type, data }, supportsBinary, callback) => { + if (withNativeBlob$1 && data instanceof Blob) { + if (supportsBinary) { + return callback(data); + } + else { + return encodeBlobAsBase64(data, callback); + } } - - if (b != -1 && e != -1) { - uri.source = src; - uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':'); - uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':'); - uri.ipv6uri = true; + else if (withNativeArrayBuffer$2 && + (data instanceof ArrayBuffer || isView$1(data))) { + if (supportsBinary) { + return callback(data); + } + else { + return encodeBlobAsBase64(new Blob([data]), callback); + } } - - uri.pathNames = pathNames(uri, uri['path']); - uri.queryKey = queryKey(uri, uri['query']); - - return uri; + // plain string + return callback(PACKET_TYPES[type] + (data || "")); }; - - function pathNames(obj, path) { - var regx = /\/{2,9}/g, - names = path.replace(regx, "/").split("/"); - - if (path.substr(0, 1) == '/' || path.length === 0) { - names.splice(0, 1); + const encodeBlobAsBase64 = (data, callback) => { + const fileReader = new FileReader(); + fileReader.onload = function () { + const content = fileReader.result.split(",")[1]; + callback("b" + (content || "")); + }; + return fileReader.readAsDataURL(data); + }; + function toArray(data) { + if (data instanceof Uint8Array) { + return data; } - if (path.substr(path.length - 1, 1) == '/') { - names.splice(names.length - 1, 1); + else if (data instanceof ArrayBuffer) { + return new Uint8Array(data); + } + else { + return new Uint8Array(data.buffer, data.byteOffset, data.byteLength); } - - return names; } - - function queryKey(uri, query) { - var data = {}; - - query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) { - if ($1) { - data[$1] = $2; + let TEXT_ENCODER; + function encodePacketToBinary(packet, callback) { + if (withNativeBlob$1 && packet.data instanceof Blob) { + return packet.data + .arrayBuffer() + .then(toArray) + .then(callback); + } + else if (withNativeArrayBuffer$2 && + (packet.data instanceof ArrayBuffer || isView$1(packet.data))) { + return callback(toArray(packet.data)); + } + encodePacket(packet, false, encoded => { + if (!TEXT_ENCODER) { + TEXT_ENCODER = new TextEncoder(); } + callback(TEXT_ENCODER.encode(encoded)); }); + } - return data; + // imported from https://github.com/socketio/base64-arraybuffer + const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + const lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (let i = 0; i < chars.length; i++) { + lookup$1[chars.charCodeAt(i)] = i; } + const decode$1 = (base64) => { + let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; + if (base64[base64.length - 1] === '=') { + bufferLength--; + if (base64[base64.length - 2] === '=') { + bufferLength--; + } + } + const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer); + for (i = 0; i < len; i += 4) { + encoded1 = lookup$1[base64.charCodeAt(i)]; + encoded2 = lookup$1[base64.charCodeAt(i + 1)]; + encoded3 = lookup$1[base64.charCodeAt(i + 2)]; + encoded4 = lookup$1[base64.charCodeAt(i + 3)]; + bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); + bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); + bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); + } + return arraybuffer; + }; - /** - * URL parser. - * - * @param uri - url - * @param path - the request path of the connection - * @param loc - An object meant to mimic window.location. - * Defaults to window.location. - * @public - */ - function url(uri, path = "", loc) { - let obj = uri; - // default to window.location - loc = loc || (typeof location !== "undefined" && location); - if (null == uri) - uri = loc.protocol + "//" + loc.host; - // relative path support - if (typeof uri === "string") { - if ("/" === uri.charAt(0)) { - if ("/" === uri.charAt(1)) { - uri = loc.protocol + uri; + const withNativeArrayBuffer$1 = typeof ArrayBuffer === "function"; + const decodePacket = (encodedPacket, binaryType) => { + if (typeof encodedPacket !== "string") { + return { + type: "message", + data: mapBinary(encodedPacket, binaryType) + }; + } + const type = encodedPacket.charAt(0); + if (type === "b") { + return { + type: "message", + data: decodeBase64Packet(encodedPacket.substring(1), binaryType) + }; + } + const packetType = PACKET_TYPES_REVERSE[type]; + if (!packetType) { + return ERROR_PACKET; + } + return encodedPacket.length > 1 + ? { + type: PACKET_TYPES_REVERSE[type], + data: encodedPacket.substring(1) + } + : { + type: PACKET_TYPES_REVERSE[type] + }; + }; + const decodeBase64Packet = (data, binaryType) => { + if (withNativeArrayBuffer$1) { + const decoded = decode$1(data); + return mapBinary(decoded, binaryType); + } + else { + return { base64: true, data }; // fallback for old browsers + } + }; + const mapBinary = (data, binaryType) => { + switch (binaryType) { + case "blob": + if (data instanceof Blob) { + // from WebSocket + binaryType "blob" + return data; } else { - uri = loc.host + uri; + // from HTTP long-polling or WebTransport + return new Blob([data]); } - } - if (!/^(https?|wss?):\/\//.test(uri)) { - if ("undefined" !== typeof loc) { - uri = loc.protocol + "//" + uri; + case "arraybuffer": + default: + if (data instanceof ArrayBuffer) { + // from HTTP long-polling (base64) or WebSocket + binaryType "arraybuffer" + return data; } else { - uri = "https://" + uri; + // from WebTransport (Uint8Array) + return data.buffer; } - } - // parse - obj = parseuri(uri); } - // make sure we treat `localhost:80` and `localhost` equally - if (!obj.port) { - if (/^(http|ws)$/.test(obj.protocol)) { - obj.port = "80"; - } - else if (/^(http|ws)s$/.test(obj.protocol)) { - obj.port = "443"; + }; + + const SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text + const encodePayload = (packets, callback) => { + // some packets may be added to the array while encoding, so the initial length must be saved + const length = packets.length; + const encodedPackets = new Array(length); + let count = 0; + packets.forEach((packet, i) => { + // force base64 encoding for binary packets + encodePacket(packet, false, encodedPacket => { + encodedPackets[i] = encodedPacket; + if (++count === length) { + callback(encodedPackets.join(SEPARATOR)); + } + }); + }); + }; + const decodePayload = (encodedPayload, binaryType) => { + const encodedPackets = encodedPayload.split(SEPARATOR); + const packets = []; + for (let i = 0; i < encodedPackets.length; i++) { + const decodedPacket = decodePacket(encodedPackets[i], binaryType); + packets.push(decodedPacket); + if (decodedPacket.type === "error") { + break; } } - obj.path = obj.path || "/"; - const ipv6 = obj.host.indexOf(":") !== -1; - const host = ipv6 ? "[" + obj.host + "]" : obj.host; - // define unique id - obj.id = obj.protocol + "://" + host + ":" + obj.port + path; - // define href - obj.href = - obj.protocol + - "://" + - host + - (loc && loc.port === obj.port ? "" : ":" + obj.port); - return obj; + return packets; + }; + function createPacketEncoderStream() { + return new TransformStream({ + transform(packet, controller) { + encodePacketToBinary(packet, encodedPacket => { + const payloadLength = encodedPacket.length; + let header; + // inspired by the WebSocket format: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_servers#decoding_payload_length + if (payloadLength < 126) { + header = new Uint8Array(1); + new DataView(header.buffer).setUint8(0, payloadLength); + } + else if (payloadLength < 65536) { + header = new Uint8Array(3); + const view = new DataView(header.buffer); + view.setUint8(0, 126); + view.setUint16(1, payloadLength); + } + else { + header = new Uint8Array(9); + const view = new DataView(header.buffer); + view.setUint8(0, 127); + view.setBigUint64(1, BigInt(payloadLength)); + } + // first bit indicates whether the payload is plain text (0) or binary (1) + if (packet.data && typeof packet.data !== "string") { + header[0] |= 0x80; + } + controller.enqueue(header); + controller.enqueue(encodedPacket); + }); + } + }); } - - var hasCors = {exports: {}}; - - /** - * Module exports. - * - * Logic borrowed from Modernizr: - * - * - https://github.com/Modernizr/Modernizr/blob/master/feature-detects/cors.js - */ - - try { - hasCors.exports = typeof XMLHttpRequest !== 'undefined' && - 'withCredentials' in new XMLHttpRequest(); - } catch (err) { - // if XMLHttp support is disabled in IE then it will throw - // when trying to create - hasCors.exports = false; + let TEXT_DECODER; + function totalLength(chunks) { + return chunks.reduce((acc, chunk) => acc + chunk.length, 0); } - - var hasCORS = hasCors.exports; - - var globalThis = (() => { - if (typeof self !== "undefined") { - return self; - } - else if (typeof window !== "undefined") { - return window; - } - else { - return Function("return this")(); + function concatChunks(chunks, size) { + if (chunks[0].length === size) { + return chunks.shift(); } - })(); - - // browser shim for xmlhttprequest module - function XMLHttpRequest$1 (opts) { - const xdomain = opts.xdomain; - // XMLHttpRequest can be disabled on IE - try { - if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) { - return new XMLHttpRequest(); + const buffer = new Uint8Array(size); + let j = 0; + for (let i = 0; i < size; i++) { + buffer[i] = chunks[0][j++]; + if (j === chunks[0].length) { + chunks.shift(); + j = 0; } } - catch (e) { } - if (!xdomain) { - try { - return new globalThis[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP"); - } - catch (e) { } + if (chunks.length && j < chunks[0].length) { + chunks[0] = chunks[0].slice(j); } + return buffer; } - - function pick(obj, ...attr) { - return attr.reduce((acc, k) => { - if (obj.hasOwnProperty(k)) { - acc[k] = obj[k]; + function createPacketDecoderStream(maxPayload, binaryType) { + if (!TEXT_DECODER) { + TEXT_DECODER = new TextDecoder(); + } + const chunks = []; + let state = 0 /* READ_HEADER */; + let expectedLength = -1; + let isBinary = false; + return new TransformStream({ + transform(chunk, controller) { + chunks.push(chunk); + while (true) { + if (state === 0 /* READ_HEADER */) { + if (totalLength(chunks) < 1) { + break; + } + const header = concatChunks(chunks, 1); + isBinary = (header[0] & 0x80) === 0x80; + expectedLength = header[0] & 0x7f; + if (expectedLength < 126) { + state = 3 /* READ_PAYLOAD */; + } + else if (expectedLength === 126) { + state = 1 /* READ_EXTENDED_LENGTH_16 */; + } + else { + state = 2 /* READ_EXTENDED_LENGTH_64 */; + } + } + else if (state === 1 /* READ_EXTENDED_LENGTH_16 */) { + if (totalLength(chunks) < 2) { + break; + } + const headerArray = concatChunks(chunks, 2); + expectedLength = new DataView(headerArray.buffer, headerArray.byteOffset, headerArray.length).getUint16(0); + state = 3 /* READ_PAYLOAD */; + } + else if (state === 2 /* READ_EXTENDED_LENGTH_64 */) { + if (totalLength(chunks) < 8) { + break; + } + const headerArray = concatChunks(chunks, 8); + const view = new DataView(headerArray.buffer, headerArray.byteOffset, headerArray.length); + const n = view.getUint32(0); + if (n > Math.pow(2, 53 - 32) - 1) { + // the maximum safe integer in JavaScript is 2^53 - 1 + controller.enqueue(ERROR_PACKET); + break; + } + expectedLength = n * Math.pow(2, 32) + view.getUint32(4); + state = 3 /* READ_PAYLOAD */; + } + else { + if (totalLength(chunks) < expectedLength) { + break; + } + const data = concatChunks(chunks, expectedLength); + controller.enqueue(decodePacket(isBinary ? data : TEXT_DECODER.decode(data), binaryType)); + state = 0 /* READ_HEADER */; + } + if (expectedLength === 0 || expectedLength > maxPayload) { + controller.enqueue(ERROR_PACKET); + break; + } + } } - return acc; - }, {}); - } - // Keep a reference to the real timeout functions so they can be used when overridden - const NATIVE_SET_TIMEOUT = setTimeout; - const NATIVE_CLEAR_TIMEOUT = clearTimeout; - function installTimerFunctions(obj, opts) { - if (opts.useNativeTimers) { - obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis); - obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis); - } - else { - obj.setTimeoutFn = setTimeout.bind(globalThis); - obj.clearTimeoutFn = clearTimeout.bind(globalThis); - } + }); } - - /** - * Expose `Emitter`. - */ - - var Emitter_1 = Emitter; + const protocol$1 = 4; /** * Initialize a new `Emitter`. @@ -404,201 +523,145 @@ // alias used for reserved events (protected method) Emitter.prototype.emitReserved = Emitter.prototype.emit; - - /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public - */ - - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks['$' + event] || []; - }; - - /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @api public - */ - - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; - }; - - const PACKET_TYPES = Object.create(null); // no Map = no polyfill - PACKET_TYPES["open"] = "0"; - PACKET_TYPES["close"] = "1"; - PACKET_TYPES["ping"] = "2"; - PACKET_TYPES["pong"] = "3"; - PACKET_TYPES["message"] = "4"; - PACKET_TYPES["upgrade"] = "5"; - PACKET_TYPES["noop"] = "6"; - const PACKET_TYPES_REVERSE = Object.create(null); - Object.keys(PACKET_TYPES).forEach(key => { - PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; - }); - const ERROR_PACKET = { type: "error", data: "parser error" }; - - const withNativeBlob$1 = typeof Blob === "function" || - (typeof Blob !== "undefined" && - Object.prototype.toString.call(Blob) === "[object BlobConstructor]"); - const withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; - // ArrayBuffer.isView method is not defined in IE10 - const isView$1 = obj => { - return typeof ArrayBuffer.isView === "function" - ? ArrayBuffer.isView(obj) - : obj && obj.buffer instanceof ArrayBuffer; - }; - const encodePacket = ({ type, data }, supportsBinary, callback) => { - if (withNativeBlob$1 && data instanceof Blob) { - if (supportsBinary) { - return callback(data); - } - else { - return encodeBlobAsBase64(data, callback); - } - } - else if (withNativeArrayBuffer$2 && - (data instanceof ArrayBuffer || isView$1(data))) { - if (supportsBinary) { - return callback(data); - } - else { - return encodeBlobAsBase64(new Blob([data]), callback); - } - } - // plain string - return callback(PACKET_TYPES[type] + (data || "")); - }; - const encodeBlobAsBase64 = (data, callback) => { - const fileReader = new FileReader(); - fileReader.onload = function () { - const content = fileReader.result.split(",")[1]; - callback("b" + content); - }; - return fileReader.readAsDataURL(data); + + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks['$' + event] || []; }; - /* - * base64-arraybuffer 1.0.1 - * Copyright (c) 2021 Niklas von Hertzen - * Released under MIT License + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public */ - var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - // Use a lookup table to find the index. - var lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); - for (var i$1 = 0; i$1 < chars.length; i$1++) { - lookup$1[chars.charCodeAt(i$1)] = i$1; - } - var decode$1 = function (base64) { - var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; - if (base64[base64.length - 1] === '=') { - bufferLength--; - if (base64[base64.length - 2] === '=') { - bufferLength--; - } - } - var arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer); - for (i = 0; i < len; i += 4) { - encoded1 = lookup$1[base64.charCodeAt(i)]; - encoded2 = lookup$1[base64.charCodeAt(i + 1)]; - encoded3 = lookup$1[base64.charCodeAt(i + 2)]; - encoded4 = lookup$1[base64.charCodeAt(i + 3)]; - bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); - bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); - bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); - } - return arraybuffer; + + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; }; - const withNativeArrayBuffer$1 = typeof ArrayBuffer === "function"; - const decodePacket = (encodedPacket, binaryType) => { - if (typeof encodedPacket !== "string") { - return { - type: "message", - data: mapBinary(encodedPacket, binaryType) - }; + const globalThisShim = (() => { + if (typeof self !== "undefined") { + return self; } - const type = encodedPacket.charAt(0); - if (type === "b") { - return { - type: "message", - data: decodeBase64Packet(encodedPacket.substring(1), binaryType) - }; + else if (typeof window !== "undefined") { + return window; } - const packetType = PACKET_TYPES_REVERSE[type]; - if (!packetType) { - return ERROR_PACKET; + else { + return Function("return this")(); } - return encodedPacket.length > 1 - ? { - type: PACKET_TYPES_REVERSE[type], - data: encodedPacket.substring(1) + })(); + + function pick(obj, ...attr) { + return attr.reduce((acc, k) => { + if (obj.hasOwnProperty(k)) { + acc[k] = obj[k]; } - : { - type: PACKET_TYPES_REVERSE[type] - }; - }; - const decodeBase64Packet = (data, binaryType) => { - if (withNativeArrayBuffer$1) { - const decoded = decode$1(data); - return mapBinary(decoded, binaryType); + return acc; + }, {}); + } + // Keep a reference to the real timeout functions so they can be used when overridden + const NATIVE_SET_TIMEOUT = globalThisShim.setTimeout; + const NATIVE_CLEAR_TIMEOUT = globalThisShim.clearTimeout; + function installTimerFunctions(obj, opts) { + if (opts.useNativeTimers) { + obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThisShim); + obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThisShim); } else { - return { base64: true, data }; // fallback for old browsers + obj.setTimeoutFn = globalThisShim.setTimeout.bind(globalThisShim); + obj.clearTimeoutFn = globalThisShim.clearTimeout.bind(globalThisShim); } - }; - const mapBinary = (data, binaryType) => { - switch (binaryType) { - case "blob": - return data instanceof ArrayBuffer ? new Blob([data]) : data; - case "arraybuffer": - default: - return data; // assuming the data is already an ArrayBuffer + } + // base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64) + const BASE64_OVERHEAD = 1.33; + // we could also have used `new Blob([obj]).size`, but it isn't supported in IE9 + function byteLength(obj) { + if (typeof obj === "string") { + return utf8Length(obj); + } + // arraybuffer or blob + return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD); + } + function utf8Length(str) { + let c = 0, length = 0; + for (let i = 0, l = str.length; i < l; i++) { + c = str.charCodeAt(i); + if (c < 0x80) { + length += 1; + } + else if (c < 0x800) { + length += 2; + } + else if (c < 0xd800 || c >= 0xe000) { + length += 3; + } + else { + i++; + length += 4; + } } - }; + return length; + } - const SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text - const encodePayload = (packets, callback) => { - // some packets may be added to the array while encoding, so the initial length must be saved - const length = packets.length; - const encodedPackets = new Array(length); - let count = 0; - packets.forEach((packet, i) => { - // force base64 encoding for binary packets - encodePacket(packet, false, encodedPacket => { - encodedPackets[i] = encodedPacket; - if (++count === length) { - callback(encodedPackets.join(SEPARATOR)); - } - }); - }); - }; - const decodePayload = (encodedPayload, binaryType) => { - const encodedPackets = encodedPayload.split(SEPARATOR); - const packets = []; - for (let i = 0; i < encodedPackets.length; i++) { - const decodedPacket = decodePacket(encodedPackets[i], binaryType); - packets.push(decodedPacket); - if (decodedPacket.type === "error") { - break; + // imported from https://github.com/galkn/querystring + /** + * Compiles a querystring + * Returns string representation of the object + * + * @param {Object} + * @api private + */ + function encode$1(obj) { + let str = ''; + for (let i in obj) { + if (obj.hasOwnProperty(i)) { + if (str.length) + str += '&'; + str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]); } } - return packets; - }; - const protocol$1 = 4; + return str; + } + /** + * Parses a simple querystring into an object + * + * @param {String} qs + * @api private + */ + function decode(qs) { + let qry = {}; + let pairs = qs.split('&'); + for (let i = 0, l = pairs.length; i < l; i++) { + let pair = pairs[i].split('='); + qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); + } + return qry; + } - class Transport extends Emitter_1 { + class TransportError extends Error { + constructor(reason, description, context) { + super(reason); + this.description = description; + this.context = context; + this.type = "TransportError"; + } + } + class Transport extends Emitter { /** * Transport abstract constructor. * - * @param {Object} options. - * @api private + * @param {Object} opts - options + * @protected */ constructor(opts) { super(); @@ -606,44 +669,34 @@ installTimerFunctions(this, opts); this.opts = opts; this.query = opts.query; - this.readyState = ""; this.socket = opts.socket; } /** * Emits an error. * - * @param {String} str + * @param {String} reason + * @param description + * @param context - the error context * @return {Transport} for chaining - * @api protected + * @protected */ - onError(msg, desc) { - const err = new Error(msg); - // @ts-ignore - err.type = "TransportError"; - // @ts-ignore - err.description = desc; - super.emit("error", err); + onError(reason, description, context) { + super.emitReserved("error", new TransportError(reason, description, context)); return this; } /** * Opens the transport. - * - * @api public */ open() { - if ("closed" === this.readyState || "" === this.readyState) { - this.readyState = "opening"; - this.doOpen(); - } + this.readyState = "opening"; + this.doOpen(); return this; } /** * Closes the transport. - * - * @api public */ close() { - if ("opening" === this.readyState || "open" === this.readyState) { + if (this.readyState === "opening" || this.readyState === "open") { this.doClose(); this.onClose(); } @@ -653,28 +706,27 @@ * Sends multiple packets. * * @param {Array} packets - * @api public */ send(packets) { - if ("open" === this.readyState) { + if (this.readyState === "open") { this.write(packets); } } /** * Called upon open * - * @api protected + * @protected */ onOpen() { this.readyState = "open"; this.writable = true; - super.emit("open"); + super.emitReserved("open"); } /** * Called with data. * * @param {String} data - * @api protected + * @protected */ onData(data) { const packet = decodePacket(data, this.socket.binaryType); @@ -683,29 +735,57 @@ /** * Called with a decoded packet. * - * @api protected + * @protected */ onPacket(packet) { - super.emit("packet", packet); + super.emitReserved("packet", packet); } /** * Called upon close. * - * @api protected + * @protected */ - onClose() { + onClose(details) { this.readyState = "closed"; - super.emit("close"); + super.emitReserved("close", details); + } + /** + * Pauses the transport, in order not to lose packets during an upgrade. + * + * @param onPause + */ + pause(onPause) { } + createUri(schema, query = {}) { + return (schema + + "://" + + this._hostname() + + this._port() + + this.opts.path + + this._query(query)); + } + _hostname() { + const hostname = this.opts.hostname; + return hostname.indexOf(":") === -1 ? hostname : "[" + hostname + "]"; + } + _port() { + if (this.opts.port && + ((this.opts.secure && Number(this.opts.port !== 443)) || + (!this.opts.secure && Number(this.opts.port) !== 80))) { + return ":" + this.opts.port; + } + else { + return ""; + } + } + _query(query) { + const encodedQuery = encode$1(query); + return encodedQuery.length ? "?" + encodedQuery : ""; } } - var alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split('') - , length = 64 - , map = {} - , seed = 0 - , i = 0 - , prev; - + // imported from https://github.com/unshiftio/yeast + const alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {}; + let seed = 0, i = 0, prev; /** * Return a string representing the specified number. * @@ -714,33 +794,13 @@ * @api public */ function encode(num) { - var encoded = ''; - - do { - encoded = alphabet[num % length] + encoded; - num = Math.floor(num / length); - } while (num > 0); - - return encoded; - } - - /** - * Return the integer value specified by the given string. - * - * @param {String} str The string to convert. - * @returns {Number} The integer value represented by the string. - * @api public - */ - function decode(str) { - var decoded = 0; - - for (i = 0; i < str.length; i++) { - decoded = decoded * length + map[str.charAt(i)]; - } - - return decoded; + let encoded = ''; + do { + encoded = alphabet[num % length] + encoded; + num = Math.floor(num / length); + } while (num > 0); + return encoded; } - /** * Yeast: A tiny growing id generator. * @@ -748,72 +808,86 @@ * @api public */ function yeast() { - var now = encode(+new Date()); - - if (now !== prev) return seed = 0, prev = now; - return now +'.'+ encode(seed++); + const now = encode(+new Date()); + if (now !== prev) + return seed = 0, prev = now; + return now + '.' + encode(seed++); } - // // Map each character to its index. // - for (; i < length; i++) map[alphabet[i]] = i; - - // - // Expose the `yeast`, `encode` and `decode` functions. - // - yeast.encode = encode; - yeast.decode = decode; - var yeast_1 = yeast; - - var parseqs = {}; - - /** - * Compiles a querystring - * Returns string representation of the object - * - * @param {Object} - * @api private - */ + for (; i < length; i++) + map[alphabet[i]] = i; - parseqs.encode = function (obj) { - var str = ''; + // imported from https://github.com/component/has-cors + let value = false; + try { + value = typeof XMLHttpRequest !== 'undefined' && + 'withCredentials' in new XMLHttpRequest(); + } + catch (err) { + // if XMLHttp support is disabled in IE then it will throw + // when trying to create + } + const hasCORS = value; - for (var i in obj) { - if (obj.hasOwnProperty(i)) { - if (str.length) str += '&'; - str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]); + // browser shim for xmlhttprequest module + function XHR(opts) { + const xdomain = opts.xdomain; + // XMLHttpRequest can be disabled on IE + try { + if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) { + return new XMLHttpRequest(); + } } - } - - return str; - }; - - /** - * Parses a simple querystring into an object - * - * @param {String} qs - * @api private - */ - - parseqs.decode = function(qs){ - var qry = {}; - var pairs = qs.split('&'); - for (var i = 0, l = pairs.length; i < l; i++) { - var pair = pairs[i].split('='); - qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); - } - return qry; - }; + catch (e) { } + if (!xdomain) { + try { + return new globalThisShim[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP"); + } + catch (e) { } + } + } + function createCookieJar() { } + function empty() { } + const hasXHR2 = (function () { + const xhr = new XHR({ + xdomain: false, + }); + return null != xhr.responseType; + })(); class Polling extends Transport { - constructor() { - super(...arguments); + /** + * XHR Polling constructor. + * + * @param {Object} opts + * @package + */ + constructor(opts) { + super(opts); this.polling = false; + if (typeof location !== "undefined") { + const isSSL = "https:" === location.protocol; + let port = location.port; + // some user agents have empty `location.port` + if (!port) { + port = isSSL ? "443" : "80"; + } + this.xd = + (typeof location !== "undefined" && + opts.hostname !== location.hostname) || + port !== opts.port; + } + /** + * XHR supports binary + */ + const forceBase64 = opts && opts.forceBase64; + this.supportsBinary = hasXHR2 && !forceBase64; + if (this.opts.withCredentials) { + this.cookieJar = createCookieJar(); + } } - /** - * Transport name. - */ get name() { return "polling"; } @@ -821,7 +895,7 @@ * Opens the socket (triggers polling). We write a PING message to determine * when the transport is open. * - * @api private + * @protected */ doOpen() { this.poll(); @@ -829,8 +903,8 @@ /** * Pauses polling. * - * @param {Function} callback upon buffers are flushed and transport is paused - * @api private + * @param {Function} onPause - callback upon buffers are flushed and transport is paused + * @package */ pause(onPause) { this.readyState = "pausing"; @@ -860,27 +934,27 @@ /** * Starts polling cycle. * - * @api public + * @private */ poll() { this.polling = true; this.doPoll(); - this.emit("poll"); + this.emitReserved("poll"); } /** * Overloads onData to detect payloads. * - * @api private + * @protected */ onData(data) { - const callback = packet => { + const callback = (packet) => { // if its the first message we consider the transport open if ("opening" === this.readyState && packet.type === "open") { this.onOpen(); } // if its a close packet, we close the ongoing requests if ("close" === packet.type) { - this.onClose(); + this.onClose({ description: "transport closed by the server" }); return false; } // otherwise bypass onData and handle the message @@ -892,7 +966,7 @@ if ("closed" !== this.readyState) { // if we got data we're not polling this.polling = false; - this.emit("pollComplete"); + this.emitReserved("pollComplete"); if ("open" === this.readyState) { this.poll(); } @@ -901,7 +975,7 @@ /** * For polling, send a close packet. * - * @api private + * @protected */ doClose() { const close = () => { @@ -919,99 +993,43 @@ /** * Writes a packets payload. * - * @param {Array} data packets - * @param {Function} drain callback - * @api private + * @param {Array} packets - data packets + * @protected */ write(packets) { this.writable = false; - encodePayload(packets, data => { + encodePayload(packets, (data) => { this.doWrite(data, () => { this.writable = true; - this.emit("drain"); + this.emitReserved("drain"); }); }); } /** * Generates uri for connection. * - * @api private + * @private */ uri() { - let query = this.query || {}; const schema = this.opts.secure ? "https" : "http"; - let port = ""; + const query = this.query || {}; // cache busting is forced if (false !== this.opts.timestampRequests) { - query[this.opts.timestampParam] = yeast_1(); + query[this.opts.timestampParam] = yeast(); } if (!this.supportsBinary && !query.sid) { query.b64 = 1; } - // avoid port if default for schema - if (this.opts.port && - (("https" === schema && Number(this.opts.port) !== 443) || - ("http" === schema && Number(this.opts.port) !== 80))) { - port = ":" + this.opts.port; - } - const encodedQuery = parseqs.encode(query); - const ipv6 = this.opts.hostname.indexOf(":") !== -1; - return (schema + - "://" + - (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + - port + - this.opts.path + - (encodedQuery.length ? "?" + encodedQuery : "")); - } - } - - /* global attachEvent */ - /** - * Empty function - */ - function empty() { } - const hasXHR2 = (function () { - const xhr = new XMLHttpRequest$1({ - xdomain: false - }); - return null != xhr.responseType; - })(); - class XHR extends Polling { - /** - * XHR Polling constructor. - * - * @param {Object} opts - * @api public - */ - constructor(opts) { - super(opts); - if (typeof location !== "undefined") { - const isSSL = "https:" === location.protocol; - let port = location.port; - // some user agents have empty `location.port` - if (!port) { - port = isSSL ? "443" : "80"; - } - this.xd = - (typeof location !== "undefined" && - opts.hostname !== location.hostname) || - port !== opts.port; - this.xs = opts.secure !== isSSL; - } - /** - * XHR supports binary - */ - const forceBase64 = opts && opts.forceBase64; - this.supportsBinary = hasXHR2 && !forceBase64; + return this.createUri(schema, query); } /** * Creates a request. * * @param {String} method - * @api private + * @private */ request(opts = {}) { - Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts); + Object.assign(opts, { xd: this.xd, cookieJar: this.cookieJar }, this.opts); return new Request(this.uri(), opts); } /** @@ -1019,38 +1037,38 @@ * * @param {String} data to send. * @param {Function} called upon flush. - * @api private + * @private */ doWrite(data, fn) { const req = this.request({ method: "POST", - data: data + data: data, }); req.on("success", fn); - req.on("error", err => { - this.onError("xhr post error", err); + req.on("error", (xhrStatus, context) => { + this.onError("xhr post error", xhrStatus, context); }); } /** * Starts a poll cycle. * - * @api private + * @private */ doPoll() { const req = this.request(); req.on("data", this.onData.bind(this)); - req.on("error", err => { - this.onError("xhr poll error", err); + req.on("error", (xhrStatus, context) => { + this.onError("xhr poll error", xhrStatus, context); }); this.pollXhr = req; } } - class Request extends Emitter_1 { + class Request extends Emitter { /** * Request constructor * * @param {Object} options - * @api public + * @package */ constructor(uri, opts) { super(); @@ -1058,22 +1076,21 @@ this.opts = opts; this.method = opts.method || "GET"; this.uri = uri; - this.async = false !== opts.async; this.data = undefined !== opts.data ? opts.data : null; this.create(); } /** * Creates the XHR object and sends the request. * - * @api private + * @private */ create() { + var _a; const opts = pick(this.opts, "agent", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "autoUnref"); opts.xdomain = !!this.opts.xd; - opts.xscheme = !!this.opts.xs; - const xhr = (this.xhr = new XMLHttpRequest$1(opts)); + const xhr = (this.xhr = new XHR(opts)); try { - xhr.open(this.method, this.uri, this.async); + xhr.open(this.method, this.uri, true); try { if (this.opts.extraHeaders) { xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true); @@ -1095,6 +1112,7 @@ xhr.setRequestHeader("Accept", "*/*"); } catch (e) { } + (_a = this.opts.cookieJar) === null || _a === void 0 ? void 0 : _a.addCookies(xhr); // ie6 check if ("withCredentials" in xhr) { xhr.withCredentials = this.opts.withCredentials; @@ -1103,6 +1121,10 @@ xhr.timeout = this.opts.requestTimeout; } xhr.onreadystatechange = () => { + var _a; + if (xhr.readyState === 3) { + (_a = this.opts.cookieJar) === null || _a === void 0 ? void 0 : _a.parseCookies(xhr); + } if (4 !== xhr.readyState) return; if (200 === xhr.status || 1223 === xhr.status) { @@ -1132,37 +1154,19 @@ Request.requests[this.index] = this; } } - /** - * Called upon successful response. - * - * @api private - */ - onSuccess() { - this.emit("success"); - this.cleanup(); - } - /** - * Called if we have data. - * - * @api private - */ - onData(data) { - this.emit("data", data); - this.onSuccess(); - } /** * Called upon error. * - * @api private + * @private */ onError(err) { - this.emit("error", err); + this.emitReserved("error", err, this.xhr); this.cleanup(true); } /** * Cleans up house. * - * @api private + * @private */ cleanup(fromError) { if ("undefined" === typeof this.xhr || null === this.xhr) { @@ -1183,18 +1187,20 @@ /** * Called upon load. * - * @api private + * @private */ onLoad() { const data = this.xhr.responseText; if (data !== null) { - this.onData(data); + this.emitReserved("data", data); + this.emitReserved("success"); + this.cleanup(); } } /** * Aborts the request. * - * @api public + * @package */ abort() { this.cleanup(); @@ -1214,7 +1220,7 @@ attachEvent("onunload", unloadHandler); } else if (typeof addEventListener === "function") { - const terminationEvent = "onpagehide" in globalThis ? "pagehide" : "unload"; + const terminationEvent = "onpagehide" in globalThisShim ? "pagehide" : "unload"; addEventListener(terminationEvent, unloadHandler, false); } } @@ -1229,13 +1235,13 @@ const nextTick = (() => { const isPromiseAvailable = typeof Promise === "function" && typeof Promise.resolve === "function"; if (isPromiseAvailable) { - return cb => Promise.resolve().then(cb); + return (cb) => Promise.resolve().then(cb); } else { return (cb, setTimeoutFn) => setTimeoutFn(cb, 0); } })(); - const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket; + const WebSocket = globalThisShim.WebSocket || globalThisShim.MozWebSocket; const usingBrowserWebSocket = true; const defaultBinaryType = "arraybuffer"; @@ -1247,26 +1253,16 @@ /** * WebSocket transport constructor. * - * @api {Object} connection options - * @api public + * @param {Object} opts - connection options + * @protected */ constructor(opts) { super(opts); this.supportsBinary = !opts.forceBase64; } - /** - * Transport name. - * - * @api public - */ get name() { return "websocket"; } - /** - * Opens socket. - * - * @api private - */ doOpen() { if (!this.check()) { // let probe timeout @@ -1290,15 +1286,15 @@ : new WebSocket(uri, protocols, opts); } catch (err) { - return this.emit("error", err); + return this.emitReserved("error", err); } - this.ws.binaryType = this.socket.binaryType || defaultBinaryType; + this.ws.binaryType = this.socket.binaryType; this.addEventListeners(); } /** * Adds event listeners to the socket * - * @api private + * @private */ addEventListeners() { this.ws.onopen = () => { @@ -1307,16 +1303,13 @@ } this.onOpen(); }; - this.ws.onclose = this.onClose.bind(this); - this.ws.onmessage = ev => this.onData(ev.data); - this.ws.onerror = e => this.onError("websocket error", e); + this.ws.onclose = (closeEvent) => this.onClose({ + description: "websocket connection closed", + context: closeEvent, + }); + this.ws.onmessage = (ev) => this.onData(ev.data); + this.ws.onerror = (e) => this.onError("websocket error", e); } - /** - * Writes data to socket. - * - * @param {Array} array of packets. - * @api private - */ write(packets) { this.writable = false; // encodePacket efficient as it uses WS framing @@ -1324,7 +1317,7 @@ for (let i = 0; i < packets.length; i++) { const packet = packets[i]; const lastPacket = i === packets.length - 1; - encodePacket(packet, this.supportsBinary, data => { + encodePacket(packet, this.supportsBinary, (data) => { // always create a new object (GH-437) const opts = {}; // Sometimes the websocket has already been closed but the browser didn't @@ -1343,17 +1336,12 @@ // defer to next tick to allow Socket to clear writeBuffer nextTick(() => { this.writable = true; - this.emit("drain"); + this.emitReserved("drain"); }, this.setTimeoutFn); } }); } } - /** - * Closes socket. - * - * @api private - */ doClose() { if (typeof this.ws !== "undefined") { this.ws.close(); @@ -1363,68 +1351,186 @@ /** * Generates uri for connection. * - * @api private + * @private */ uri() { - let query = this.query || {}; const schema = this.opts.secure ? "wss" : "ws"; - let port = ""; - // avoid port if default for schema - if (this.opts.port && - (("wss" === schema && Number(this.opts.port) !== 443) || - ("ws" === schema && Number(this.opts.port) !== 80))) { - port = ":" + this.opts.port; - } + const query = this.query || {}; // append timestamp to URI if (this.opts.timestampRequests) { - query[this.opts.timestampParam] = yeast_1(); + query[this.opts.timestampParam] = yeast(); } // communicate binary support capabilities if (!this.supportsBinary) { query.b64 = 1; } - const encodedQuery = parseqs.encode(query); - const ipv6 = this.opts.hostname.indexOf(":") !== -1; - return (schema + - "://" + - (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + - port + - this.opts.path + - (encodedQuery.length ? "?" + encodedQuery : "")); + return this.createUri(schema, query); } /** * Feature detection for WebSocket. * * @return {Boolean} whether this transport is available. - * @api public + * @private */ check() { - return (!!WebSocket && - !("__initialize" in WebSocket && this.name === WS.prototype.name)); + return !!WebSocket; + } + } + + class WT extends Transport { + get name() { + return "webtransport"; + } + doOpen() { + // @ts-ignore + if (typeof WebTransport !== "function") { + return; + } + // @ts-ignore + this.transport = new WebTransport(this.createUri("https"), this.opts.transportOptions[this.name]); + this.transport.closed + .then(() => { + this.onClose(); + }) + .catch((err) => { + this.onError("webtransport error", err); + }); + // note: we could have used async/await, but that would require some additional polyfills + this.transport.ready.then(() => { + this.transport.createBidirectionalStream().then((stream) => { + const decoderStream = createPacketDecoderStream(Number.MAX_SAFE_INTEGER, this.socket.binaryType); + const reader = stream.readable.pipeThrough(decoderStream).getReader(); + const encoderStream = createPacketEncoderStream(); + encoderStream.readable.pipeTo(stream.writable); + this.writer = encoderStream.writable.getWriter(); + const read = () => { + reader + .read() + .then(({ done, value }) => { + if (done) { + return; + } + this.onPacket(value); + read(); + }) + .catch((err) => { + }); + }; + read(); + const packet = { type: "open" }; + if (this.query.sid) { + packet.data = `{"sid":"${this.query.sid}"}`; + } + this.writer.write(packet).then(() => this.onOpen()); + }); + }); + } + write(packets) { + this.writable = false; + for (let i = 0; i < packets.length; i++) { + const packet = packets[i]; + const lastPacket = i === packets.length - 1; + this.writer.write(packet).then(() => { + if (lastPacket) { + nextTick(() => { + this.writable = true; + this.emitReserved("drain"); + }, this.setTimeoutFn); + } + }); + } + } + doClose() { + var _a; + (_a = this.transport) === null || _a === void 0 ? void 0 : _a.close(); } } const transports = { websocket: WS, - polling: XHR + webtransport: WT, + polling: Polling, }; - class Socket$1 extends Emitter_1 { + // imported from https://github.com/galkn/parseuri + /** + * Parses a URI + * + * Note: we could also have used the built-in URL object, but it isn't supported on all platforms. + * + * See: + * - https://developer.mozilla.org/en-US/docs/Web/API/URL + * - https://caniuse.com/url + * - https://www.rfc-editor.org/rfc/rfc3986#appendix-B + * + * History of the parse() method: + * - first commit: https://github.com/socketio/socket.io-client/commit/4ee1d5d94b3906a9c052b459f1a818b15f38f91c + * - export into its own module: https://github.com/socketio/engine.io-client/commit/de2c561e4564efeb78f1bdb1ba39ef81b2822cb3 + * - reimport: https://github.com/socketio/engine.io-client/commit/df32277c3f6d622eec5ed09f493cae3f3391d242 + * + * @author Steven Levithan (MIT license) + * @api private + */ + const re = /^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/; + const parts = [ + 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor' + ]; + function parse(str) { + const src = str, b = str.indexOf('['), e = str.indexOf(']'); + if (b != -1 && e != -1) { + str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length); + } + let m = re.exec(str || ''), uri = {}, i = 14; + while (i--) { + uri[parts[i]] = m[i] || ''; + } + if (b != -1 && e != -1) { + uri.source = src; + uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':'); + uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':'); + uri.ipv6uri = true; + } + uri.pathNames = pathNames(uri, uri['path']); + uri.queryKey = queryKey(uri, uri['query']); + return uri; + } + function pathNames(obj, path) { + const regx = /\/{2,9}/g, names = path.replace(regx, "/").split("/"); + if (path.slice(0, 1) == '/' || path.length === 0) { + names.splice(0, 1); + } + if (path.slice(-1) == '/') { + names.splice(names.length - 1, 1); + } + return names; + } + function queryKey(uri, query) { + const data = {}; + query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) { + if ($1) { + data[$1] = $2; + } + }); + return data; + } + + class Socket$1 extends Emitter { /** * Socket constructor. * - * @param {String|Object} uri or options + * @param {String|Object} uri - uri or options * @param {Object} opts - options - * @api public */ constructor(uri, opts = {}) { super(); + this.binaryType = defaultBinaryType; + this.writeBuffer = []; if (uri && "object" === typeof uri) { opts = uri; uri = null; } if (uri) { - uri = parseuri(uri); + uri = parse(uri); opts.hostname = uri.host; opts.secure = uri.protocol === "https" || uri.protocol === "wss"; opts.port = uri.port; @@ -1432,7 +1538,7 @@ opts.query = uri.query; } else if (opts.host) { - opts.hostname = parseuri(opts.host).host; + opts.hostname = parse(opts.host).host; } installTimerFunctions(this, opts); this.secure = @@ -1453,8 +1559,11 @@ : this.secure ? "443" : "80"); - this.transports = opts.transports || ["polling", "websocket"]; - this.readyState = ""; + this.transports = opts.transports || [ + "polling", + "websocket", + "webtransport", + ]; this.writeBuffer = []; this.prevBufferLen = 0; this.opts = Object.assign({ @@ -1464,16 +1573,19 @@ upgrade: true, timestampParam: "t", rememberUpgrade: false, + addTrailingSlash: true, rejectUnauthorized: true, perMessageDeflate: { - threshold: 1024 + threshold: 1024, }, transportOptions: {}, - closeOnBeforeunload: true + closeOnBeforeunload: false, }, opts); - this.opts.path = this.opts.path.replace(/\/$/, "") + "/"; + this.opts.path = + this.opts.path.replace(/\/$/, "") + + (this.opts.addTrailingSlash ? "/" : ""); if (typeof this.opts.query === "string") { - this.opts.query = parseqs.decode(this.opts.query); + this.opts.query = decode(this.opts.query); } // set on handshake this.id = null; @@ -1487,17 +1599,20 @@ // Firefox closes the connection when the "beforeunload" event is emitted but not Chrome. This event listener // ensures every browser behaves the same (no "disconnect" event at the Socket.IO level when the page is // closed/reloaded) - addEventListener("beforeunload", () => { + this.beforeunloadEventListener = () => { if (this.transport) { // silently close the transport this.transport.removeAllListeners(); this.transport.close(); } - }, false); + }; + addEventListener("beforeunload", this.beforeunloadEventListener, false); } if (this.hostname !== "localhost") { this.offlineEventListener = () => { - this.onClose("transport close"); + this.onClose("transport close", { + description: "network connection lost", + }); }; addEventListener("offline", this.offlineEventListener, false); } @@ -1507,12 +1622,12 @@ /** * Creates transport of the given type. * - * @param {String} transport name + * @param {String} name - transport name * @return {Transport} - * @api private + * @private */ createTransport(name) { - const query = clone(this.opts.query); + const query = Object.assign({}, this.opts.query); // append engine.io protocol identifier query.EIO = protocol$1; // transport name @@ -1520,19 +1635,19 @@ // session id if we already have one if (this.id) query.sid = this.id; - const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, { + const opts = Object.assign({}, this.opts, { query, socket: this, hostname: this.hostname, secure: this.secure, - port: this.port - }); + port: this.port, + }, this.opts.transportOptions[name]); return new transports[name](opts); } /** * Initializes transport to use and starts probe. * - * @api private + * @private */ open() { let transport; @@ -1567,7 +1682,7 @@ /** * Sets the current transport. Disables the existing one (if any). * - * @api private + * @private */ setTransport(transport) { if (this.transport) { @@ -1580,15 +1695,13 @@ .on("drain", this.onDrain.bind(this)) .on("packet", this.onPacket.bind(this)) .on("error", this.onError.bind(this)) - .on("close", () => { - this.onClose("transport close"); - }); + .on("close", (reason) => this.onClose("transport close", reason)); } /** * Probes a transport. * - * @param {String} transport name - * @api private + * @param {String} name - transport name + * @private */ probe(name) { let transport = this.createTransport(name); @@ -1598,7 +1711,7 @@ if (failed) return; transport.send([{ type: "ping", data: "probe" }]); - transport.once("packet", msg => { + transport.once("packet", (msg) => { if (failed) return; if ("pong" === msg.type && "probe" === msg.data) { @@ -1639,7 +1752,7 @@ transport = null; } // Handle any error that happens while probing - const onerror = err => { + const onerror = (err) => { const error = new Error("probe error: " + err); // @ts-ignore error.transport = transport.name; @@ -1672,12 +1785,23 @@ transport.once("close", onTransportClose); this.once("close", onclose); this.once("upgrading", onupgrade); - transport.open(); + if (this.upgrades.indexOf("webtransport") !== -1 && + name !== "webtransport") { + // favor WebTransport + this.setTimeoutFn(() => { + if (!failed) { + transport.open(); + } + }, 200); + } + else { + transport.open(); + } } /** * Called when connection is deemed open. * - * @api private + * @private */ onOpen() { this.readyState = "open"; @@ -1686,9 +1810,7 @@ this.flush(); // we check for `readyState` in case an `open` // listener already closed the socket - if ("open" === this.readyState && - this.opts.upgrade && - this.transport.pause) { + if ("open" === this.readyState && this.opts.upgrade) { let i = 0; const l = this.upgrades.length; for (; i < l; i++) { @@ -1699,7 +1821,7 @@ /** * Handles a packet. * - * @api private + * @private */ onPacket(packet) { if ("opening" === this.readyState || @@ -1708,12 +1830,12 @@ this.emitReserved("packet", packet); // Socket is live - any packet counts this.emitReserved("heartbeat"); + this.resetPingTimeout(); switch (packet.type) { case "open": this.onHandshake(JSON.parse(packet.data)); break; case "ping": - this.resetPingTimeout(); this.sendPacket("pong"); this.emitReserved("ping"); this.emitReserved("pong"); @@ -1735,7 +1857,7 @@ * Called upon handshake completion. * * @param {Object} data - handshake obj - * @api private + * @private */ onHandshake(data) { this.emitReserved("handshake", data); @@ -1744,6 +1866,7 @@ this.upgrades = this.filterUpgrades(data.upgrades); this.pingInterval = data.pingInterval; this.pingTimeout = data.pingTimeout; + this.maxPayload = data.maxPayload; this.onOpen(); // In case open handler closes socket if ("closed" === this.readyState) @@ -1753,7 +1876,7 @@ /** * Sets and resets ping timeout timer based on server pings. * - * @api private + * @private */ resetPingTimeout() { this.clearTimeoutFn(this.pingTimeoutTimer); @@ -1767,7 +1890,7 @@ /** * Called on `drain` event * - * @api private + * @private */ onDrain() { this.writeBuffer.splice(0, this.prevBufferLen); @@ -1785,28 +1908,54 @@ /** * Flush write buffers. * - * @api private + * @private */ flush() { if ("closed" !== this.readyState && this.transport.writable && !this.upgrading && this.writeBuffer.length) { - this.transport.send(this.writeBuffer); + const packets = this.getWritablePackets(); + this.transport.send(packets); // keep track of current length of writeBuffer // splice writeBuffer and callbackBuffer on `drain` - this.prevBufferLen = this.writeBuffer.length; + this.prevBufferLen = packets.length; this.emitReserved("flush"); } } + /** + * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP + * long-polling) + * + * @private + */ + getWritablePackets() { + const shouldCheckPayloadSize = this.maxPayload && + this.transport.name === "polling" && + this.writeBuffer.length > 1; + if (!shouldCheckPayloadSize) { + return this.writeBuffer; + } + let payloadSize = 1; // first packet type + for (let i = 0; i < this.writeBuffer.length; i++) { + const data = this.writeBuffer[i].data; + if (data) { + payloadSize += byteLength(data); + } + if (i > 0 && payloadSize > this.maxPayload) { + return this.writeBuffer.slice(0, i); + } + payloadSize += 2; // separator + packet type + } + return this.writeBuffer; + } /** * Sends a message. * - * @param {String} message. - * @param {Function} callback function. + * @param {String} msg - message. * @param {Object} options. + * @param {Function} callback function. * @return {Socket} for chaining. - * @api public */ write(msg, options, fn) { this.sendPacket("message", msg, options, fn); @@ -1819,11 +1968,11 @@ /** * Sends a packet. * - * @param {String} packet type. + * @param {String} type: packet type. * @param {String} data. * @param {Object} options. - * @param {Function} callback function. - * @api private + * @param {Function} fn - callback function. + * @private */ sendPacket(type, data, options, fn) { if ("function" === typeof data) { @@ -1842,7 +1991,7 @@ const packet = { type: type, data: data, - options: options + options: options, }; this.emitReserved("packetCreate", packet); this.writeBuffer.push(packet); @@ -1852,8 +2001,6 @@ } /** * Closes the connection. - * - * @api public */ close() { const close = () => { @@ -1894,7 +2041,7 @@ /** * Called upon transport error * - * @api private + * @private */ onError(err) { Socket$1.priorWebsocketSuccess = false; @@ -1904,9 +2051,9 @@ /** * Called upon transport close. * - * @api private + * @private */ - onClose(reason, desc) { + onClose(reason, description) { if ("opening" === this.readyState || "open" === this.readyState || "closing" === this.readyState) { @@ -1919,6 +2066,7 @@ // ignore further transport communication this.transport.removeAllListeners(); if (typeof removeEventListener === "function") { + removeEventListener("beforeunload", this.beforeunloadEventListener, false); removeEventListener("offline", this.offlineEventListener, false); } // set ready state @@ -1926,7 +2074,7 @@ // clear session id this.id = null; // emit close event - this.emitReserved("close", reason, desc); + this.emitReserved("close", reason, description); // clean buffers after, so users can still // grab the buffers on `close` event this.writeBuffer = []; @@ -1936,9 +2084,8 @@ /** * Filters upgrades, returning only those matching client transports. * - * @param {Array} server upgrades - * @api private - * + * @param {Array} upgrades - server upgrades + * @private */ filterUpgrades(upgrades) { const filteredUpgrades = []; @@ -1952,18 +2099,66 @@ } } Socket$1.protocol = protocol$1; - function clone(obj) { - const o = {}; - for (let i in obj) { - if (obj.hasOwnProperty(i)) { - o[i] = obj[i]; + + /** + * URL parser. + * + * @param uri - url + * @param path - the request path of the connection + * @param loc - An object meant to mimic window.location. + * Defaults to window.location. + * @public + */ + function url(uri, path = "", loc) { + let obj = uri; + // default to window.location + loc = loc || (typeof location !== "undefined" && location); + if (null == uri) + uri = loc.protocol + "//" + loc.host; + // relative path support + if (typeof uri === "string") { + if ("/" === uri.charAt(0)) { + if ("/" === uri.charAt(1)) { + uri = loc.protocol + uri; + } + else { + uri = loc.host + uri; + } + } + if (!/^(https?|wss?):\/\//.test(uri)) { + if ("undefined" !== typeof loc) { + uri = loc.protocol + "//" + uri; + } + else { + uri = "https://" + uri; + } + } + // parse + obj = parse(uri); + } + // make sure we treat `localhost:80` and `localhost` equally + if (!obj.port) { + if (/^(http|ws)$/.test(obj.protocol)) { + obj.port = "80"; + } + else if (/^(http|ws)s$/.test(obj.protocol)) { + obj.port = "443"; } } - return o; + obj.path = obj.path || "/"; + const ipv6 = obj.host.indexOf(":") !== -1; + const host = ipv6 ? "[" + obj.host + "]" : obj.host; + // define unique id + obj.id = obj.protocol + "://" + host + ":" + obj.port + path; + // define href + obj.href = + obj.protocol + + "://" + + host + + (loc && loc.port === obj.port ? "" : ":" + obj.port); + return obj; } - Socket$1.protocol; - const withNativeArrayBuffer = typeof ArrayBuffer === "function"; const isView = (obj) => { return typeof ArrayBuffer.isView === "function" @@ -2048,7 +2243,7 @@ else if (typeof data === "object" && !(data instanceof Date)) { const newData = {}; for (const key in data) { - if (data.hasOwnProperty(key)) { + if (Object.prototype.hasOwnProperty.call(data, key)) { newData[key] = _deconstructPacket(data[key], buffers); } } @@ -2066,14 +2261,22 @@ */ function reconstructPacket(packet, buffers) { packet.data = _reconstructPacket(packet.data, buffers); - packet.attachments = undefined; // no longer useful + delete packet.attachments; // no longer useful return packet; } function _reconstructPacket(data, buffers) { if (!data) return data; - if (data && data._placeholder) { - return buffers[data.num]; // appropriate buffer (should be natural order anyway) + if (data && data._placeholder === true) { + const isIndexValid = typeof data.num === "number" && + data.num >= 0 && + data.num < buffers.length; + if (isIndexValid) { + return buffers[data.num]; // appropriate buffer (should be natural order anyway) + } + else { + throw new Error("illegal attachments"); + } } else if (Array.isArray(data)) { for (let i = 0; i < data.length; i++) { @@ -2082,7 +2285,7 @@ } else if (typeof data === "object") { for (const key in data) { - if (data.hasOwnProperty(key)) { + if (Object.prototype.hasOwnProperty.call(data, key)) { data[key] = _reconstructPacket(data[key], buffers); } } @@ -2090,6 +2293,17 @@ return data; } + /** + * These strings must not be used as event names, as they have a special meaning. + */ + const RESERVED_EVENTS$1 = [ + "connect", + "connect_error", + "disconnect", + "disconnecting", + "newListener", + "removeListener", // used by the Node.js EventEmitter + ]; /** * Protocol version. * @@ -2110,6 +2324,14 @@ * A socket.io Encoder instance */ class Encoder { + /** + * Encoder constructor + * + * @param {function} replacer - custom replacer to pass down to JSON.parse + */ + constructor(replacer) { + this.replacer = replacer; + } /** * Encode a packet as a single string if non-binary, or as a * buffer sequence, depending on packet type. @@ -2119,11 +2341,14 @@ encode(obj) { if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) { if (hasBinary(obj)) { - obj.type = - obj.type === PacketType.EVENT + return this.encodeAsBinary({ + type: obj.type === PacketType.EVENT ? PacketType.BINARY_EVENT - : PacketType.BINARY_ACK; - return this.encodeAsBinary(obj); + : PacketType.BINARY_ACK, + nsp: obj.nsp, + data: obj.data, + id: obj.id, + }); } } return [this.encodeAsString(obj)]; @@ -2150,7 +2375,7 @@ } // json data if (null != obj.data) { - str += JSON.stringify(obj.data); + str += JSON.stringify(obj.data, this.replacer); } return str; } @@ -2167,14 +2392,24 @@ return buffers; // write all the buffers } } + // see https://stackoverflow.com/questions/8511281/check-if-a-value-is-an-object-in-javascript + function isObject(value) { + return Object.prototype.toString.call(value) === "[object Object]"; + } /** * A socket.io Decoder instance * * @return {Object} decoder */ - class Decoder extends Emitter_1 { - constructor() { + class Decoder extends Emitter { + /** + * Decoder constructor + * + * @param {function} reviver - custom reviver to pass down to JSON.stringify + */ + constructor(reviver) { super(); + this.reviver = reviver; } /** * Decodes an encoded packet string into packet JSON. @@ -2184,9 +2419,13 @@ add(obj) { let packet; if (typeof obj === "string") { + if (this.reconstructor) { + throw new Error("got plaintext data when reconstructing a packet"); + } packet = this.decodeString(obj); - if (packet.type === PacketType.BINARY_EVENT || - packet.type === PacketType.BINARY_ACK) { + const isBinaryEvent = packet.type === PacketType.BINARY_EVENT; + if (isBinaryEvent || packet.type === PacketType.BINARY_ACK) { + packet.type = isBinaryEvent ? PacketType.EVENT : PacketType.ACK; // binary packet's json this.reconstructor = new BinaryReconstructor(packet); // no attachments, labeled binary but no binary data to follow @@ -2275,7 +2514,7 @@ } // look up json data if (str.charAt(++i)) { - const payload = tryParse(str.substr(i)); + const payload = this.tryParse(str.substr(i)); if (Decoder.isPayloadValid(p.type, payload)) { p.data = payload; } @@ -2285,17 +2524,28 @@ } return p; } + tryParse(str) { + try { + return JSON.parse(str, this.reviver); + } + catch (e) { + return false; + } + } static isPayloadValid(type, payload) { switch (type) { case PacketType.CONNECT: - return typeof payload === "object"; + return isObject(payload); case PacketType.DISCONNECT: return payload === undefined; case PacketType.CONNECT_ERROR: - return typeof payload === "string" || typeof payload === "object"; + return typeof payload === "string" || isObject(payload); case PacketType.EVENT: case PacketType.BINARY_EVENT: - return Array.isArray(payload) && payload.length > 0; + return (Array.isArray(payload) && + (typeof payload[0] === "number" || + (typeof payload[0] === "string" && + RESERVED_EVENTS$1.indexOf(payload[0]) === -1))); case PacketType.ACK: case PacketType.BINARY_ACK: return Array.isArray(payload); @@ -2307,17 +2557,10 @@ destroy() { if (this.reconstructor) { this.reconstructor.finishedReconstruction(); + this.reconstructor = null; } } } - function tryParse(str) { - try { - return JSON.parse(str); - } - catch (e) { - return false; - } - } /** * A manager of a binary event's 'buffer sequence'. Should * be constructed whenever a packet of type BINARY_EVENT is @@ -2387,18 +2630,76 @@ newListener: 1, removeListener: 1, }); - class Socket extends Emitter_1 { + /** + * A Socket is the fundamental class for interacting with the server. + * + * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log("connected"); + * }); + * + * // send an event to the server + * socket.emit("foo", "bar"); + * + * socket.on("foobar", () => { + * // an event was received from the server + * }); + * + * // upon disconnection + * socket.on("disconnect", (reason) => { + * console.log(`disconnected due to ${reason}`); + * }); + */ + class Socket extends Emitter { /** * `Socket` constructor. - * - * @public */ constructor(io, nsp, opts) { super(); + /** + * Whether the socket is currently connected to the server. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.connected); // true + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.connected); // false + * }); + */ this.connected = false; - this.disconnected = true; + /** + * Whether the connection state was recovered after a temporary disconnection. In that case, any missed packets will + * be transmitted by the server. + */ + this.recovered = false; + /** + * Buffer for packets received before the CONNECT packet + */ this.receiveBuffer = []; + /** + * Buffer for packets that will be sent once the socket is connected + */ this.sendBuffer = []; + /** + * The queue of packets to be sent with retry in case of failure. + * + * Packets are sent one by one, each waiting for the server acknowledgement, in order to guarantee the delivery order. + * @private + */ + this._queue = []; + /** + * A sequence to generate the ID of the {@link QueuedPacket}. + * @private + */ + this._queueSeq = 0; this.ids = 0; this.acks = {}; this.flags = {}; @@ -2407,9 +2708,27 @@ if (opts && opts.auth) { this.auth = opts.auth; } + this._opts = Object.assign({}, opts); if (this.io._autoConnect) this.open(); } + /** + * Whether the socket is currently disconnected + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.disconnected); // false + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.disconnected); // true + * }); + */ + get disconnected() { + return !this.connected; + } /** * Subscribe to open, close and packet events * @@ -2427,7 +2746,21 @@ ]; } /** - * Whether the Socket will try to reconnect when its Manager connects or reconnects + * Whether the Socket will try to reconnect when its Manager connects or reconnects. + * + * @example + * const socket = io(); + * + * console.log(socket.active); // true + * + * socket.on("disconnect", (reason) => { + * if (reason === "io server disconnect") { + * // the disconnection was initiated by the server, you need to manually reconnect + * console.log(socket.active); // false + * } + * // else the socket will automatically try to reconnect + * console.log(socket.active); // true + * }); */ get active() { return !!this.subs; @@ -2435,7 +2768,12 @@ /** * "Opens" the socket. * - * @public + * @example + * const socket = io({ + * autoConnect: false + * }); + * + * socket.connect(); */ connect() { if (this.connected) @@ -2448,7 +2786,7 @@ return this; } /** - * Alias for connect() + * Alias for {@link connect()}. */ open() { return this.connect(); @@ -2456,8 +2794,17 @@ /** * Sends a `message` event. * + * This method mimics the WebSocket.send() method. + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send + * + * @example + * socket.send("hello"); + * + * // this is equivalent to + * socket.emit("message", "hello"); + * * @return self - * @public */ send(...args) { args.unshift("message"); @@ -2468,14 +2815,28 @@ * Override `emit`. * If the event is in `events`, it's emitted normally. * + * @example + * socket.emit("hello", "world"); + * + * // all serializable datastructures are supported (no need to call JSON.stringify) + * socket.emit("hello", 1, "2", { 3: ["4"], 5: Uint8Array.from([6]) }); + * + * // with an acknowledgement from the server + * socket.emit("hello", "world", (val) => { + * // ... + * }); + * * @return self - * @public */ emit(ev, ...args) { if (RESERVED_EVENTS.hasOwnProperty(ev)) { - throw new Error('"' + ev + '" is a reserved event name'); + throw new Error('"' + ev.toString() + '" is a reserved event name'); } args.unshift(ev); + if (this._opts.retries && !this.flags.fromQueue && !this.flags.volatile) { + this._addToQueue(args); + return this; + } const packet = { type: PacketType.EVENT, data: args, @@ -2484,8 +2845,10 @@ packet.options.compress = this.flags.compress !== false; // event ack callback if ("function" === typeof args[args.length - 1]) { - this.acks[this.ids] = args.pop(); - packet.id = this.ids++; + const id = this.ids++; + const ack = args.pop(); + this._registerAckCallback(id, ack); + packet.id = id; } const isTransportWritable = this.io.engine && this.io.engine.transport && @@ -2493,6 +2856,7 @@ const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected); if (discardPacket) ; else if (this.connected) { + this.notifyOutgoingListeners(packet); this.packet(packet); } else { @@ -2501,6 +2865,125 @@ this.flags = {}; return this; } + /** + * @private + */ + _registerAckCallback(id, ack) { + var _a; + const timeout = (_a = this.flags.timeout) !== null && _a !== void 0 ? _a : this._opts.ackTimeout; + if (timeout === undefined) { + this.acks[id] = ack; + return; + } + // @ts-ignore + const timer = this.io.setTimeoutFn(() => { + delete this.acks[id]; + for (let i = 0; i < this.sendBuffer.length; i++) { + if (this.sendBuffer[i].id === id) { + this.sendBuffer.splice(i, 1); + } + } + ack.call(this, new Error("operation has timed out")); + }, timeout); + this.acks[id] = (...args) => { + // @ts-ignore + this.io.clearTimeoutFn(timer); + ack.apply(this, [null, ...args]); + }; + } + /** + * Emits an event and waits for an acknowledgement + * + * @example + * // without timeout + * const response = await socket.emitWithAck("hello", "world"); + * + * // with a specific timeout + * try { + * const response = await socket.timeout(1000).emitWithAck("hello", "world"); + * } catch (err) { + * // the server did not acknowledge the event in the given delay + * } + * + * @return a Promise that will be fulfilled when the server acknowledges the event + */ + emitWithAck(ev, ...args) { + // the timeout flag is optional + const withErr = this.flags.timeout !== undefined || this._opts.ackTimeout !== undefined; + return new Promise((resolve, reject) => { + args.push((arg1, arg2) => { + if (withErr) { + return arg1 ? reject(arg1) : resolve(arg2); + } + else { + return resolve(arg1); + } + }); + this.emit(ev, ...args); + }); + } + /** + * Add the packet to the queue. + * @param args + * @private + */ + _addToQueue(args) { + let ack; + if (typeof args[args.length - 1] === "function") { + ack = args.pop(); + } + const packet = { + id: this._queueSeq++, + tryCount: 0, + pending: false, + args, + flags: Object.assign({ fromQueue: true }, this.flags), + }; + args.push((err, ...responseArgs) => { + if (packet !== this._queue[0]) { + // the packet has already been acknowledged + return; + } + const hasError = err !== null; + if (hasError) { + if (packet.tryCount > this._opts.retries) { + this._queue.shift(); + if (ack) { + ack(err); + } + } + } + else { + this._queue.shift(); + if (ack) { + ack(null, ...responseArgs); + } + } + packet.pending = false; + return this._drainQueue(); + }); + this._queue.push(packet); + this._drainQueue(); + } + /** + * Send the first packet of the queue, and wait for an acknowledgement from the server. + * @param force - whether to resend a packet that has not been acknowledged yet + * + * @private + */ + _drainQueue(force = false) { + if (!this.connected || this._queue.length === 0) { + return; + } + const packet = this._queue[0]; + if (packet.pending && !force) { + return; + } + packet.pending = true; + packet.tryCount++; + this.flags = packet.flags; + this.emit.apply(this, packet.args); + } /** * Sends a packet. * @@ -2519,13 +3002,27 @@ onopen() { if (typeof this.auth == "function") { this.auth((data) => { - this.packet({ type: PacketType.CONNECT, data }); + this._sendConnectPacket(data); }); } else { - this.packet({ type: PacketType.CONNECT, data: this.auth }); + this._sendConnectPacket(this.auth); } } + /** + * Sends a CONNECT packet to initiate the Socket.IO session. + * + * @param data + * @private + */ + _sendConnectPacket(data) { + this.packet({ + type: PacketType.CONNECT, + data: this._pid + ? Object.assign({ pid: this._pid, offset: this._lastOffset }, data) + : data, + }); + } /** * Called upon engine or manager `error`. * @@ -2541,13 +3038,13 @@ * Called upon engine `close`. * * @param reason + * @param description * @private */ - onclose(reason) { + onclose(reason, description) { this.connected = false; - this.disconnected = true; delete this.id; - this.emitReserved("disconnect", reason); + this.emitReserved("disconnect", reason, description); } /** * Called with socket packet. @@ -2562,22 +3059,17 @@ switch (packet.type) { case PacketType.CONNECT: if (packet.data && packet.data.sid) { - const id = packet.data.sid; - this.onconnect(id); + this.onconnect(packet.data.sid, packet.data.pid); } else { this.emitReserved("connect_error", new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)")); } break; case PacketType.EVENT: - this.onevent(packet); - break; case PacketType.BINARY_EVENT: this.onevent(packet); break; case PacketType.ACK: - this.onack(packet); - break; case PacketType.BINARY_ACK: this.onack(packet); break; @@ -2585,6 +3077,7 @@ this.ondisconnect(); break; case PacketType.CONNECT_ERROR: + this.destroy(); const err = new Error(packet.data.message); // @ts-ignore err.data = packet.data.data; @@ -2618,6 +3111,9 @@ } } super.emit.apply(this, args); + if (this._pid && args.length && typeof args[args.length - 1] === "string") { + this._lastOffset = args[args.length - 1]; + } } /** * Produces an ack callback to emit with an event. @@ -2657,12 +3153,14 @@ * * @private */ - onconnect(id) { + onconnect(id, pid) { this.id = id; + this.recovered = pid && this._pid === pid; + this._pid = pid; // defined only if connection state recovery is enabled this.connected = true; - this.disconnected = false; this.emitBuffered(); this.emitReserved("connect"); + this._drainQueue(true); } /** * Emit buffered events (received and emitted). @@ -2672,7 +3170,10 @@ emitBuffered() { this.receiveBuffer.forEach((args) => this.emitEvent(args)); this.receiveBuffer = []; - this.sendBuffer.forEach((packet) => this.packet(packet)); + this.sendBuffer.forEach((packet) => { + this.notifyOutgoingListeners(packet); + this.packet(packet); + }); this.sendBuffer = []; } /** @@ -2700,10 +3201,20 @@ this.io["_destroy"](this); } /** - * Disconnects the socket manually. + * Disconnects the socket manually. In that case, the socket will not try to reconnect. + * + * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed. + * + * @example + * const socket = io(); + * + * socket.on("disconnect", (reason) => { + * // console.log(reason); prints "io client disconnect" + * }); + * + * socket.disconnect(); * * @return self - * @public */ disconnect() { if (this.connected) { @@ -2718,10 +3229,9 @@ return this; } /** - * Alias for disconnect() + * Alias for {@link disconnect()}. * * @return self - * @public */ close() { return this.disconnect(); @@ -2729,9 +3239,11 @@ /** * Sets the compress flag. * + * @example + * socket.compress(false).emit("hello"); + * * @param compress - if `true`, compresses the sending data * @return self - * @public */ compress(compress) { this.flags.compress = compress; @@ -2741,19 +3253,42 @@ * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not * ready to send messages. * + * @example + * socket.volatile.emit("hello"); // the server may or may not receive it + * * @returns self - * @public */ get volatile() { this.flags.volatile = true; return this; } + /** + * Sets a modifier for a subsequent event emission that the callback will be called with an error when the + * given number of milliseconds have elapsed without an acknowledgement from the server: + * + * @example + * socket.timeout(5000).emit("my-event", (err) => { + * if (err) { + * // the server did not acknowledge the event in the given delay + * } + * }); + * + * @returns self + */ + timeout(timeout) { + this.flags.timeout = timeout; + return this; + } /** * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the * callback. * + * @example + * socket.onAny((event, ...args) => { + * console.log(`got ${event}`); + * }); + * * @param listener - * @public */ onAny(listener) { this._anyListeners = this._anyListeners || []; @@ -2764,8 +3299,12 @@ * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the * callback. The listener is added to the beginning of the listeners array. * + * @example + * socket.prependAny((event, ...args) => { + * console.log(`got event ${event}`); + * }); + * * @param listener - * @public */ prependAny(listener) { this._anyListeners = this._anyListeners || []; @@ -2775,8 +3314,20 @@ /** * Removes the listener that will be fired when any event is emitted. * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`got event ${event}`); + * } + * + * socket.onAny(catchAllListener); + * + * // remove a specific listener + * socket.offAny(catchAllListener); + * + * // or remove all listeners + * socket.offAny(); + * * @param listener - * @public */ offAny(listener) { if (!this._anyListeners) { @@ -2799,20 +3350,106 @@ /** * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, * e.g. to remove listeners. - * - * @public */ listenersAny() { return this._anyListeners || []; } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.onAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + onAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + this._anyOutgoingListeners.push(listener); + return this; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. The listener is added to the beginning of the listeners array. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.prependAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + prependAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + this._anyOutgoingListeners.unshift(listener); + return this; + } + /** + * Removes the listener that will be fired when any event is emitted. + * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`sent event ${event}`); + * } + * + * socket.onAnyOutgoing(catchAllListener); + * + * // remove a specific listener + * socket.offAnyOutgoing(catchAllListener); + * + * // or remove all listeners + * socket.offAnyOutgoing(); + * + * @param [listener] - the catch-all listener (optional) + */ + offAnyOutgoing(listener) { + if (!this._anyOutgoingListeners) { + return this; + } + if (listener) { + const listeners = this._anyOutgoingListeners; + for (let i = 0; i < listeners.length; i++) { + if (listener === listeners[i]) { + listeners.splice(i, 1); + return this; + } + } + } + else { + this._anyOutgoingListeners = []; + } + return this; + } + /** + * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, + * e.g. to remove listeners. + */ + listenersAnyOutgoing() { + return this._anyOutgoingListeners || []; + } + /** + * Notify the listeners for each packet sent + * + * @param packet + * + * @private + */ + notifyOutgoingListeners(packet) { + if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) { + const listeners = this._anyOutgoingListeners.slice(); + for (const listener of listeners) { + listener.apply(this, packet.data); + } + } + } } - /** - * Expose `Backoff`. - */ - - var backo2 = Backoff; - /** * Initialize backoff timer with `opts`. * @@ -2824,74 +3461,63 @@ * @param {Object} opts * @api public */ - function Backoff(opts) { - opts = opts || {}; - this.ms = opts.min || 100; - this.max = opts.max || 10000; - this.factor = opts.factor || 2; - this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; - this.attempts = 0; + opts = opts || {}; + this.ms = opts.min || 100; + this.max = opts.max || 10000; + this.factor = opts.factor || 2; + this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; + this.attempts = 0; } - /** * Return the backoff duration. * * @return {Number} * @api public */ - - Backoff.prototype.duration = function(){ - var ms = this.ms * Math.pow(this.factor, this.attempts++); - if (this.jitter) { - var rand = Math.random(); - var deviation = Math.floor(rand * this.jitter * ms); - ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; - } - return Math.min(ms, this.max) | 0; + Backoff.prototype.duration = function () { + var ms = this.ms * Math.pow(this.factor, this.attempts++); + if (this.jitter) { + var rand = Math.random(); + var deviation = Math.floor(rand * this.jitter * ms); + ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; + } + return Math.min(ms, this.max) | 0; }; - /** * Reset the number of attempts. * * @api public */ - - Backoff.prototype.reset = function(){ - this.attempts = 0; + Backoff.prototype.reset = function () { + this.attempts = 0; }; - /** * Set the minimum duration * * @api public */ - - Backoff.prototype.setMin = function(min){ - this.ms = min; + Backoff.prototype.setMin = function (min) { + this.ms = min; }; - /** * Set the maximum duration * * @api public */ - - Backoff.prototype.setMax = function(max){ - this.max = max; + Backoff.prototype.setMax = function (max) { + this.max = max; }; - /** * Set the jitter * * @api public */ - - Backoff.prototype.setJitter = function(jitter){ - this.jitter = jitter; + Backoff.prototype.setJitter = function (jitter) { + this.jitter = jitter; }; - class Manager extends Emitter_1 { + class Manager extends Emitter { constructor(uri, opts) { var _a; super(); @@ -2910,7 +3536,7 @@ this.reconnectionDelay(opts.reconnectionDelay || 1000); this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000); this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5); - this.backoff = new backo2({ + this.backoff = new Backoff({ min: this.reconnectionDelay(), max: this.reconnectionDelayMax(), jitter: this.randomizationFactor(), @@ -3002,36 +3628,33 @@ self.onopen(); fn && fn(); }); - // emit `error` - const errorSub = on(socket, "error", (err) => { - self.cleanup(); - self._readyState = "closed"; + const onError = (err) => { + this.cleanup(); + this._readyState = "closed"; this.emitReserved("error", err); if (fn) { fn(err); } else { // Only do this if there is no fn to handle the error - self.maybeReconnectOnOpen(); + this.maybeReconnectOnOpen(); } - }); + }; + // emit `error` + const errorSub = on(socket, "error", onError); if (false !== this._timeout) { const timeout = this._timeout; - if (timeout === 0) { - openSubDestroy(); // prevents a race condition with the 'open' event - } // set timer const timer = this.setTimeoutFn(() => { openSubDestroy(); + onError(new Error("timeout")); socket.close(); - // @ts-ignore - socket.emit("error", new Error("timeout")); }, timeout); if (this.opts.autoUnref) { timer.unref(); } - this.subs.push(function subDestroy() { - clearTimeout(timer); + this.subs.push(() => { + this.clearTimeoutFn(timer); }); } this.subs.push(openSubDestroy); @@ -3076,7 +3699,12 @@ * @private */ ondata(data) { - this.decoder.add(data); + try { + this.decoder.add(data); + } + catch (e) { + this.onclose("parse error", e); + } } /** * Called when parser fully decodes a packet. @@ -3084,7 +3712,10 @@ * @private */ ondecoded(packet) { - this.emitReserved("packet", packet); + // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a "parse error" + nextTick(() => { + this.emitReserved("packet", packet); + }, this.setTimeoutFn); } /** * Called upon socket error. @@ -3106,6 +3737,9 @@ socket = new Socket(this, nsp, opts); this.nsps[nsp] = socket; } + else if (this._autoConnect && !socket.active) { + socket.connect(); + } return socket; } /** @@ -3154,13 +3788,7 @@ _close() { this.skipReconnect = true; this._reconnecting = false; - if ("opening" === this._readyState) { - // `onclose` will not fire because - // an open event never happened - this.cleanup(); - } - this.backoff.reset(); - this._readyState = "closed"; + this.onclose("forced close"); if (this.engine) this.engine.close(); } @@ -3177,11 +3805,11 @@ * * @private */ - onclose(reason) { + onclose(reason, description) { this.cleanup(); this.backoff.reset(); this._readyState = "closed"; - this.emitReserved("close", reason); + this.emitReserved("close", reason, description); if (this._reconnection && !this.skipReconnect) { this.reconnect(); } @@ -3224,8 +3852,8 @@ if (this.opts.autoUnref) { timer.unref(); } - this.subs.push(function subDestroy() { - clearTimeout(timer); + this.subs.push(() => { + this.clearTimeoutFn(timer); }); } } diff --git a/html_ui/Heavy/libs/hdsdk.js b/src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdsdk.js similarity index 100% rename from html_ui/Heavy/libs/hdsdk.js rename to src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdsdk.js index 474e689a..053681c5 100644 --- a/html_ui/Heavy/libs/hdsdk.js +++ b/src/base/hd-aircraft-b78x/html_ui/Heavy/libs/hdsdk.js @@ -262,13 +262,6 @@ })(HDFixStage || (HDFixStage = {})); class HDFix { - constructor(data) { - this.coordinatesRegex = /([0-9]{2})([NS])([0-9])([0-9]{2})([WE])/g; - this.coordinatesShorthandOverRegex = /([0-9]{2}([NSE])([0-9]{2}))/g; - this.coordinatesShorthandUnderRegex = /([0-9]{2}([0-9]{2})([NSE]))/g; - this.rawData = data; - this.parse(); - } get ident() { return this._ident; } @@ -289,6 +282,13 @@ } return false; } + constructor(data) { + this.coordinatesRegex = /([0-9]{2})([NS])([0-9])([0-9]{2})([WE])/g; + this.coordinatesShorthandOverRegex = /([0-9]{2}([NSE])([0-9]{2}))/g; + this.coordinatesShorthandUnderRegex = /([0-9]{2}([0-9]{2})([NSE]))/g; + this.rawData = data; + this.parse(); + } parse() { this._originalIdent = this.rawData.ident; this._ident = this.convertIdent(this.rawData.ident); @@ -431,22 +431,6 @@ } class HDWeights { - constructor(data) { - const weights = data.weights; - this._operatingEmpty = Number(weights.oew); - this._maxTakeoff = Number(weights.max_tow); - this._maxTakeoffStruct = Number(weights.max_tow_struct); - this._maxZeroFuel = Number(weights.max_zfw); - this._maxLanding = Number(weights.max_ldw); - this._estimatedTakeoff = Number(weights.est_tow); - this._estimatedZeroFuel = Number(weights.est_zfw); - this._estimatedLanding = Number(weights.est_ldw); - this._estimatedRamp = Number(weights.est_ramp); - this._cargo = Number(weights.cargo); - this._paxCount = Number(weights.pax_count); - this._paxWeight = Number(weights.pax_weight); - this._payload = Number(weights.payload); - } get payload() { return this._payload; } @@ -486,25 +470,25 @@ get operatingEmpty() { return this._operatingEmpty; } + constructor(data) { + const weights = data.weights; + this._operatingEmpty = Number(weights.oew); + this._maxTakeoff = Number(weights.max_tow); + this._maxTakeoffStruct = Number(weights.max_tow_struct); + this._maxZeroFuel = Number(weights.max_zfw); + this._maxLanding = Number(weights.max_ldw); + this._estimatedTakeoff = Number(weights.est_tow); + this._estimatedZeroFuel = Number(weights.est_zfw); + this._estimatedLanding = Number(weights.est_ldw); + this._estimatedRamp = Number(weights.est_ramp); + this._cargo = Number(weights.cargo); + this._paxCount = Number(weights.pax_count); + this._paxWeight = Number(weights.pax_weight); + this._payload = Number(weights.payload); + } } class HDFuel { - constructor(data) { - const fuel = data.fuel; - this._taxi = fuel.taxi; - this._enrouteBurn = fuel.enroute_burn; - this._contingency = fuel.contingency; - this._alternateBurn = fuel.alternate_burn; - this._reserve = fuel.reserve; - this._etops = fuel.etops; - this._extra = fuel.extra; - this._minTakeoff = fuel.min_takeoff; - this._plannedTakeoff = fuel.plan_takeoff; - this._plannedRamp = fuel.plan_ramp; - this._plannedLanding = fuel.plan_landing; - this._averageFlow = fuel.avg_fuel_flow; - this._maxTanks = fuel.max_tanks; - } get taxi() { return this._taxi; } @@ -583,6 +567,22 @@ set etops(value) { this._etops = value; } + constructor(data) { + const fuel = data.fuel; + this._taxi = fuel.taxi; + this._enrouteBurn = fuel.enroute_burn; + this._contingency = fuel.contingency; + this._alternateBurn = fuel.alternate_burn; + this._reserve = fuel.reserve; + this._etops = fuel.etops; + this._extra = fuel.extra; + this._minTakeoff = fuel.min_takeoff; + this._plannedTakeoff = fuel.plan_takeoff; + this._plannedRamp = fuel.plan_ramp; + this._plannedLanding = fuel.plan_landing; + this._averageFlow = fuel.avg_fuel_flow; + this._maxTanks = fuel.max_tanks; + } } class SimBriefNavlogParser { @@ -1952,22 +1952,6 @@ } class SpeedDirector { - constructor(speedManager) { - this._speedManager = speedManager; - /** - * TODO: FMC should be removed. All speed related values should be stored directly in SpeedDirector - * @private - */ - this._commandedSpeedType = undefined; - this._lastCommandedSpeedType = undefined; - this._speedPhase = undefined; - this._lastSpeedPhase = undefined; - this._machMode = undefined; - this._lastMachMode = undefined; - this._lastSpeed = undefined; - this._speedCheck = undefined; - this.Init(); - } get descentSpeedEcon() { return this._descentSpeedEcon; } @@ -2034,6 +2018,22 @@ set accelerationSpeedRestriction(value) { this._accelerationSpeedRestriction = value; } + constructor(speedManager) { + this._speedManager = speedManager; + /** + * TODO: FMC should be removed. All speed related values should be stored directly in SpeedDirector + * @private + */ + this._commandedSpeedType = undefined; + this._lastCommandedSpeedType = undefined; + this._speedPhase = undefined; + this._lastSpeedPhase = undefined; + this._machMode = undefined; + this._lastMachMode = undefined; + this._lastSpeed = undefined; + this._speedCheck = undefined; + this.Init(); + } Init() { this._updateAltitude(); this._updateLastSpeed(); diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.css similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.css index 86e75296..537f7489 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.css +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.css @@ -397,4 +397,4 @@ user-select: auto; } -/*# sourceMappingURL=B787_10_FMC.css.map */ +/*# sourceMappingURL=B787_10_FMC.css.map */ \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.html similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.html index e264f8d5..f9676e73 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/B787_10_FMC.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/B787_10_FMC.html @@ -1,4 +1,4 @@ - + - @@ -921,4 +921,4 @@ - + \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/CJ4_FMC_PilotWaypoint.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/CJ4_FMC_PilotWaypoint.js similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/CJ4_FMC_PilotWaypoint.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/CJ4_FMC_PilotWaypoint.js index 952822cf..ac59f8f6 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/CJ4_FMC_PilotWaypoint.js +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/CJ4_FMC_PilotWaypoint.js @@ -526,4 +526,4 @@ class CJ4_FMC_PilotWaypoint { */ this.lo = longitude; } -} +} \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/hdfmc.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/hdfmc.js similarity index 94% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/hdfmc.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/hdfmc.js index 379409af..957b8f2c 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/FMC/hdfmc.js +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/FMC/hdfmc.js @@ -536,212 +536,331 @@ } HDLogger.handlers = []; - /** - * Parses an URI - * - * @author Steven Levithan (MIT license) - * @api private - */ - - var re = /^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/; - - var parts = [ - 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor' - ]; - - var parseuri = function parseuri(str) { - var src = str, - b = str.indexOf('['), - e = str.indexOf(']'); - - if (b != -1 && e != -1) { - str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length); - } - - var m = re.exec(str || ''), - uri = {}, - i = 14; + const PACKET_TYPES = Object.create(null); // no Map = no polyfill + PACKET_TYPES["open"] = "0"; + PACKET_TYPES["close"] = "1"; + PACKET_TYPES["ping"] = "2"; + PACKET_TYPES["pong"] = "3"; + PACKET_TYPES["message"] = "4"; + PACKET_TYPES["upgrade"] = "5"; + PACKET_TYPES["noop"] = "6"; + const PACKET_TYPES_REVERSE = Object.create(null); + Object.keys(PACKET_TYPES).forEach(key => { + PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; + }); + const ERROR_PACKET = { type: "error", data: "parser error" }; - while (i--) { - uri[parts[i]] = m[i] || ''; + const withNativeBlob$1 = typeof Blob === "function" || + (typeof Blob !== "undefined" && + Object.prototype.toString.call(Blob) === "[object BlobConstructor]"); + const withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; + // ArrayBuffer.isView method is not defined in IE10 + const isView$1 = obj => { + return typeof ArrayBuffer.isView === "function" + ? ArrayBuffer.isView(obj) + : obj && obj.buffer instanceof ArrayBuffer; + }; + const encodePacket = ({ type, data }, supportsBinary, callback) => { + if (withNativeBlob$1 && data instanceof Blob) { + if (supportsBinary) { + return callback(data); + } + else { + return encodeBlobAsBase64(data, callback); + } } - - if (b != -1 && e != -1) { - uri.source = src; - uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':'); - uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':'); - uri.ipv6uri = true; + else if (withNativeArrayBuffer$2 && + (data instanceof ArrayBuffer || isView$1(data))) { + if (supportsBinary) { + return callback(data); + } + else { + return encodeBlobAsBase64(new Blob([data]), callback); + } } - - uri.pathNames = pathNames(uri, uri['path']); - uri.queryKey = queryKey(uri, uri['query']); - - return uri; + // plain string + return callback(PACKET_TYPES[type] + (data || "")); }; - - function pathNames(obj, path) { - var regx = /\/{2,9}/g, - names = path.replace(regx, "/").split("/"); - - if (path.substr(0, 1) == '/' || path.length === 0) { - names.splice(0, 1); + const encodeBlobAsBase64 = (data, callback) => { + const fileReader = new FileReader(); + fileReader.onload = function () { + const content = fileReader.result.split(",")[1]; + callback("b" + (content || "")); + }; + return fileReader.readAsDataURL(data); + }; + function toArray(data) { + if (data instanceof Uint8Array) { + return data; } - if (path.substr(path.length - 1, 1) == '/') { - names.splice(names.length - 1, 1); + else if (data instanceof ArrayBuffer) { + return new Uint8Array(data); + } + else { + return new Uint8Array(data.buffer, data.byteOffset, data.byteLength); } - - return names; } - - function queryKey(uri, query) { - var data = {}; - - query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) { - if ($1) { - data[$1] = $2; + let TEXT_ENCODER; + function encodePacketToBinary(packet, callback) { + if (withNativeBlob$1 && packet.data instanceof Blob) { + return packet.data + .arrayBuffer() + .then(toArray) + .then(callback); + } + else if (withNativeArrayBuffer$2 && + (packet.data instanceof ArrayBuffer || isView$1(packet.data))) { + return callback(toArray(packet.data)); + } + encodePacket(packet, false, encoded => { + if (!TEXT_ENCODER) { + TEXT_ENCODER = new TextEncoder(); } + callback(TEXT_ENCODER.encode(encoded)); }); + } - return data; + // imported from https://github.com/socketio/base64-arraybuffer + const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + // Use a lookup table to find the index. + const lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + for (let i = 0; i < chars.length; i++) { + lookup$1[chars.charCodeAt(i)] = i; } + const decode$1 = (base64) => { + let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; + if (base64[base64.length - 1] === '=') { + bufferLength--; + if (base64[base64.length - 2] === '=') { + bufferLength--; + } + } + const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer); + for (i = 0; i < len; i += 4) { + encoded1 = lookup$1[base64.charCodeAt(i)]; + encoded2 = lookup$1[base64.charCodeAt(i + 1)]; + encoded3 = lookup$1[base64.charCodeAt(i + 2)]; + encoded4 = lookup$1[base64.charCodeAt(i + 3)]; + bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); + bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); + bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); + } + return arraybuffer; + }; - /** - * URL parser. - * - * @param uri - url - * @param path - the request path of the connection - * @param loc - An object meant to mimic window.location. - * Defaults to window.location. - * @public - */ - function url(uri, path = "", loc) { - let obj = uri; - // default to window.location - loc = loc || (typeof location !== "undefined" && location); - if (null == uri) - uri = loc.protocol + "//" + loc.host; - // relative path support - if (typeof uri === "string") { - if ("/" === uri.charAt(0)) { - if ("/" === uri.charAt(1)) { - uri = loc.protocol + uri; + const withNativeArrayBuffer$1 = typeof ArrayBuffer === "function"; + const decodePacket = (encodedPacket, binaryType) => { + if (typeof encodedPacket !== "string") { + return { + type: "message", + data: mapBinary(encodedPacket, binaryType) + }; + } + const type = encodedPacket.charAt(0); + if (type === "b") { + return { + type: "message", + data: decodeBase64Packet(encodedPacket.substring(1), binaryType) + }; + } + const packetType = PACKET_TYPES_REVERSE[type]; + if (!packetType) { + return ERROR_PACKET; + } + return encodedPacket.length > 1 + ? { + type: PACKET_TYPES_REVERSE[type], + data: encodedPacket.substring(1) + } + : { + type: PACKET_TYPES_REVERSE[type] + }; + }; + const decodeBase64Packet = (data, binaryType) => { + if (withNativeArrayBuffer$1) { + const decoded = decode$1(data); + return mapBinary(decoded, binaryType); + } + else { + return { base64: true, data }; // fallback for old browsers + } + }; + const mapBinary = (data, binaryType) => { + switch (binaryType) { + case "blob": + if (data instanceof Blob) { + // from WebSocket + binaryType "blob" + return data; } else { - uri = loc.host + uri; + // from HTTP long-polling or WebTransport + return new Blob([data]); } - } - if (!/^(https?|wss?):\/\//.test(uri)) { - if ("undefined" !== typeof loc) { - uri = loc.protocol + "//" + uri; + case "arraybuffer": + default: + if (data instanceof ArrayBuffer) { + // from HTTP long-polling (base64) or WebSocket + binaryType "arraybuffer" + return data; } else { - uri = "https://" + uri; + // from WebTransport (Uint8Array) + return data.buffer; } - } - // parse - obj = parseuri(uri); } - // make sure we treat `localhost:80` and `localhost` equally - if (!obj.port) { - if (/^(http|ws)$/.test(obj.protocol)) { - obj.port = "80"; - } - else if (/^(http|ws)s$/.test(obj.protocol)) { - obj.port = "443"; + }; + + const SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text + const encodePayload = (packets, callback) => { + // some packets may be added to the array while encoding, so the initial length must be saved + const length = packets.length; + const encodedPackets = new Array(length); + let count = 0; + packets.forEach((packet, i) => { + // force base64 encoding for binary packets + encodePacket(packet, false, encodedPacket => { + encodedPackets[i] = encodedPacket; + if (++count === length) { + callback(encodedPackets.join(SEPARATOR)); + } + }); + }); + }; + const decodePayload = (encodedPayload, binaryType) => { + const encodedPackets = encodedPayload.split(SEPARATOR); + const packets = []; + for (let i = 0; i < encodedPackets.length; i++) { + const decodedPacket = decodePacket(encodedPackets[i], binaryType); + packets.push(decodedPacket); + if (decodedPacket.type === "error") { + break; } } - obj.path = obj.path || "/"; - const ipv6 = obj.host.indexOf(":") !== -1; - const host = ipv6 ? "[" + obj.host + "]" : obj.host; - // define unique id - obj.id = obj.protocol + "://" + host + ":" + obj.port + path; - // define href - obj.href = - obj.protocol + - "://" + - host + - (loc && loc.port === obj.port ? "" : ":" + obj.port); - return obj; + return packets; + }; + function createPacketEncoderStream() { + return new TransformStream({ + transform(packet, controller) { + encodePacketToBinary(packet, encodedPacket => { + const payloadLength = encodedPacket.length; + let header; + // inspired by the WebSocket format: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_servers#decoding_payload_length + if (payloadLength < 126) { + header = new Uint8Array(1); + new DataView(header.buffer).setUint8(0, payloadLength); + } + else if (payloadLength < 65536) { + header = new Uint8Array(3); + const view = new DataView(header.buffer); + view.setUint8(0, 126); + view.setUint16(1, payloadLength); + } + else { + header = new Uint8Array(9); + const view = new DataView(header.buffer); + view.setUint8(0, 127); + view.setBigUint64(1, BigInt(payloadLength)); + } + // first bit indicates whether the payload is plain text (0) or binary (1) + if (packet.data && typeof packet.data !== "string") { + header[0] |= 0x80; + } + controller.enqueue(header); + controller.enqueue(encodedPacket); + }); + } + }); } - - var hasCors = {exports: {}}; - - /** - * Module exports. - * - * Logic borrowed from Modernizr: - * - * - https://github.com/Modernizr/Modernizr/blob/master/feature-detects/cors.js - */ - - try { - hasCors.exports = typeof XMLHttpRequest !== 'undefined' && - 'withCredentials' in new XMLHttpRequest(); - } catch (err) { - // if XMLHttp support is disabled in IE then it will throw - // when trying to create - hasCors.exports = false; + let TEXT_DECODER; + function totalLength(chunks) { + return chunks.reduce((acc, chunk) => acc + chunk.length, 0); } - - var hasCORS = hasCors.exports; - - var globalThis = (() => { - if (typeof self !== "undefined") { - return self; - } - else if (typeof window !== "undefined") { - return window; - } - else { - return Function("return this")(); + function concatChunks(chunks, size) { + if (chunks[0].length === size) { + return chunks.shift(); } - })(); - - // browser shim for xmlhttprequest module - function XMLHttpRequest$1 (opts) { - const xdomain = opts.xdomain; - // XMLHttpRequest can be disabled on IE - try { - if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) { - return new XMLHttpRequest(); + const buffer = new Uint8Array(size); + let j = 0; + for (let i = 0; i < size; i++) { + buffer[i] = chunks[0][j++]; + if (j === chunks[0].length) { + chunks.shift(); + j = 0; } } - catch (e) { } - if (!xdomain) { - try { - return new globalThis[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP"); - } - catch (e) { } + if (chunks.length && j < chunks[0].length) { + chunks[0] = chunks[0].slice(j); } + return buffer; } - - function pick(obj, ...attr) { - return attr.reduce((acc, k) => { - if (obj.hasOwnProperty(k)) { - acc[k] = obj[k]; + function createPacketDecoderStream(maxPayload, binaryType) { + if (!TEXT_DECODER) { + TEXT_DECODER = new TextDecoder(); + } + const chunks = []; + let state = 0 /* READ_HEADER */; + let expectedLength = -1; + let isBinary = false; + return new TransformStream({ + transform(chunk, controller) { + chunks.push(chunk); + while (true) { + if (state === 0 /* READ_HEADER */) { + if (totalLength(chunks) < 1) { + break; + } + const header = concatChunks(chunks, 1); + isBinary = (header[0] & 0x80) === 0x80; + expectedLength = header[0] & 0x7f; + if (expectedLength < 126) { + state = 3 /* READ_PAYLOAD */; + } + else if (expectedLength === 126) { + state = 1 /* READ_EXTENDED_LENGTH_16 */; + } + else { + state = 2 /* READ_EXTENDED_LENGTH_64 */; + } + } + else if (state === 1 /* READ_EXTENDED_LENGTH_16 */) { + if (totalLength(chunks) < 2) { + break; + } + const headerArray = concatChunks(chunks, 2); + expectedLength = new DataView(headerArray.buffer, headerArray.byteOffset, headerArray.length).getUint16(0); + state = 3 /* READ_PAYLOAD */; + } + else if (state === 2 /* READ_EXTENDED_LENGTH_64 */) { + if (totalLength(chunks) < 8) { + break; + } + const headerArray = concatChunks(chunks, 8); + const view = new DataView(headerArray.buffer, headerArray.byteOffset, headerArray.length); + const n = view.getUint32(0); + if (n > Math.pow(2, 53 - 32) - 1) { + // the maximum safe integer in JavaScript is 2^53 - 1 + controller.enqueue(ERROR_PACKET); + break; + } + expectedLength = n * Math.pow(2, 32) + view.getUint32(4); + state = 3 /* READ_PAYLOAD */; + } + else { + if (totalLength(chunks) < expectedLength) { + break; + } + const data = concatChunks(chunks, expectedLength); + controller.enqueue(decodePacket(isBinary ? data : TEXT_DECODER.decode(data), binaryType)); + state = 0 /* READ_HEADER */; + } + if (expectedLength === 0 || expectedLength > maxPayload) { + controller.enqueue(ERROR_PACKET); + break; + } + } } - return acc; - }, {}); - } - // Keep a reference to the real timeout functions so they can be used when overridden - const NATIVE_SET_TIMEOUT = setTimeout; - const NATIVE_CLEAR_TIMEOUT = clearTimeout; - function installTimerFunctions(obj, opts) { - if (opts.useNativeTimers) { - obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis); - obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis); - } - else { - obj.setTimeoutFn = setTimeout.bind(globalThis); - obj.clearTimeoutFn = clearTimeout.bind(globalThis); - } + }); } - - /** - * Expose `Emitter`. - */ - - var Emitter_1 = Emitter; + const protocol$1 = 4; /** * Initialize a new `Emitter`. @@ -881,207 +1000,151 @@ callbacks[i].apply(this, args); } } - - return this; - }; - - // alias used for reserved events (protected method) - Emitter.prototype.emitReserved = Emitter.prototype.emit; - - /** - * Return array of callbacks for `event`. - * - * @param {String} event - * @return {Array} - * @api public - */ - - Emitter.prototype.listeners = function(event){ - this._callbacks = this._callbacks || {}; - return this._callbacks['$' + event] || []; - }; - - /** - * Check if this emitter has `event` handlers. - * - * @param {String} event - * @return {Boolean} - * @api public - */ - - Emitter.prototype.hasListeners = function(event){ - return !! this.listeners(event).length; - }; - - const PACKET_TYPES = Object.create(null); // no Map = no polyfill - PACKET_TYPES["open"] = "0"; - PACKET_TYPES["close"] = "1"; - PACKET_TYPES["ping"] = "2"; - PACKET_TYPES["pong"] = "3"; - PACKET_TYPES["message"] = "4"; - PACKET_TYPES["upgrade"] = "5"; - PACKET_TYPES["noop"] = "6"; - const PACKET_TYPES_REVERSE = Object.create(null); - Object.keys(PACKET_TYPES).forEach(key => { - PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; - }); - const ERROR_PACKET = { type: "error", data: "parser error" }; - - const withNativeBlob$1 = typeof Blob === "function" || - (typeof Blob !== "undefined" && - Object.prototype.toString.call(Blob) === "[object BlobConstructor]"); - const withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; - // ArrayBuffer.isView method is not defined in IE10 - const isView$1 = obj => { - return typeof ArrayBuffer.isView === "function" - ? ArrayBuffer.isView(obj) - : obj && obj.buffer instanceof ArrayBuffer; - }; - const encodePacket = ({ type, data }, supportsBinary, callback) => { - if (withNativeBlob$1 && data instanceof Blob) { - if (supportsBinary) { - return callback(data); - } - else { - return encodeBlobAsBase64(data, callback); - } - } - else if (withNativeArrayBuffer$2 && - (data instanceof ArrayBuffer || isView$1(data))) { - if (supportsBinary) { - return callback(data); - } - else { - return encodeBlobAsBase64(new Blob([data]), callback); - } - } - // plain string - return callback(PACKET_TYPES[type] + (data || "")); + + return this; }; - const encodeBlobAsBase64 = (data, callback) => { - const fileReader = new FileReader(); - fileReader.onload = function () { - const content = fileReader.result.split(",")[1]; - callback("b" + content); - }; - return fileReader.readAsDataURL(data); + + // alias used for reserved events (protected method) + Emitter.prototype.emitReserved = Emitter.prototype.emit; + + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks['$' + event] || []; }; - /* - * base64-arraybuffer 1.0.1 - * Copyright (c) 2021 Niklas von Hertzen - * Released under MIT License + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public */ - var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - // Use a lookup table to find the index. - var lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); - for (var i$1 = 0; i$1 < chars.length; i$1++) { - lookup$1[chars.charCodeAt(i$1)] = i$1; - } - var decode$1 = function (base64) { - var bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4; - if (base64[base64.length - 1] === '=') { - bufferLength--; - if (base64[base64.length - 2] === '=') { - bufferLength--; - } - } - var arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer); - for (i = 0; i < len; i += 4) { - encoded1 = lookup$1[base64.charCodeAt(i)]; - encoded2 = lookup$1[base64.charCodeAt(i + 1)]; - encoded3 = lookup$1[base64.charCodeAt(i + 2)]; - encoded4 = lookup$1[base64.charCodeAt(i + 3)]; - bytes[p++] = (encoded1 << 2) | (encoded2 >> 4); - bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2); - bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63); - } - return arraybuffer; + + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; }; - const withNativeArrayBuffer$1 = typeof ArrayBuffer === "function"; - const decodePacket = (encodedPacket, binaryType) => { - if (typeof encodedPacket !== "string") { - return { - type: "message", - data: mapBinary(encodedPacket, binaryType) - }; + const globalThisShim = (() => { + if (typeof self !== "undefined") { + return self; } - const type = encodedPacket.charAt(0); - if (type === "b") { - return { - type: "message", - data: decodeBase64Packet(encodedPacket.substring(1), binaryType) - }; + else if (typeof window !== "undefined") { + return window; } - const packetType = PACKET_TYPES_REVERSE[type]; - if (!packetType) { - return ERROR_PACKET; + else { + return Function("return this")(); } - return encodedPacket.length > 1 - ? { - type: PACKET_TYPES_REVERSE[type], - data: encodedPacket.substring(1) + })(); + + function pick(obj, ...attr) { + return attr.reduce((acc, k) => { + if (obj.hasOwnProperty(k)) { + acc[k] = obj[k]; } - : { - type: PACKET_TYPES_REVERSE[type] - }; - }; - const decodeBase64Packet = (data, binaryType) => { - if (withNativeArrayBuffer$1) { - const decoded = decode$1(data); - return mapBinary(decoded, binaryType); + return acc; + }, {}); + } + // Keep a reference to the real timeout functions so they can be used when overridden + const NATIVE_SET_TIMEOUT = globalThisShim.setTimeout; + const NATIVE_CLEAR_TIMEOUT = globalThisShim.clearTimeout; + function installTimerFunctions(obj, opts) { + if (opts.useNativeTimers) { + obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThisShim); + obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThisShim); } else { - return { base64: true, data }; // fallback for old browsers + obj.setTimeoutFn = globalThisShim.setTimeout.bind(globalThisShim); + obj.clearTimeoutFn = globalThisShim.clearTimeout.bind(globalThisShim); } - }; - const mapBinary = (data, binaryType) => { - switch (binaryType) { - case "blob": - return data instanceof ArrayBuffer ? new Blob([data]) : data; - case "arraybuffer": - default: - return data; // assuming the data is already an ArrayBuffer + } + // base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64) + const BASE64_OVERHEAD = 1.33; + // we could also have used `new Blob([obj]).size`, but it isn't supported in IE9 + function byteLength(obj) { + if (typeof obj === "string") { + return utf8Length(obj); + } + // arraybuffer or blob + return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD); + } + function utf8Length(str) { + let c = 0, length = 0; + for (let i = 0, l = str.length; i < l; i++) { + c = str.charCodeAt(i); + if (c < 0x80) { + length += 1; + } + else if (c < 0x800) { + length += 2; + } + else if (c < 0xd800 || c >= 0xe000) { + length += 3; + } + else { + i++; + length += 4; + } } - }; + return length; + } - const SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text - const encodePayload = (packets, callback) => { - // some packets may be added to the array while encoding, so the initial length must be saved - const length = packets.length; - const encodedPackets = new Array(length); - let count = 0; - packets.forEach((packet, i) => { - // force base64 encoding for binary packets - encodePacket(packet, false, encodedPacket => { - encodedPackets[i] = encodedPacket; - if (++count === length) { - callback(encodedPackets.join(SEPARATOR)); - } - }); - }); - }; - const decodePayload = (encodedPayload, binaryType) => { - const encodedPackets = encodedPayload.split(SEPARATOR); - const packets = []; - for (let i = 0; i < encodedPackets.length; i++) { - const decodedPacket = decodePacket(encodedPackets[i], binaryType); - packets.push(decodedPacket); - if (decodedPacket.type === "error") { - break; + // imported from https://github.com/galkn/querystring + /** + * Compiles a querystring + * Returns string representation of the object + * + * @param {Object} + * @api private + */ + function encode$1(obj) { + let str = ''; + for (let i in obj) { + if (obj.hasOwnProperty(i)) { + if (str.length) + str += '&'; + str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]); } } - return packets; - }; - const protocol$1 = 4; + return str; + } + /** + * Parses a simple querystring into an object + * + * @param {String} qs + * @api private + */ + function decode(qs) { + let qry = {}; + let pairs = qs.split('&'); + for (let i = 0, l = pairs.length; i < l; i++) { + let pair = pairs[i].split('='); + qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); + } + return qry; + } - class Transport extends Emitter_1 { + class TransportError extends Error { + constructor(reason, description, context) { + super(reason); + this.description = description; + this.context = context; + this.type = "TransportError"; + } + } + class Transport extends Emitter { /** * Transport abstract constructor. * - * @param {Object} options. - * @api private + * @param {Object} opts - options + * @protected */ constructor(opts) { super(); @@ -1089,44 +1152,34 @@ installTimerFunctions(this, opts); this.opts = opts; this.query = opts.query; - this.readyState = ""; this.socket = opts.socket; } /** * Emits an error. * - * @param {String} str + * @param {String} reason + * @param description + * @param context - the error context * @return {Transport} for chaining - * @api protected + * @protected */ - onError(msg, desc) { - const err = new Error(msg); - // @ts-ignore - err.type = "TransportError"; - // @ts-ignore - err.description = desc; - super.emit("error", err); + onError(reason, description, context) { + super.emitReserved("error", new TransportError(reason, description, context)); return this; } /** * Opens the transport. - * - * @api public */ open() { - if ("closed" === this.readyState || "" === this.readyState) { - this.readyState = "opening"; - this.doOpen(); - } + this.readyState = "opening"; + this.doOpen(); return this; } /** * Closes the transport. - * - * @api public */ close() { - if ("opening" === this.readyState || "open" === this.readyState) { + if (this.readyState === "opening" || this.readyState === "open") { this.doClose(); this.onClose(); } @@ -1136,28 +1189,27 @@ * Sends multiple packets. * * @param {Array} packets - * @api public */ send(packets) { - if ("open" === this.readyState) { + if (this.readyState === "open") { this.write(packets); } } /** * Called upon open * - * @api protected + * @protected */ onOpen() { this.readyState = "open"; this.writable = true; - super.emit("open"); + super.emitReserved("open"); } /** * Called with data. * * @param {String} data - * @api protected + * @protected */ onData(data) { const packet = decodePacket(data, this.socket.binaryType); @@ -1166,29 +1218,57 @@ /** * Called with a decoded packet. * - * @api protected + * @protected */ onPacket(packet) { - super.emit("packet", packet); + super.emitReserved("packet", packet); } /** * Called upon close. * - * @api protected + * @protected */ - onClose() { + onClose(details) { this.readyState = "closed"; - super.emit("close"); + super.emitReserved("close", details); + } + /** + * Pauses the transport, in order not to lose packets during an upgrade. + * + * @param onPause + */ + pause(onPause) { } + createUri(schema, query = {}) { + return (schema + + "://" + + this._hostname() + + this._port() + + this.opts.path + + this._query(query)); + } + _hostname() { + const hostname = this.opts.hostname; + return hostname.indexOf(":") === -1 ? hostname : "[" + hostname + "]"; + } + _port() { + if (this.opts.port && + ((this.opts.secure && Number(this.opts.port !== 443)) || + (!this.opts.secure && Number(this.opts.port) !== 80))) { + return ":" + this.opts.port; + } + else { + return ""; + } + } + _query(query) { + const encodedQuery = encode$1(query); + return encodedQuery.length ? "?" + encodedQuery : ""; } } - var alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split('') - , length = 64 - , map = {} - , seed = 0 - , i = 0 - , prev; - + // imported from https://github.com/unshiftio/yeast + const alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {}; + let seed = 0, i = 0, prev; /** * Return a string representing the specified number. * @@ -1197,33 +1277,13 @@ * @api public */ function encode(num) { - var encoded = ''; - - do { - encoded = alphabet[num % length] + encoded; - num = Math.floor(num / length); - } while (num > 0); - - return encoded; - } - - /** - * Return the integer value specified by the given string. - * - * @param {String} str The string to convert. - * @returns {Number} The integer value represented by the string. - * @api public - */ - function decode(str) { - var decoded = 0; - - for (i = 0; i < str.length; i++) { - decoded = decoded * length + map[str.charAt(i)]; - } - - return decoded; + let encoded = ''; + do { + encoded = alphabet[num % length] + encoded; + num = Math.floor(num / length); + } while (num > 0); + return encoded; } - /** * Yeast: A tiny growing id generator. * @@ -1231,72 +1291,86 @@ * @api public */ function yeast() { - var now = encode(+new Date()); - - if (now !== prev) return seed = 0, prev = now; - return now +'.'+ encode(seed++); + const now = encode(+new Date()); + if (now !== prev) + return seed = 0, prev = now; + return now + '.' + encode(seed++); } - // // Map each character to its index. // - for (; i < length; i++) map[alphabet[i]] = i; - - // - // Expose the `yeast`, `encode` and `decode` functions. - // - yeast.encode = encode; - yeast.decode = decode; - var yeast_1 = yeast; - - var parseqs = {}; - - /** - * Compiles a querystring - * Returns string representation of the object - * - * @param {Object} - * @api private - */ + for (; i < length; i++) + map[alphabet[i]] = i; - parseqs.encode = function (obj) { - var str = ''; + // imported from https://github.com/component/has-cors + let value = false; + try { + value = typeof XMLHttpRequest !== 'undefined' && + 'withCredentials' in new XMLHttpRequest(); + } + catch (err) { + // if XMLHttp support is disabled in IE then it will throw + // when trying to create + } + const hasCORS = value; - for (var i in obj) { - if (obj.hasOwnProperty(i)) { - if (str.length) str += '&'; - str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]); + // browser shim for xmlhttprequest module + function XHR(opts) { + const xdomain = opts.xdomain; + // XMLHttpRequest can be disabled on IE + try { + if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) { + return new XMLHttpRequest(); + } } - } - - return str; - }; - - /** - * Parses a simple querystring into an object - * - * @param {String} qs - * @api private - */ - - parseqs.decode = function(qs){ - var qry = {}; - var pairs = qs.split('&'); - for (var i = 0, l = pairs.length; i < l; i++) { - var pair = pairs[i].split('='); - qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); - } - return qry; - }; + catch (e) { } + if (!xdomain) { + try { + return new globalThisShim[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP"); + } + catch (e) { } + } + } + function createCookieJar() { } + function empty() { } + const hasXHR2 = (function () { + const xhr = new XHR({ + xdomain: false, + }); + return null != xhr.responseType; + })(); class Polling extends Transport { - constructor() { - super(...arguments); + /** + * XHR Polling constructor. + * + * @param {Object} opts + * @package + */ + constructor(opts) { + super(opts); this.polling = false; + if (typeof location !== "undefined") { + const isSSL = "https:" === location.protocol; + let port = location.port; + // some user agents have empty `location.port` + if (!port) { + port = isSSL ? "443" : "80"; + } + this.xd = + (typeof location !== "undefined" && + opts.hostname !== location.hostname) || + port !== opts.port; + } + /** + * XHR supports binary + */ + const forceBase64 = opts && opts.forceBase64; + this.supportsBinary = hasXHR2 && !forceBase64; + if (this.opts.withCredentials) { + this.cookieJar = createCookieJar(); + } } - /** - * Transport name. - */ get name() { return "polling"; } @@ -1304,7 +1378,7 @@ * Opens the socket (triggers polling). We write a PING message to determine * when the transport is open. * - * @api private + * @protected */ doOpen() { this.poll(); @@ -1312,8 +1386,8 @@ /** * Pauses polling. * - * @param {Function} callback upon buffers are flushed and transport is paused - * @api private + * @param {Function} onPause - callback upon buffers are flushed and transport is paused + * @package */ pause(onPause) { this.readyState = "pausing"; @@ -1343,27 +1417,27 @@ /** * Starts polling cycle. * - * @api public + * @private */ poll() { this.polling = true; this.doPoll(); - this.emit("poll"); + this.emitReserved("poll"); } /** * Overloads onData to detect payloads. * - * @api private + * @protected */ onData(data) { - const callback = packet => { + const callback = (packet) => { // if its the first message we consider the transport open if ("opening" === this.readyState && packet.type === "open") { this.onOpen(); } // if its a close packet, we close the ongoing requests if ("close" === packet.type) { - this.onClose(); + this.onClose({ description: "transport closed by the server" }); return false; } // otherwise bypass onData and handle the message @@ -1375,7 +1449,7 @@ if ("closed" !== this.readyState) { // if we got data we're not polling this.polling = false; - this.emit("pollComplete"); + this.emitReserved("pollComplete"); if ("open" === this.readyState) { this.poll(); } @@ -1384,7 +1458,7 @@ /** * For polling, send a close packet. * - * @api private + * @protected */ doClose() { const close = () => { @@ -1402,99 +1476,43 @@ /** * Writes a packets payload. * - * @param {Array} data packets - * @param {Function} drain callback - * @api private + * @param {Array} packets - data packets + * @protected */ write(packets) { this.writable = false; - encodePayload(packets, data => { + encodePayload(packets, (data) => { this.doWrite(data, () => { this.writable = true; - this.emit("drain"); + this.emitReserved("drain"); }); }); } /** * Generates uri for connection. * - * @api private + * @private */ uri() { - let query = this.query || {}; const schema = this.opts.secure ? "https" : "http"; - let port = ""; + const query = this.query || {}; // cache busting is forced if (false !== this.opts.timestampRequests) { - query[this.opts.timestampParam] = yeast_1(); + query[this.opts.timestampParam] = yeast(); } if (!this.supportsBinary && !query.sid) { query.b64 = 1; } - // avoid port if default for schema - if (this.opts.port && - (("https" === schema && Number(this.opts.port) !== 443) || - ("http" === schema && Number(this.opts.port) !== 80))) { - port = ":" + this.opts.port; - } - const encodedQuery = parseqs.encode(query); - const ipv6 = this.opts.hostname.indexOf(":") !== -1; - return (schema + - "://" + - (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + - port + - this.opts.path + - (encodedQuery.length ? "?" + encodedQuery : "")); - } - } - - /* global attachEvent */ - /** - * Empty function - */ - function empty() { } - const hasXHR2 = (function () { - const xhr = new XMLHttpRequest$1({ - xdomain: false - }); - return null != xhr.responseType; - })(); - class XHR extends Polling { - /** - * XHR Polling constructor. - * - * @param {Object} opts - * @api public - */ - constructor(opts) { - super(opts); - if (typeof location !== "undefined") { - const isSSL = "https:" === location.protocol; - let port = location.port; - // some user agents have empty `location.port` - if (!port) { - port = isSSL ? "443" : "80"; - } - this.xd = - (typeof location !== "undefined" && - opts.hostname !== location.hostname) || - port !== opts.port; - this.xs = opts.secure !== isSSL; - } - /** - * XHR supports binary - */ - const forceBase64 = opts && opts.forceBase64; - this.supportsBinary = hasXHR2 && !forceBase64; + return this.createUri(schema, query); } /** * Creates a request. * * @param {String} method - * @api private + * @private */ request(opts = {}) { - Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts); + Object.assign(opts, { xd: this.xd, cookieJar: this.cookieJar }, this.opts); return new Request(this.uri(), opts); } /** @@ -1502,38 +1520,38 @@ * * @param {String} data to send. * @param {Function} called upon flush. - * @api private + * @private */ doWrite(data, fn) { const req = this.request({ method: "POST", - data: data + data: data, }); req.on("success", fn); - req.on("error", err => { - this.onError("xhr post error", err); + req.on("error", (xhrStatus, context) => { + this.onError("xhr post error", xhrStatus, context); }); } /** * Starts a poll cycle. * - * @api private + * @private */ doPoll() { const req = this.request(); req.on("data", this.onData.bind(this)); - req.on("error", err => { - this.onError("xhr poll error", err); + req.on("error", (xhrStatus, context) => { + this.onError("xhr poll error", xhrStatus, context); }); this.pollXhr = req; } } - class Request extends Emitter_1 { + class Request extends Emitter { /** * Request constructor * * @param {Object} options - * @api public + * @package */ constructor(uri, opts) { super(); @@ -1541,22 +1559,21 @@ this.opts = opts; this.method = opts.method || "GET"; this.uri = uri; - this.async = false !== opts.async; this.data = undefined !== opts.data ? opts.data : null; this.create(); } /** * Creates the XHR object and sends the request. * - * @api private + * @private */ create() { + var _a; const opts = pick(this.opts, "agent", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "autoUnref"); opts.xdomain = !!this.opts.xd; - opts.xscheme = !!this.opts.xs; - const xhr = (this.xhr = new XMLHttpRequest$1(opts)); + const xhr = (this.xhr = new XHR(opts)); try { - xhr.open(this.method, this.uri, this.async); + xhr.open(this.method, this.uri, true); try { if (this.opts.extraHeaders) { xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true); @@ -1578,6 +1595,7 @@ xhr.setRequestHeader("Accept", "*/*"); } catch (e) { } + (_a = this.opts.cookieJar) === null || _a === void 0 ? void 0 : _a.addCookies(xhr); // ie6 check if ("withCredentials" in xhr) { xhr.withCredentials = this.opts.withCredentials; @@ -1586,6 +1604,10 @@ xhr.timeout = this.opts.requestTimeout; } xhr.onreadystatechange = () => { + var _a; + if (xhr.readyState === 3) { + (_a = this.opts.cookieJar) === null || _a === void 0 ? void 0 : _a.parseCookies(xhr); + } if (4 !== xhr.readyState) return; if (200 === xhr.status || 1223 === xhr.status) { @@ -1615,37 +1637,19 @@ Request.requests[this.index] = this; } } - /** - * Called upon successful response. - * - * @api private - */ - onSuccess() { - this.emit("success"); - this.cleanup(); - } - /** - * Called if we have data. - * - * @api private - */ - onData(data) { - this.emit("data", data); - this.onSuccess(); - } /** * Called upon error. * - * @api private + * @private */ onError(err) { - this.emit("error", err); + this.emitReserved("error", err, this.xhr); this.cleanup(true); } /** * Cleans up house. * - * @api private + * @private */ cleanup(fromError) { if ("undefined" === typeof this.xhr || null === this.xhr) { @@ -1666,18 +1670,20 @@ /** * Called upon load. * - * @api private + * @private */ onLoad() { const data = this.xhr.responseText; if (data !== null) { - this.onData(data); + this.emitReserved("data", data); + this.emitReserved("success"); + this.cleanup(); } } /** * Aborts the request. * - * @api public + * @package */ abort() { this.cleanup(); @@ -1697,7 +1703,7 @@ attachEvent("onunload", unloadHandler); } else if (typeof addEventListener === "function") { - const terminationEvent = "onpagehide" in globalThis ? "pagehide" : "unload"; + const terminationEvent = "onpagehide" in globalThisShim ? "pagehide" : "unload"; addEventListener(terminationEvent, unloadHandler, false); } } @@ -1712,13 +1718,13 @@ const nextTick = (() => { const isPromiseAvailable = typeof Promise === "function" && typeof Promise.resolve === "function"; if (isPromiseAvailable) { - return cb => Promise.resolve().then(cb); + return (cb) => Promise.resolve().then(cb); } else { return (cb, setTimeoutFn) => setTimeoutFn(cb, 0); } })(); - const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket; + const WebSocket = globalThisShim.WebSocket || globalThisShim.MozWebSocket; const usingBrowserWebSocket = true; const defaultBinaryType = "arraybuffer"; @@ -1730,26 +1736,16 @@ /** * WebSocket transport constructor. * - * @api {Object} connection options - * @api public + * @param {Object} opts - connection options + * @protected */ constructor(opts) { super(opts); this.supportsBinary = !opts.forceBase64; } - /** - * Transport name. - * - * @api public - */ get name() { return "websocket"; } - /** - * Opens socket. - * - * @api private - */ doOpen() { if (!this.check()) { // let probe timeout @@ -1773,15 +1769,15 @@ : new WebSocket(uri, protocols, opts); } catch (err) { - return this.emit("error", err); + return this.emitReserved("error", err); } - this.ws.binaryType = this.socket.binaryType || defaultBinaryType; + this.ws.binaryType = this.socket.binaryType; this.addEventListeners(); } /** * Adds event listeners to the socket * - * @api private + * @private */ addEventListeners() { this.ws.onopen = () => { @@ -1790,16 +1786,13 @@ } this.onOpen(); }; - this.ws.onclose = this.onClose.bind(this); - this.ws.onmessage = ev => this.onData(ev.data); - this.ws.onerror = e => this.onError("websocket error", e); + this.ws.onclose = (closeEvent) => this.onClose({ + description: "websocket connection closed", + context: closeEvent, + }); + this.ws.onmessage = (ev) => this.onData(ev.data); + this.ws.onerror = (e) => this.onError("websocket error", e); } - /** - * Writes data to socket. - * - * @param {Array} array of packets. - * @api private - */ write(packets) { this.writable = false; // encodePacket efficient as it uses WS framing @@ -1807,7 +1800,7 @@ for (let i = 0; i < packets.length; i++) { const packet = packets[i]; const lastPacket = i === packets.length - 1; - encodePacket(packet, this.supportsBinary, data => { + encodePacket(packet, this.supportsBinary, (data) => { // always create a new object (GH-437) const opts = {}; // Sometimes the websocket has already been closed but the browser didn't @@ -1826,17 +1819,12 @@ // defer to next tick to allow Socket to clear writeBuffer nextTick(() => { this.writable = true; - this.emit("drain"); + this.emitReserved("drain"); }, this.setTimeoutFn); } }); } } - /** - * Closes socket. - * - * @api private - */ doClose() { if (typeof this.ws !== "undefined") { this.ws.close(); @@ -1846,68 +1834,186 @@ /** * Generates uri for connection. * - * @api private + * @private */ uri() { - let query = this.query || {}; const schema = this.opts.secure ? "wss" : "ws"; - let port = ""; - // avoid port if default for schema - if (this.opts.port && - (("wss" === schema && Number(this.opts.port) !== 443) || - ("ws" === schema && Number(this.opts.port) !== 80))) { - port = ":" + this.opts.port; - } + const query = this.query || {}; // append timestamp to URI if (this.opts.timestampRequests) { - query[this.opts.timestampParam] = yeast_1(); + query[this.opts.timestampParam] = yeast(); } // communicate binary support capabilities if (!this.supportsBinary) { query.b64 = 1; } - const encodedQuery = parseqs.encode(query); - const ipv6 = this.opts.hostname.indexOf(":") !== -1; - return (schema + - "://" + - (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + - port + - this.opts.path + - (encodedQuery.length ? "?" + encodedQuery : "")); + return this.createUri(schema, query); } /** * Feature detection for WebSocket. * * @return {Boolean} whether this transport is available. - * @api public + * @private */ check() { - return (!!WebSocket && - !("__initialize" in WebSocket && this.name === WS.prototype.name)); + return !!WebSocket; + } + } + + class WT extends Transport { + get name() { + return "webtransport"; + } + doOpen() { + // @ts-ignore + if (typeof WebTransport !== "function") { + return; + } + // @ts-ignore + this.transport = new WebTransport(this.createUri("https"), this.opts.transportOptions[this.name]); + this.transport.closed + .then(() => { + this.onClose(); + }) + .catch((err) => { + this.onError("webtransport error", err); + }); + // note: we could have used async/await, but that would require some additional polyfills + this.transport.ready.then(() => { + this.transport.createBidirectionalStream().then((stream) => { + const decoderStream = createPacketDecoderStream(Number.MAX_SAFE_INTEGER, this.socket.binaryType); + const reader = stream.readable.pipeThrough(decoderStream).getReader(); + const encoderStream = createPacketEncoderStream(); + encoderStream.readable.pipeTo(stream.writable); + this.writer = encoderStream.writable.getWriter(); + const read = () => { + reader + .read() + .then(({ done, value }) => { + if (done) { + return; + } + this.onPacket(value); + read(); + }) + .catch((err) => { + }); + }; + read(); + const packet = { type: "open" }; + if (this.query.sid) { + packet.data = `{"sid":"${this.query.sid}"}`; + } + this.writer.write(packet).then(() => this.onOpen()); + }); + }); + } + write(packets) { + this.writable = false; + for (let i = 0; i < packets.length; i++) { + const packet = packets[i]; + const lastPacket = i === packets.length - 1; + this.writer.write(packet).then(() => { + if (lastPacket) { + nextTick(() => { + this.writable = true; + this.emitReserved("drain"); + }, this.setTimeoutFn); + } + }); + } + } + doClose() { + var _a; + (_a = this.transport) === null || _a === void 0 ? void 0 : _a.close(); } } const transports = { websocket: WS, - polling: XHR + webtransport: WT, + polling: Polling, }; - class Socket$1 extends Emitter_1 { + // imported from https://github.com/galkn/parseuri + /** + * Parses a URI + * + * Note: we could also have used the built-in URL object, but it isn't supported on all platforms. + * + * See: + * - https://developer.mozilla.org/en-US/docs/Web/API/URL + * - https://caniuse.com/url + * - https://www.rfc-editor.org/rfc/rfc3986#appendix-B + * + * History of the parse() method: + * - first commit: https://github.com/socketio/socket.io-client/commit/4ee1d5d94b3906a9c052b459f1a818b15f38f91c + * - export into its own module: https://github.com/socketio/engine.io-client/commit/de2c561e4564efeb78f1bdb1ba39ef81b2822cb3 + * - reimport: https://github.com/socketio/engine.io-client/commit/df32277c3f6d622eec5ed09f493cae3f3391d242 + * + * @author Steven Levithan (MIT license) + * @api private + */ + const re = /^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/; + const parts = [ + 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor' + ]; + function parse(str) { + const src = str, b = str.indexOf('['), e = str.indexOf(']'); + if (b != -1 && e != -1) { + str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length); + } + let m = re.exec(str || ''), uri = {}, i = 14; + while (i--) { + uri[parts[i]] = m[i] || ''; + } + if (b != -1 && e != -1) { + uri.source = src; + uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':'); + uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':'); + uri.ipv6uri = true; + } + uri.pathNames = pathNames(uri, uri['path']); + uri.queryKey = queryKey(uri, uri['query']); + return uri; + } + function pathNames(obj, path) { + const regx = /\/{2,9}/g, names = path.replace(regx, "/").split("/"); + if (path.slice(0, 1) == '/' || path.length === 0) { + names.splice(0, 1); + } + if (path.slice(-1) == '/') { + names.splice(names.length - 1, 1); + } + return names; + } + function queryKey(uri, query) { + const data = {}; + query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) { + if ($1) { + data[$1] = $2; + } + }); + return data; + } + + class Socket$1 extends Emitter { /** * Socket constructor. * - * @param {String|Object} uri or options + * @param {String|Object} uri - uri or options * @param {Object} opts - options - * @api public */ constructor(uri, opts = {}) { super(); + this.binaryType = defaultBinaryType; + this.writeBuffer = []; if (uri && "object" === typeof uri) { opts = uri; uri = null; } if (uri) { - uri = parseuri(uri); + uri = parse(uri); opts.hostname = uri.host; opts.secure = uri.protocol === "https" || uri.protocol === "wss"; opts.port = uri.port; @@ -1915,7 +2021,7 @@ opts.query = uri.query; } else if (opts.host) { - opts.hostname = parseuri(opts.host).host; + opts.hostname = parse(opts.host).host; } installTimerFunctions(this, opts); this.secure = @@ -1936,8 +2042,11 @@ : this.secure ? "443" : "80"); - this.transports = opts.transports || ["polling", "websocket"]; - this.readyState = ""; + this.transports = opts.transports || [ + "polling", + "websocket", + "webtransport", + ]; this.writeBuffer = []; this.prevBufferLen = 0; this.opts = Object.assign({ @@ -1947,16 +2056,19 @@ upgrade: true, timestampParam: "t", rememberUpgrade: false, + addTrailingSlash: true, rejectUnauthorized: true, perMessageDeflate: { - threshold: 1024 + threshold: 1024, }, transportOptions: {}, - closeOnBeforeunload: true + closeOnBeforeunload: false, }, opts); - this.opts.path = this.opts.path.replace(/\/$/, "") + "/"; + this.opts.path = + this.opts.path.replace(/\/$/, "") + + (this.opts.addTrailingSlash ? "/" : ""); if (typeof this.opts.query === "string") { - this.opts.query = parseqs.decode(this.opts.query); + this.opts.query = decode(this.opts.query); } // set on handshake this.id = null; @@ -1970,17 +2082,20 @@ // Firefox closes the connection when the "beforeunload" event is emitted but not Chrome. This event listener // ensures every browser behaves the same (no "disconnect" event at the Socket.IO level when the page is // closed/reloaded) - addEventListener("beforeunload", () => { + this.beforeunloadEventListener = () => { if (this.transport) { // silently close the transport this.transport.removeAllListeners(); this.transport.close(); } - }, false); + }; + addEventListener("beforeunload", this.beforeunloadEventListener, false); } if (this.hostname !== "localhost") { this.offlineEventListener = () => { - this.onClose("transport close"); + this.onClose("transport close", { + description: "network connection lost", + }); }; addEventListener("offline", this.offlineEventListener, false); } @@ -1990,12 +2105,12 @@ /** * Creates transport of the given type. * - * @param {String} transport name + * @param {String} name - transport name * @return {Transport} - * @api private + * @private */ createTransport(name) { - const query = clone(this.opts.query); + const query = Object.assign({}, this.opts.query); // append engine.io protocol identifier query.EIO = protocol$1; // transport name @@ -2003,19 +2118,19 @@ // session id if we already have one if (this.id) query.sid = this.id; - const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, { + const opts = Object.assign({}, this.opts, { query, socket: this, hostname: this.hostname, secure: this.secure, - port: this.port - }); + port: this.port, + }, this.opts.transportOptions[name]); return new transports[name](opts); } /** * Initializes transport to use and starts probe. * - * @api private + * @private */ open() { let transport; @@ -2050,7 +2165,7 @@ /** * Sets the current transport. Disables the existing one (if any). * - * @api private + * @private */ setTransport(transport) { if (this.transport) { @@ -2063,15 +2178,13 @@ .on("drain", this.onDrain.bind(this)) .on("packet", this.onPacket.bind(this)) .on("error", this.onError.bind(this)) - .on("close", () => { - this.onClose("transport close"); - }); + .on("close", (reason) => this.onClose("transport close", reason)); } /** * Probes a transport. * - * @param {String} transport name - * @api private + * @param {String} name - transport name + * @private */ probe(name) { let transport = this.createTransport(name); @@ -2081,7 +2194,7 @@ if (failed) return; transport.send([{ type: "ping", data: "probe" }]); - transport.once("packet", msg => { + transport.once("packet", (msg) => { if (failed) return; if ("pong" === msg.type && "probe" === msg.data) { @@ -2122,7 +2235,7 @@ transport = null; } // Handle any error that happens while probing - const onerror = err => { + const onerror = (err) => { const error = new Error("probe error: " + err); // @ts-ignore error.transport = transport.name; @@ -2155,12 +2268,23 @@ transport.once("close", onTransportClose); this.once("close", onclose); this.once("upgrading", onupgrade); - transport.open(); + if (this.upgrades.indexOf("webtransport") !== -1 && + name !== "webtransport") { + // favor WebTransport + this.setTimeoutFn(() => { + if (!failed) { + transport.open(); + } + }, 200); + } + else { + transport.open(); + } } /** * Called when connection is deemed open. * - * @api private + * @private */ onOpen() { this.readyState = "open"; @@ -2169,9 +2293,7 @@ this.flush(); // we check for `readyState` in case an `open` // listener already closed the socket - if ("open" === this.readyState && - this.opts.upgrade && - this.transport.pause) { + if ("open" === this.readyState && this.opts.upgrade) { let i = 0; const l = this.upgrades.length; for (; i < l; i++) { @@ -2182,7 +2304,7 @@ /** * Handles a packet. * - * @api private + * @private */ onPacket(packet) { if ("opening" === this.readyState || @@ -2191,12 +2313,12 @@ this.emitReserved("packet", packet); // Socket is live - any packet counts this.emitReserved("heartbeat"); + this.resetPingTimeout(); switch (packet.type) { case "open": this.onHandshake(JSON.parse(packet.data)); break; case "ping": - this.resetPingTimeout(); this.sendPacket("pong"); this.emitReserved("ping"); this.emitReserved("pong"); @@ -2218,7 +2340,7 @@ * Called upon handshake completion. * * @param {Object} data - handshake obj - * @api private + * @private */ onHandshake(data) { this.emitReserved("handshake", data); @@ -2227,6 +2349,7 @@ this.upgrades = this.filterUpgrades(data.upgrades); this.pingInterval = data.pingInterval; this.pingTimeout = data.pingTimeout; + this.maxPayload = data.maxPayload; this.onOpen(); // In case open handler closes socket if ("closed" === this.readyState) @@ -2236,7 +2359,7 @@ /** * Sets and resets ping timeout timer based on server pings. * - * @api private + * @private */ resetPingTimeout() { this.clearTimeoutFn(this.pingTimeoutTimer); @@ -2250,7 +2373,7 @@ /** * Called on `drain` event * - * @api private + * @private */ onDrain() { this.writeBuffer.splice(0, this.prevBufferLen); @@ -2268,28 +2391,54 @@ /** * Flush write buffers. * - * @api private + * @private */ flush() { if ("closed" !== this.readyState && this.transport.writable && !this.upgrading && this.writeBuffer.length) { - this.transport.send(this.writeBuffer); + const packets = this.getWritablePackets(); + this.transport.send(packets); // keep track of current length of writeBuffer // splice writeBuffer and callbackBuffer on `drain` - this.prevBufferLen = this.writeBuffer.length; + this.prevBufferLen = packets.length; this.emitReserved("flush"); } } + /** + * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP + * long-polling) + * + * @private + */ + getWritablePackets() { + const shouldCheckPayloadSize = this.maxPayload && + this.transport.name === "polling" && + this.writeBuffer.length > 1; + if (!shouldCheckPayloadSize) { + return this.writeBuffer; + } + let payloadSize = 1; // first packet type + for (let i = 0; i < this.writeBuffer.length; i++) { + const data = this.writeBuffer[i].data; + if (data) { + payloadSize += byteLength(data); + } + if (i > 0 && payloadSize > this.maxPayload) { + return this.writeBuffer.slice(0, i); + } + payloadSize += 2; // separator + packet type + } + return this.writeBuffer; + } /** * Sends a message. * - * @param {String} message. - * @param {Function} callback function. + * @param {String} msg - message. * @param {Object} options. + * @param {Function} callback function. * @return {Socket} for chaining. - * @api public */ write(msg, options, fn) { this.sendPacket("message", msg, options, fn); @@ -2302,11 +2451,11 @@ /** * Sends a packet. * - * @param {String} packet type. + * @param {String} type: packet type. * @param {String} data. * @param {Object} options. - * @param {Function} callback function. - * @api private + * @param {Function} fn - callback function. + * @private */ sendPacket(type, data, options, fn) { if ("function" === typeof data) { @@ -2325,7 +2474,7 @@ const packet = { type: type, data: data, - options: options + options: options, }; this.emitReserved("packetCreate", packet); this.writeBuffer.push(packet); @@ -2335,8 +2484,6 @@ } /** * Closes the connection. - * - * @api public */ close() { const close = () => { @@ -2377,7 +2524,7 @@ /** * Called upon transport error * - * @api private + * @private */ onError(err) { Socket$1.priorWebsocketSuccess = false; @@ -2387,9 +2534,9 @@ /** * Called upon transport close. * - * @api private + * @private */ - onClose(reason, desc) { + onClose(reason, description) { if ("opening" === this.readyState || "open" === this.readyState || "closing" === this.readyState) { @@ -2402,6 +2549,7 @@ // ignore further transport communication this.transport.removeAllListeners(); if (typeof removeEventListener === "function") { + removeEventListener("beforeunload", this.beforeunloadEventListener, false); removeEventListener("offline", this.offlineEventListener, false); } // set ready state @@ -2409,7 +2557,7 @@ // clear session id this.id = null; // emit close event - this.emitReserved("close", reason, desc); + this.emitReserved("close", reason, description); // clean buffers after, so users can still // grab the buffers on `close` event this.writeBuffer = []; @@ -2419,9 +2567,8 @@ /** * Filters upgrades, returning only those matching client transports. * - * @param {Array} server upgrades - * @api private - * + * @param {Array} upgrades - server upgrades + * @private */ filterUpgrades(upgrades) { const filteredUpgrades = []; @@ -2433,20 +2580,68 @@ } return filteredUpgrades; } - } - Socket$1.protocol = protocol$1; - function clone(obj) { - const o = {}; - for (let i in obj) { - if (obj.hasOwnProperty(i)) { - o[i] = obj[i]; + } + Socket$1.protocol = protocol$1; + + /** + * URL parser. + * + * @param uri - url + * @param path - the request path of the connection + * @param loc - An object meant to mimic window.location. + * Defaults to window.location. + * @public + */ + function url(uri, path = "", loc) { + let obj = uri; + // default to window.location + loc = loc || (typeof location !== "undefined" && location); + if (null == uri) + uri = loc.protocol + "//" + loc.host; + // relative path support + if (typeof uri === "string") { + if ("/" === uri.charAt(0)) { + if ("/" === uri.charAt(1)) { + uri = loc.protocol + uri; + } + else { + uri = loc.host + uri; + } + } + if (!/^(https?|wss?):\/\//.test(uri)) { + if ("undefined" !== typeof loc) { + uri = loc.protocol + "//" + uri; + } + else { + uri = "https://" + uri; + } + } + // parse + obj = parse(uri); + } + // make sure we treat `localhost:80` and `localhost` equally + if (!obj.port) { + if (/^(http|ws)$/.test(obj.protocol)) { + obj.port = "80"; + } + else if (/^(http|ws)s$/.test(obj.protocol)) { + obj.port = "443"; } } - return o; + obj.path = obj.path || "/"; + const ipv6 = obj.host.indexOf(":") !== -1; + const host = ipv6 ? "[" + obj.host + "]" : obj.host; + // define unique id + obj.id = obj.protocol + "://" + host + ":" + obj.port + path; + // define href + obj.href = + obj.protocol + + "://" + + host + + (loc && loc.port === obj.port ? "" : ":" + obj.port); + return obj; } - Socket$1.protocol; - const withNativeArrayBuffer = typeof ArrayBuffer === "function"; const isView = (obj) => { return typeof ArrayBuffer.isView === "function" @@ -2531,7 +2726,7 @@ else if (typeof data === "object" && !(data instanceof Date)) { const newData = {}; for (const key in data) { - if (data.hasOwnProperty(key)) { + if (Object.prototype.hasOwnProperty.call(data, key)) { newData[key] = _deconstructPacket(data[key], buffers); } } @@ -2549,14 +2744,22 @@ */ function reconstructPacket(packet, buffers) { packet.data = _reconstructPacket(packet.data, buffers); - packet.attachments = undefined; // no longer useful + delete packet.attachments; // no longer useful return packet; } function _reconstructPacket(data, buffers) { if (!data) return data; - if (data && data._placeholder) { - return buffers[data.num]; // appropriate buffer (should be natural order anyway) + if (data && data._placeholder === true) { + const isIndexValid = typeof data.num === "number" && + data.num >= 0 && + data.num < buffers.length; + if (isIndexValid) { + return buffers[data.num]; // appropriate buffer (should be natural order anyway) + } + else { + throw new Error("illegal attachments"); + } } else if (Array.isArray(data)) { for (let i = 0; i < data.length; i++) { @@ -2565,7 +2768,7 @@ } else if (typeof data === "object") { for (const key in data) { - if (data.hasOwnProperty(key)) { + if (Object.prototype.hasOwnProperty.call(data, key)) { data[key] = _reconstructPacket(data[key], buffers); } } @@ -2573,6 +2776,17 @@ return data; } + /** + * These strings must not be used as event names, as they have a special meaning. + */ + const RESERVED_EVENTS$1 = [ + "connect", + "connect_error", + "disconnect", + "disconnecting", + "newListener", + "removeListener", // used by the Node.js EventEmitter + ]; /** * Protocol version. * @@ -2593,6 +2807,14 @@ * A socket.io Encoder instance */ class Encoder { + /** + * Encoder constructor + * + * @param {function} replacer - custom replacer to pass down to JSON.parse + */ + constructor(replacer) { + this.replacer = replacer; + } /** * Encode a packet as a single string if non-binary, or as a * buffer sequence, depending on packet type. @@ -2602,11 +2824,14 @@ encode(obj) { if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) { if (hasBinary(obj)) { - obj.type = - obj.type === PacketType.EVENT + return this.encodeAsBinary({ + type: obj.type === PacketType.EVENT ? PacketType.BINARY_EVENT - : PacketType.BINARY_ACK; - return this.encodeAsBinary(obj); + : PacketType.BINARY_ACK, + nsp: obj.nsp, + data: obj.data, + id: obj.id, + }); } } return [this.encodeAsString(obj)]; @@ -2633,7 +2858,7 @@ } // json data if (null != obj.data) { - str += JSON.stringify(obj.data); + str += JSON.stringify(obj.data, this.replacer); } return str; } @@ -2650,14 +2875,24 @@ return buffers; // write all the buffers } } + // see https://stackoverflow.com/questions/8511281/check-if-a-value-is-an-object-in-javascript + function isObject(value) { + return Object.prototype.toString.call(value) === "[object Object]"; + } /** * A socket.io Decoder instance * * @return {Object} decoder */ - class Decoder extends Emitter_1 { - constructor() { + class Decoder extends Emitter { + /** + * Decoder constructor + * + * @param {function} reviver - custom reviver to pass down to JSON.stringify + */ + constructor(reviver) { super(); + this.reviver = reviver; } /** * Decodes an encoded packet string into packet JSON. @@ -2667,9 +2902,13 @@ add(obj) { let packet; if (typeof obj === "string") { + if (this.reconstructor) { + throw new Error("got plaintext data when reconstructing a packet"); + } packet = this.decodeString(obj); - if (packet.type === PacketType.BINARY_EVENT || - packet.type === PacketType.BINARY_ACK) { + const isBinaryEvent = packet.type === PacketType.BINARY_EVENT; + if (isBinaryEvent || packet.type === PacketType.BINARY_ACK) { + packet.type = isBinaryEvent ? PacketType.EVENT : PacketType.ACK; // binary packet's json this.reconstructor = new BinaryReconstructor(packet); // no attachments, labeled binary but no binary data to follow @@ -2758,7 +2997,7 @@ } // look up json data if (str.charAt(++i)) { - const payload = tryParse(str.substr(i)); + const payload = this.tryParse(str.substr(i)); if (Decoder.isPayloadValid(p.type, payload)) { p.data = payload; } @@ -2768,17 +3007,28 @@ } return p; } + tryParse(str) { + try { + return JSON.parse(str, this.reviver); + } + catch (e) { + return false; + } + } static isPayloadValid(type, payload) { switch (type) { case PacketType.CONNECT: - return typeof payload === "object"; + return isObject(payload); case PacketType.DISCONNECT: return payload === undefined; case PacketType.CONNECT_ERROR: - return typeof payload === "string" || typeof payload === "object"; + return typeof payload === "string" || isObject(payload); case PacketType.EVENT: case PacketType.BINARY_EVENT: - return Array.isArray(payload) && payload.length > 0; + return (Array.isArray(payload) && + (typeof payload[0] === "number" || + (typeof payload[0] === "string" && + RESERVED_EVENTS$1.indexOf(payload[0]) === -1))); case PacketType.ACK: case PacketType.BINARY_ACK: return Array.isArray(payload); @@ -2790,17 +3040,10 @@ destroy() { if (this.reconstructor) { this.reconstructor.finishedReconstruction(); + this.reconstructor = null; } } } - function tryParse(str) { - try { - return JSON.parse(str); - } - catch (e) { - return false; - } - } /** * A manager of a binary event's 'buffer sequence'. Should * be constructed whenever a packet of type BINARY_EVENT is @@ -2870,18 +3113,76 @@ newListener: 1, removeListener: 1, }); - class Socket extends Emitter_1 { + /** + * A Socket is the fundamental class for interacting with the server. + * + * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log("connected"); + * }); + * + * // send an event to the server + * socket.emit("foo", "bar"); + * + * socket.on("foobar", () => { + * // an event was received from the server + * }); + * + * // upon disconnection + * socket.on("disconnect", (reason) => { + * console.log(`disconnected due to ${reason}`); + * }); + */ + class Socket extends Emitter { /** * `Socket` constructor. - * - * @public */ constructor(io, nsp, opts) { super(); + /** + * Whether the socket is currently connected to the server. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.connected); // true + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.connected); // false + * }); + */ this.connected = false; - this.disconnected = true; + /** + * Whether the connection state was recovered after a temporary disconnection. In that case, any missed packets will + * be transmitted by the server. + */ + this.recovered = false; + /** + * Buffer for packets received before the CONNECT packet + */ this.receiveBuffer = []; + /** + * Buffer for packets that will be sent once the socket is connected + */ this.sendBuffer = []; + /** + * The queue of packets to be sent with retry in case of failure. + * + * Packets are sent one by one, each waiting for the server acknowledgement, in order to guarantee the delivery order. + * @private + */ + this._queue = []; + /** + * A sequence to generate the ID of the {@link QueuedPacket}. + * @private + */ + this._queueSeq = 0; this.ids = 0; this.acks = {}; this.flags = {}; @@ -2890,9 +3191,27 @@ if (opts && opts.auth) { this.auth = opts.auth; } + this._opts = Object.assign({}, opts); if (this.io._autoConnect) this.open(); } + /** + * Whether the socket is currently disconnected + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.disconnected); // false + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.disconnected); // true + * }); + */ + get disconnected() { + return !this.connected; + } /** * Subscribe to open, close and packet events * @@ -2910,7 +3229,21 @@ ]; } /** - * Whether the Socket will try to reconnect when its Manager connects or reconnects + * Whether the Socket will try to reconnect when its Manager connects or reconnects. + * + * @example + * const socket = io(); + * + * console.log(socket.active); // true + * + * socket.on("disconnect", (reason) => { + * if (reason === "io server disconnect") { + * // the disconnection was initiated by the server, you need to manually reconnect + * console.log(socket.active); // false + * } + * // else the socket will automatically try to reconnect + * console.log(socket.active); // true + * }); */ get active() { return !!this.subs; @@ -2918,7 +3251,12 @@ /** * "Opens" the socket. * - * @public + * @example + * const socket = io({ + * autoConnect: false + * }); + * + * socket.connect(); */ connect() { if (this.connected) @@ -2931,7 +3269,7 @@ return this; } /** - * Alias for connect() + * Alias for {@link connect()}. */ open() { return this.connect(); @@ -2939,8 +3277,17 @@ /** * Sends a `message` event. * + * This method mimics the WebSocket.send() method. + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send + * + * @example + * socket.send("hello"); + * + * // this is equivalent to + * socket.emit("message", "hello"); + * * @return self - * @public */ send(...args) { args.unshift("message"); @@ -2951,14 +3298,28 @@ * Override `emit`. * If the event is in `events`, it's emitted normally. * + * @example + * socket.emit("hello", "world"); + * + * // all serializable datastructures are supported (no need to call JSON.stringify) + * socket.emit("hello", 1, "2", { 3: ["4"], 5: Uint8Array.from([6]) }); + * + * // with an acknowledgement from the server + * socket.emit("hello", "world", (val) => { + * // ... + * }); + * * @return self - * @public */ emit(ev, ...args) { if (RESERVED_EVENTS.hasOwnProperty(ev)) { - throw new Error('"' + ev + '" is a reserved event name'); + throw new Error('"' + ev.toString() + '" is a reserved event name'); } args.unshift(ev); + if (this._opts.retries && !this.flags.fromQueue && !this.flags.volatile) { + this._addToQueue(args); + return this; + } const packet = { type: PacketType.EVENT, data: args, @@ -2967,8 +3328,10 @@ packet.options.compress = this.flags.compress !== false; // event ack callback if ("function" === typeof args[args.length - 1]) { - this.acks[this.ids] = args.pop(); - packet.id = this.ids++; + const id = this.ids++; + const ack = args.pop(); + this._registerAckCallback(id, ack); + packet.id = id; } const isTransportWritable = this.io.engine && this.io.engine.transport && @@ -2976,6 +3339,7 @@ const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected); if (discardPacket) ; else if (this.connected) { + this.notifyOutgoingListeners(packet); this.packet(packet); } else { @@ -2984,6 +3348,125 @@ this.flags = {}; return this; } + /** + * @private + */ + _registerAckCallback(id, ack) { + var _a; + const timeout = (_a = this.flags.timeout) !== null && _a !== void 0 ? _a : this._opts.ackTimeout; + if (timeout === undefined) { + this.acks[id] = ack; + return; + } + // @ts-ignore + const timer = this.io.setTimeoutFn(() => { + delete this.acks[id]; + for (let i = 0; i < this.sendBuffer.length; i++) { + if (this.sendBuffer[i].id === id) { + this.sendBuffer.splice(i, 1); + } + } + ack.call(this, new Error("operation has timed out")); + }, timeout); + this.acks[id] = (...args) => { + // @ts-ignore + this.io.clearTimeoutFn(timer); + ack.apply(this, [null, ...args]); + }; + } + /** + * Emits an event and waits for an acknowledgement + * + * @example + * // without timeout + * const response = await socket.emitWithAck("hello", "world"); + * + * // with a specific timeout + * try { + * const response = await socket.timeout(1000).emitWithAck("hello", "world"); + * } catch (err) { + * // the server did not acknowledge the event in the given delay + * } + * + * @return a Promise that will be fulfilled when the server acknowledges the event + */ + emitWithAck(ev, ...args) { + // the timeout flag is optional + const withErr = this.flags.timeout !== undefined || this._opts.ackTimeout !== undefined; + return new Promise((resolve, reject) => { + args.push((arg1, arg2) => { + if (withErr) { + return arg1 ? reject(arg1) : resolve(arg2); + } + else { + return resolve(arg1); + } + }); + this.emit(ev, ...args); + }); + } + /** + * Add the packet to the queue. + * @param args + * @private + */ + _addToQueue(args) { + let ack; + if (typeof args[args.length - 1] === "function") { + ack = args.pop(); + } + const packet = { + id: this._queueSeq++, + tryCount: 0, + pending: false, + args, + flags: Object.assign({ fromQueue: true }, this.flags), + }; + args.push((err, ...responseArgs) => { + if (packet !== this._queue[0]) { + // the packet has already been acknowledged + return; + } + const hasError = err !== null; + if (hasError) { + if (packet.tryCount > this._opts.retries) { + this._queue.shift(); + if (ack) { + ack(err); + } + } + } + else { + this._queue.shift(); + if (ack) { + ack(null, ...responseArgs); + } + } + packet.pending = false; + return this._drainQueue(); + }); + this._queue.push(packet); + this._drainQueue(); + } + /** + * Send the first packet of the queue, and wait for an acknowledgement from the server. + * @param force - whether to resend a packet that has not been acknowledged yet + * + * @private + */ + _drainQueue(force = false) { + if (!this.connected || this._queue.length === 0) { + return; + } + const packet = this._queue[0]; + if (packet.pending && !force) { + return; + } + packet.pending = true; + packet.tryCount++; + this.flags = packet.flags; + this.emit.apply(this, packet.args); + } /** * Sends a packet. * @@ -3002,13 +3485,27 @@ onopen() { if (typeof this.auth == "function") { this.auth((data) => { - this.packet({ type: PacketType.CONNECT, data }); + this._sendConnectPacket(data); }); } else { - this.packet({ type: PacketType.CONNECT, data: this.auth }); + this._sendConnectPacket(this.auth); } } + /** + * Sends a CONNECT packet to initiate the Socket.IO session. + * + * @param data + * @private + */ + _sendConnectPacket(data) { + this.packet({ + type: PacketType.CONNECT, + data: this._pid + ? Object.assign({ pid: this._pid, offset: this._lastOffset }, data) + : data, + }); + } /** * Called upon engine or manager `error`. * @@ -3024,13 +3521,13 @@ * Called upon engine `close`. * * @param reason + * @param description * @private */ - onclose(reason) { + onclose(reason, description) { this.connected = false; - this.disconnected = true; delete this.id; - this.emitReserved("disconnect", reason); + this.emitReserved("disconnect", reason, description); } /** * Called with socket packet. @@ -3045,22 +3542,17 @@ switch (packet.type) { case PacketType.CONNECT: if (packet.data && packet.data.sid) { - const id = packet.data.sid; - this.onconnect(id); + this.onconnect(packet.data.sid, packet.data.pid); } else { this.emitReserved("connect_error", new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)")); } break; case PacketType.EVENT: - this.onevent(packet); - break; case PacketType.BINARY_EVENT: this.onevent(packet); break; case PacketType.ACK: - this.onack(packet); - break; case PacketType.BINARY_ACK: this.onack(packet); break; @@ -3068,6 +3560,7 @@ this.ondisconnect(); break; case PacketType.CONNECT_ERROR: + this.destroy(); const err = new Error(packet.data.message); // @ts-ignore err.data = packet.data.data; @@ -3101,6 +3594,9 @@ } } super.emit.apply(this, args); + if (this._pid && args.length && typeof args[args.length - 1] === "string") { + this._lastOffset = args[args.length - 1]; + } } /** * Produces an ack callback to emit with an event. @@ -3140,12 +3636,14 @@ * * @private */ - onconnect(id) { + onconnect(id, pid) { this.id = id; + this.recovered = pid && this._pid === pid; + this._pid = pid; // defined only if connection state recovery is enabled this.connected = true; - this.disconnected = false; this.emitBuffered(); this.emitReserved("connect"); + this._drainQueue(true); } /** * Emit buffered events (received and emitted). @@ -3155,7 +3653,10 @@ emitBuffered() { this.receiveBuffer.forEach((args) => this.emitEvent(args)); this.receiveBuffer = []; - this.sendBuffer.forEach((packet) => this.packet(packet)); + this.sendBuffer.forEach((packet) => { + this.notifyOutgoingListeners(packet); + this.packet(packet); + }); this.sendBuffer = []; } /** @@ -3183,10 +3684,20 @@ this.io["_destroy"](this); } /** - * Disconnects the socket manually. + * Disconnects the socket manually. In that case, the socket will not try to reconnect. + * + * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed. + * + * @example + * const socket = io(); + * + * socket.on("disconnect", (reason) => { + * // console.log(reason); prints "io client disconnect" + * }); + * + * socket.disconnect(); * * @return self - * @public */ disconnect() { if (this.connected) { @@ -3201,10 +3712,9 @@ return this; } /** - * Alias for disconnect() + * Alias for {@link disconnect()}. * * @return self - * @public */ close() { return this.disconnect(); @@ -3212,9 +3722,11 @@ /** * Sets the compress flag. * + * @example + * socket.compress(false).emit("hello"); + * * @param compress - if `true`, compresses the sending data * @return self - * @public */ compress(compress) { this.flags.compress = compress; @@ -3224,19 +3736,42 @@ * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not * ready to send messages. * + * @example + * socket.volatile.emit("hello"); // the server may or may not receive it + * * @returns self - * @public */ get volatile() { this.flags.volatile = true; return this; } + /** + * Sets a modifier for a subsequent event emission that the callback will be called with an error when the + * given number of milliseconds have elapsed without an acknowledgement from the server: + * + * @example + * socket.timeout(5000).emit("my-event", (err) => { + * if (err) { + * // the server did not acknowledge the event in the given delay + * } + * }); + * + * @returns self + */ + timeout(timeout) { + this.flags.timeout = timeout; + return this; + } /** * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the * callback. * + * @example + * socket.onAny((event, ...args) => { + * console.log(`got ${event}`); + * }); + * * @param listener - * @public */ onAny(listener) { this._anyListeners = this._anyListeners || []; @@ -3247,8 +3782,12 @@ * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the * callback. The listener is added to the beginning of the listeners array. * + * @example + * socket.prependAny((event, ...args) => { + * console.log(`got event ${event}`); + * }); + * * @param listener - * @public */ prependAny(listener) { this._anyListeners = this._anyListeners || []; @@ -3258,8 +3797,20 @@ /** * Removes the listener that will be fired when any event is emitted. * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`got event ${event}`); + * } + * + * socket.onAny(catchAllListener); + * + * // remove a specific listener + * socket.offAny(catchAllListener); + * + * // or remove all listeners + * socket.offAny(); + * * @param listener - * @public */ offAny(listener) { if (!this._anyListeners) { @@ -3282,20 +3833,106 @@ /** * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, * e.g. to remove listeners. - * - * @public */ listenersAny() { return this._anyListeners || []; } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.onAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + onAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + this._anyOutgoingListeners.push(listener); + return this; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. The listener is added to the beginning of the listeners array. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.prependAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + prependAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + this._anyOutgoingListeners.unshift(listener); + return this; + } + /** + * Removes the listener that will be fired when any event is emitted. + * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`sent event ${event}`); + * } + * + * socket.onAnyOutgoing(catchAllListener); + * + * // remove a specific listener + * socket.offAnyOutgoing(catchAllListener); + * + * // or remove all listeners + * socket.offAnyOutgoing(); + * + * @param [listener] - the catch-all listener (optional) + */ + offAnyOutgoing(listener) { + if (!this._anyOutgoingListeners) { + return this; + } + if (listener) { + const listeners = this._anyOutgoingListeners; + for (let i = 0; i < listeners.length; i++) { + if (listener === listeners[i]) { + listeners.splice(i, 1); + return this; + } + } + } + else { + this._anyOutgoingListeners = []; + } + return this; + } + /** + * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, + * e.g. to remove listeners. + */ + listenersAnyOutgoing() { + return this._anyOutgoingListeners || []; + } + /** + * Notify the listeners for each packet sent + * + * @param packet + * + * @private + */ + notifyOutgoingListeners(packet) { + if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) { + const listeners = this._anyOutgoingListeners.slice(); + for (const listener of listeners) { + listener.apply(this, packet.data); + } + } + } } - /** - * Expose `Backoff`. - */ - - var backo2 = Backoff; - /** * Initialize backoff timer with `opts`. * @@ -3307,74 +3944,63 @@ * @param {Object} opts * @api public */ - function Backoff(opts) { - opts = opts || {}; - this.ms = opts.min || 100; - this.max = opts.max || 10000; - this.factor = opts.factor || 2; - this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; - this.attempts = 0; + opts = opts || {}; + this.ms = opts.min || 100; + this.max = opts.max || 10000; + this.factor = opts.factor || 2; + this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; + this.attempts = 0; } - /** * Return the backoff duration. * * @return {Number} * @api public */ - - Backoff.prototype.duration = function(){ - var ms = this.ms * Math.pow(this.factor, this.attempts++); - if (this.jitter) { - var rand = Math.random(); - var deviation = Math.floor(rand * this.jitter * ms); - ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; - } - return Math.min(ms, this.max) | 0; + Backoff.prototype.duration = function () { + var ms = this.ms * Math.pow(this.factor, this.attempts++); + if (this.jitter) { + var rand = Math.random(); + var deviation = Math.floor(rand * this.jitter * ms); + ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; + } + return Math.min(ms, this.max) | 0; }; - /** * Reset the number of attempts. * * @api public */ - - Backoff.prototype.reset = function(){ - this.attempts = 0; + Backoff.prototype.reset = function () { + this.attempts = 0; }; - /** * Set the minimum duration * * @api public */ - - Backoff.prototype.setMin = function(min){ - this.ms = min; + Backoff.prototype.setMin = function (min) { + this.ms = min; }; - /** * Set the maximum duration * * @api public */ - - Backoff.prototype.setMax = function(max){ - this.max = max; + Backoff.prototype.setMax = function (max) { + this.max = max; }; - /** * Set the jitter * * @api public */ - - Backoff.prototype.setJitter = function(jitter){ - this.jitter = jitter; + Backoff.prototype.setJitter = function (jitter) { + this.jitter = jitter; }; - class Manager extends Emitter_1 { + class Manager extends Emitter { constructor(uri, opts) { var _a; super(); @@ -3393,7 +4019,7 @@ this.reconnectionDelay(opts.reconnectionDelay || 1000); this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000); this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5); - this.backoff = new backo2({ + this.backoff = new Backoff({ min: this.reconnectionDelay(), max: this.reconnectionDelayMax(), jitter: this.randomizationFactor(), @@ -3485,36 +4111,33 @@ self.onopen(); fn && fn(); }); - // emit `error` - const errorSub = on(socket, "error", (err) => { - self.cleanup(); - self._readyState = "closed"; + const onError = (err) => { + this.cleanup(); + this._readyState = "closed"; this.emitReserved("error", err); if (fn) { fn(err); } else { // Only do this if there is no fn to handle the error - self.maybeReconnectOnOpen(); + this.maybeReconnectOnOpen(); } - }); + }; + // emit `error` + const errorSub = on(socket, "error", onError); if (false !== this._timeout) { const timeout = this._timeout; - if (timeout === 0) { - openSubDestroy(); // prevents a race condition with the 'open' event - } // set timer const timer = this.setTimeoutFn(() => { openSubDestroy(); + onError(new Error("timeout")); socket.close(); - // @ts-ignore - socket.emit("error", new Error("timeout")); }, timeout); if (this.opts.autoUnref) { timer.unref(); } - this.subs.push(function subDestroy() { - clearTimeout(timer); + this.subs.push(() => { + this.clearTimeoutFn(timer); }); } this.subs.push(openSubDestroy); @@ -3559,7 +4182,12 @@ * @private */ ondata(data) { - this.decoder.add(data); + try { + this.decoder.add(data); + } + catch (e) { + this.onclose("parse error", e); + } } /** * Called when parser fully decodes a packet. @@ -3567,7 +4195,10 @@ * @private */ ondecoded(packet) { - this.emitReserved("packet", packet); + // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a "parse error" + nextTick(() => { + this.emitReserved("packet", packet); + }, this.setTimeoutFn); } /** * Called upon socket error. @@ -3589,6 +4220,9 @@ socket = new Socket(this, nsp, opts); this.nsps[nsp] = socket; } + else if (this._autoConnect && !socket.active) { + socket.connect(); + } return socket; } /** @@ -3637,13 +4271,7 @@ _close() { this.skipReconnect = true; this._reconnecting = false; - if ("opening" === this._readyState) { - // `onclose` will not fire because - // an open event never happened - this.cleanup(); - } - this.backoff.reset(); - this._readyState = "closed"; + this.onclose("forced close"); if (this.engine) this.engine.close(); } @@ -3660,11 +4288,11 @@ * * @private */ - onclose(reason) { + onclose(reason, description) { this.cleanup(); this.backoff.reset(); this._readyState = "closed"; - this.emitReserved("close", reason); + this.emitReserved("close", reason, description); if (this._reconnection && !this.skipReconnect) { this.reconnect(); } @@ -3707,8 +4335,8 @@ if (this.opts.autoUnref) { timer.unref(); } - this.subs.push(function subDestroy() { - clearTimeout(timer); + this.subs.push(() => { + this.clearTimeoutFn(timer); }); } } @@ -4026,13 +4654,6 @@ })(HDFixStage || (HDFixStage = {})); class HDFix { - constructor(data) { - this.coordinatesRegex = /([0-9]{2})([NS])([0-9])([0-9]{2})([WE])/g; - this.coordinatesShorthandOverRegex = /([0-9]{2}([NSE])([0-9]{2}))/g; - this.coordinatesShorthandUnderRegex = /([0-9]{2}([0-9]{2})([NSE]))/g; - this.rawData = data; - this.parse(); - } get ident() { return this._ident; } @@ -4053,6 +4674,13 @@ } return false; } + constructor(data) { + this.coordinatesRegex = /([0-9]{2})([NS])([0-9])([0-9]{2})([WE])/g; + this.coordinatesShorthandOverRegex = /([0-9]{2}([NSE])([0-9]{2}))/g; + this.coordinatesShorthandUnderRegex = /([0-9]{2}([0-9]{2})([NSE]))/g; + this.rawData = data; + this.parse(); + } parse() { this._originalIdent = this.rawData.ident; this._ident = this.convertIdent(this.rawData.ident); @@ -4195,22 +4823,6 @@ } class HDWeights { - constructor(data) { - const weights = data.weights; - this._operatingEmpty = Number(weights.oew); - this._maxTakeoff = Number(weights.max_tow); - this._maxTakeoffStruct = Number(weights.max_tow_struct); - this._maxZeroFuel = Number(weights.max_zfw); - this._maxLanding = Number(weights.max_ldw); - this._estimatedTakeoff = Number(weights.est_tow); - this._estimatedZeroFuel = Number(weights.est_zfw); - this._estimatedLanding = Number(weights.est_ldw); - this._estimatedRamp = Number(weights.est_ramp); - this._cargo = Number(weights.cargo); - this._paxCount = Number(weights.pax_count); - this._paxWeight = Number(weights.pax_weight); - this._payload = Number(weights.payload); - } get payload() { return this._payload; } @@ -4250,25 +4862,25 @@ get operatingEmpty() { return this._operatingEmpty; } + constructor(data) { + const weights = data.weights; + this._operatingEmpty = Number(weights.oew); + this._maxTakeoff = Number(weights.max_tow); + this._maxTakeoffStruct = Number(weights.max_tow_struct); + this._maxZeroFuel = Number(weights.max_zfw); + this._maxLanding = Number(weights.max_ldw); + this._estimatedTakeoff = Number(weights.est_tow); + this._estimatedZeroFuel = Number(weights.est_zfw); + this._estimatedLanding = Number(weights.est_ldw); + this._estimatedRamp = Number(weights.est_ramp); + this._cargo = Number(weights.cargo); + this._paxCount = Number(weights.pax_count); + this._paxWeight = Number(weights.pax_weight); + this._payload = Number(weights.payload); + } } class HDFuel { - constructor(data) { - const fuel = data.fuel; - this._taxi = fuel.taxi; - this._enrouteBurn = fuel.enroute_burn; - this._contingency = fuel.contingency; - this._alternateBurn = fuel.alternate_burn; - this._reserve = fuel.reserve; - this._etops = fuel.etops; - this._extra = fuel.extra; - this._minTakeoff = fuel.min_takeoff; - this._plannedTakeoff = fuel.plan_takeoff; - this._plannedRamp = fuel.plan_ramp; - this._plannedLanding = fuel.plan_landing; - this._averageFlow = fuel.avg_fuel_flow; - this._maxTanks = fuel.max_tanks; - } get taxi() { return this._taxi; } @@ -4347,6 +4959,22 @@ set etops(value) { this._etops = value; } + constructor(data) { + const fuel = data.fuel; + this._taxi = fuel.taxi; + this._enrouteBurn = fuel.enroute_burn; + this._contingency = fuel.contingency; + this._alternateBurn = fuel.alternate_burn; + this._reserve = fuel.reserve; + this._etops = fuel.etops; + this._extra = fuel.extra; + this._minTakeoff = fuel.min_takeoff; + this._plannedTakeoff = fuel.plan_takeoff; + this._plannedRamp = fuel.plan_ramp; + this._plannedLanding = fuel.plan_landing; + this._averageFlow = fuel.avg_fuel_flow; + this._maxTanks = fuel.max_tanks; + } } class SimBriefNavlogParser { @@ -5556,22 +6184,6 @@ } class SpeedDirector { - constructor(speedManager) { - this._speedManager = speedManager; - /** - * TODO: FMC should be removed. All speed related values should be stored directly in SpeedDirector - * @private - */ - this._commandedSpeedType = undefined; - this._lastCommandedSpeedType = undefined; - this._speedPhase = undefined; - this._lastSpeedPhase = undefined; - this._machMode = undefined; - this._lastMachMode = undefined; - this._lastSpeed = undefined; - this._speedCheck = undefined; - this.Init(); - } get descentSpeedEcon() { return this._descentSpeedEcon; } @@ -5638,6 +6250,22 @@ set accelerationSpeedRestriction(value) { this._accelerationSpeedRestriction = value; } + constructor(speedManager) { + this._speedManager = speedManager; + /** + * TODO: FMC should be removed. All speed related values should be stored directly in SpeedDirector + * @private + */ + this._commandedSpeedType = undefined; + this._lastCommandedSpeedType = undefined; + this._speedPhase = undefined; + this._lastSpeedPhase = undefined; + this._machMode = undefined; + this._lastMachMode = undefined; + this._lastSpeed = undefined; + this._speedCheck = undefined; + this.Init(); + } Init() { this._updateAltitude(); this._updateLastSpeed(); @@ -5935,6 +6563,9 @@ })(HeavyDivision || (HeavyDivision = {})); class BaseFMC extends BaseAirliners { + get speedManager() { + return this._speedManager; + } constructor() { super(); this.defaultInputErrorMessage = 'INVALID ENTRY'; @@ -6030,9 +6661,6 @@ this.refreshPageCallback = undefined; this.pageUpdate = undefined; } - get speedManager() { - return this._speedManager; - } static approachTypeStringToIndex(approachType) { approachType = approachType.trim(); let index = BaseFMC.approachTypes.indexOf(approachType); @@ -8631,14 +9259,6 @@ BaseFMC._AvailableKeys = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; class PreFlightDataHolder { - constructor() { - this._completed = false; - this._finished = false; - this._thrustLim = new ThrustLimPagePreFlightCheck(); - this._takeOff = new TakeOffPagePreFlightCheck(); - this._perfInit = new PerfInitPagePreFlightCheck(); - this._route = new RoutePagePreFlightCheck(); - } /** * ThrustLim page pre flight check/holder * @returns {ThrustLimPagePreFlightCheck} @@ -8693,12 +9313,16 @@ set finished(value) { this._finished = value; } - } - class ThrustLimPagePreFlightCheck { constructor() { this._completed = false; - this._assumedTemperature = false; + this._finished = false; + this._thrustLim = new ThrustLimPagePreFlightCheck(); + this._takeOff = new TakeOffPagePreFlightCheck(); + this._perfInit = new PerfInitPagePreFlightCheck(); + this._route = new RoutePagePreFlightCheck(); } + } + class ThrustLimPagePreFlightCheck { /** * Is thrust page preflight completed? * @returns {boolean} @@ -8726,15 +9350,12 @@ set assumedTemperature(value) { this._assumedTemperature = value; } - } - class TakeOffPagePreFlightCheck { constructor() { this._completed = false; - this._flaps = false; - this._v1 = false; - this._vR = false; - this._v2 = false; + this._assumedTemperature = false; } + } + class TakeOffPagePreFlightCheck { /** * Is takeoff page preflight completed? * @returns {boolean} @@ -8800,14 +9421,15 @@ set v2(value) { this._v2 = value; } - } - class PerfInitPagePreFlightCheck { constructor() { this._completed = false; - this._cruiseAltitude = false; - this._costIndex = false; - this._reserves = false; + this._flaps = false; + this._v1 = false; + this._vR = false; + this._v2 = false; } + } + class PerfInitPagePreFlightCheck { /** * Is PerfInit page preflight completed? * @returns {boolean} @@ -8860,14 +9482,14 @@ set reserves(value) { this._reserves = value; } - } - class RoutePagePreFlightCheck { constructor() { this._completed = false; - this._origin = false; - this._destination = false; - this._activated = false; + this._cruiseAltitude = false; + this._costIndex = false; + this._reserves = false; } + } + class RoutePagePreFlightCheck { /** * Is PerfInit page preflight completed? * @returns {boolean} @@ -8920,69 +9542,24 @@ set activated(value) { this._activated = value; } - } - - class FMCDataHolder { constructor() { - this._preFlightDataHolder = new PreFlightDataHolder(); - } - get preFlightDataHolder() { - return this._preFlightDataHolder; + this._completed = false; + this._origin = false; + this._destination = false; + this._activated = false; } } - class Boeing_FMC extends BaseFMC { - constructor() { - super(); - this._forceNextAltitudeUpdate = false; - this._lastTargetAirspeed = 200; - this._isLNAVActive = false; - this._pendingLNAVActivation = false; - this._isVNAVActive = false; - this._pendingVNAVActivation = false; - this._isFLCHActive = false; - this._pendingFLCHActivation = false; - this._isSPDActive = false; - this._pendingSPDActivation = false; - this._isSpeedInterventionActive = false; - this._isHeadingHoldActive = false; - this._headingHoldValue = 0; - this._pendingHeadingSelActivation = false; - this._isVSpeedActive = false; - this._isAltitudeHoldActive = false; - this._altitudeHoldValue = 0; - this._onAltitudeHoldDeactivate = EmptyCallback.Void; - this._isRouteActivated = false; - this._fpHasChanged = false; - this._activatingDirectTo = false; - /** - * Reason of this property is wrong activeRoute function and wrong using of _isRouteActivated property. - * Normal behavior is that once route is activated by ACTIVATE prompt and EXEC all others modifications of route - * automatically activate EXEC for direct executing and storing the changes in FMC. - * When route is not activated by ACTIVATE prompt any changes do not activate EXEC and only way to activate - * the EXEC is use ACTIVATE prompt - * - * ASOBO behavior: - * _isRouteActivated is used as flag for awaiting changes for execution in a route and as EXEC illumination FLAG. - * - * STATES OF ROUTE: - * - * NOT ACTIVATED -> Route is not activated -> ACTIVATE prompt not pushed and EXECUTED, changes in route do not illuminate EXEC - * ACTIVATED -> Route is activated -> ACTIVATE prompt pushed and EXECUTED, changes in route illuminate EXEC - * MODIFIED -> Route is modified -> ACTIVATED and changes awaiting for execution (EXEC illuminating) - * - * This property holds ACTIVATED / NOT ACTIVATED state because of the misuse of _isRouteActivated in default Asobo implementation - * @type {boolean} - * @private - */ - this._isMainRouteActivated = false; - this.dataHolder = new FMCDataHolder(); - this.messageManager = new FMCMessagesManager(); - this.onExec = undefined; - this.onExecPage = undefined; - this.onExecDefault = undefined; - this._navModeSelector = undefined; + class FMCDataHolder { + get preFlightDataHolder() { + return this._preFlightDataHolder; + } + constructor() { + this._preFlightDataHolder = new PreFlightDataHolder(); } + } + + class Boeing_FMC extends BaseFMC { setTakeOffFlap(s) { let value = Number.parseInt(s); if (isFinite(value)) { @@ -9088,6 +9665,57 @@ this._isSPDActive = false; this._pendingSPDActivation = false; } + constructor() { + super(); + this._forceNextAltitudeUpdate = false; + this._lastTargetAirspeed = 200; + this._isLNAVActive = false; + this._pendingLNAVActivation = false; + this._isVNAVActive = false; + this._pendingVNAVActivation = false; + this._isFLCHActive = false; + this._pendingFLCHActivation = false; + this._isSPDActive = false; + this._pendingSPDActivation = false; + this._isSpeedInterventionActive = false; + this._isHeadingHoldActive = false; + this._headingHoldValue = 0; + this._pendingHeadingSelActivation = false; + this._isVSpeedActive = false; + this._isAltitudeHoldActive = false; + this._altitudeHoldValue = 0; + this._onAltitudeHoldDeactivate = EmptyCallback.Void; + this._isRouteActivated = false; + this._fpHasChanged = false; + this._activatingDirectTo = false; + /** + * Reason of this property is wrong activeRoute function and wrong using of _isRouteActivated property. + * Normal behavior is that once route is activated by ACTIVATE prompt and EXEC all others modifications of route + * automatically activate EXEC for direct executing and storing the changes in FMC. + * When route is not activated by ACTIVATE prompt any changes do not activate EXEC and only way to activate + * the EXEC is use ACTIVATE prompt + * + * ASOBO behavior: + * _isRouteActivated is used as flag for awaiting changes for execution in a route and as EXEC illumination FLAG. + * + * STATES OF ROUTE: + * + * NOT ACTIVATED -> Route is not activated -> ACTIVATE prompt not pushed and EXECUTED, changes in route do not illuminate EXEC + * ACTIVATED -> Route is activated -> ACTIVATE prompt pushed and EXECUTED, changes in route illuminate EXEC + * MODIFIED -> Route is modified -> ACTIVATED and changes awaiting for execution (EXEC illuminating) + * + * This property holds ACTIVATED / NOT ACTIVATED state because of the misuse of _isRouteActivated in default Asobo implementation + * @type {boolean} + * @private + */ + this._isMainRouteActivated = false; + this.dataHolder = new FMCDataHolder(); + this.messageManager = new FMCMessagesManager(); + this.onExec = undefined; + this.onExecPage = undefined; + this.onExecDefault = undefined; + this._navModeSelector = undefined; + } Init() { super.Init(); this.maxCruiseFL = 450; @@ -16205,12 +16833,6 @@ } class B787_10_FMC_PayloadManagerPage { - constructor(fmc) { - this.fmc = fmc; - this.tankPriorityValues = []; - this.payloadValues = []; - this.init(); - } static get tankCapacity() { return { 'CENTER': 22244, @@ -16257,6 +16879,12 @@ static get getMinCenterOfGravity() { return 0; } + constructor(fmc) { + this.fmc = fmc; + this.tankPriorityValues = []; + this.payloadValues = []; + this.init(); + } init() { this.tankPriorityValues = [ { @@ -16656,10 +17284,18 @@ this.fmc.cleanUpPage(); let simBriefUsernameCell = this.getSimBriefUsernameCell(); let simBriefUserIdCell = this.getSimBriefUserIdCell(); - let routeOnlyCell = (HeavyDivision.SimBrief.importRouteOnly() ? '<[color=green]YES[/color]←→[size=small]NO[/size]' : '<[size=small]YES[/size]←→[color=green]NO[/color]'); - let withSidCell = (HeavyDivision.SimBrief.importSid() ? '<[color=green]YES[/color]←→[size=small]NO[/size]' : '<[size=small]YES[/size]←→[color=green]NO[/color]'); - let withStarCell = (HeavyDivision.SimBrief.importStar() ? '<[color=green]YES[/color]←→[size=small]NO[/size]' : '<[size=small]YES[/size]←→[color=green]NO[/color]'); - let importStrategyCell = (HeavyDivision.SimBrief.importStrategy() === 'INGAME' ? '<[color=green]INGAME[/color]←→[size=small]SB[/size]' : '<[size=small]INGAME[/size]←→[color=green]SB[/color]'); + let routeOnlyCell = (HeavyDivision.SimBrief.importRouteOnly() ? + `${this.fmc.resizeContent(this.fmc.colorizeContent(' { - HDLogger.log('B787_10_FMC.onInputAircraftSpecific input = \'' + input + '\'', Level.info); - if (input === 'LEGS') { - if (this.onLegs) { - this.onLegs(); - } - return true; - } - if (input === 'RTE') { - if (this.onRte) { - this.onRte(); - } - return true; - } - if (input === 'VNAV') { - if (this.onVNAV) { - this.onVNAV(); - } - return true; - } - return false; - }; - this._registered = false; - this._leftKeyElements = []; - this._rightKeyElements = []; - this.selectedApproachFlap = NaN; - this.selectedApproachSpeed = NaN; - this._climbN1Table = [ - [91, 91.6, 92.9, 94.1, 96.1, 97.6, 99.8, 101.2, 101.5, 100.7], - [92.8, 93.2, 93.8, 93.1, 94.7, 96.2, 98.3, 99.7, 100.0, 99.2], - [94.2, 95.0, 95.4, 94.8, 95.0, 94.9, 96.7, 98.2, 98.4, 97.7], - [92.7, 95.5, 97.0, 96.4, 96.6, 96.5, 95.2, 96.6, 96.8, 96.1], - [91.2, 93.9, 96.6, 97.9, 98.2, 98.0, 96.9, 95.5, 95.2, 94.5], - [90.4, 93.1, 95.8, 97.3, 99.0, 98.9, 97.8, 96.5, 95.9, 95.2], - [89.6, 92.3, 95.0, 96.5, 98.7, 99.7, 98.7, 97.6, 97.0, 96.3], - [88.8, 91.5, 94.1, 95.6, 97.9, 99.6, 99.7, 98.6, 98.0, 97.3], - [88.0, 90.7, 93.3, 94.8, 97.0, 98.7, 100.8, 99.6, 99.0, 98.3], - [87.2, 89.8, 92.4, 93.9, 96.1, 97.8, 101.1, 100.8, 100.0, 99.3], - [86.4, 89.0, 91.5, 93.0, 95.2, 96.8, 100.2, 101.4, 100.9, 100.3], - [85.5, 88.1, 90.7, 92.1, 94.3, 95.9, 99.2, 101.0, 100.9, 100.8], - [84.7, 87.3, 89.8, 91.2, 93.4, 95.0, 98.3, 100.0, 99.9, 99.9], - [83.9, 86.4, 88.9, 90.3, 92.4, 94.0, 97.3, 99.0, 98.9, 98.9], - [83.0, 85.5, 88.0, 89.4, 91.5, 93.1, 96.3, 98.0, 97.9, 97.9], - [82.2, 84.7, 87.1, 88.5, 90.6, 92.1, 95.3, 97.0, 96.9, 96.8], - [81.3, 83.8, 86.2, 87.5, 89.6, 91.2, 94.3, 96.0, 95.9, 95.8] - ]; - this._climbN1TempRow = [60, 50, 40, 30, 20, 15, 10, 5, 0, -5, -10, -15, -20, -25, -30, -35, -40]; - this._takeOffN1Table = [ - [89.7, 90.1, 90.6, 90.6, 90.6, 90.5, 90.4, 90.4, 90.3, 90.3, 89.7, 89.2, 88.5], - [92.5, 93, 93.4, 93.4, 93.4, 93.3, 93.3, 93.2, 93.2, 93.2, 92.6, 92, 91.4], - [93.9, 94.4, 94.8, 94.8, 94.8, 94.7, 94.6, 94.6, 94.6, 94.5, 94, 93.4, 92.8], - [95.2, 95.7, 96.2, 96.1, 96.1, 96, 96, 95.9, 95.9, 95.9, 95.3, 94.7, 94.2], - [96.5, 97, 97.5, 97.4, 97.3, 97.3, 97.3, 97.2, 97.2, 97.2, 96.6, 96, 95.5], - [97.5, 98.2, 98.9, 98.7, 98.5, 98.4, 98.4, 98.5, 98.4, 98.4, 97.9, 97.3, 96.7], - [97.8, 98.9, 99.8, 99.7, 99.7, 99.5, 99.3, 99.3, 99.2, 99.3, 8.8, 98.4, 98], - [97.2, 98.8, 100.4, 100.4, 100.4, 100.4, 100.4, 100.1, 100, 99.9, 99.5, 99.2, 98.8], - [96.4, 98, 99.6, 100.1, 100.7, 101.1, 101.1, 101.1, 101.7, 101.3, 100.3, 99.9, 99.5], - [95.6, 97.2, 98.8, 99.3, 99.9, 100.5, 101.1, 101.8, 102.2, 102.4, 102.1, 101.5, 100.3], - [94.8, 96.3, 97.9, 98.4, 99, 99.6, 1012, 101, 101.7, 102.5, 102.5, 102.2, 1011], - [93.9, 95.5, 97.1, 97.6, 981, 98.8, 99.4, 100.1, 100.8, 101.6, 101.8, 102, 102.3], - [93.1, 94.7, 96.2, 96.7, 97.3, 97.9, 98.5, 991, 99.9, 100.7, 100.9, 101.2, 101.4], - [92.3, 93.8, 95.3, 95.8, 96.4, 97, 97.6, 98.3, 99.1, 99.8, 100, 100.3, 100.6], - [90.6, 92.1, 93.6, 94.1, 94.6, 95.2, 95.9, 96.6, 97.3, 98, 8.3, 98.5, 98.8], - [88.8, 90.3, 91.8, 92.3, 92.8, 93.4, 94.1, 94.8, 95.5, 96.3, 96.5, 96.7, 97], - [87.0, 815, 89.9, 90.4, 91, 91.6, 92.3, 93, 93.7, 94.4, 94.7, 94.9, 95.2], - [85.2, 86.7, 88.1, 88.6, 89.1, 89.8, 90.5, 91.2, 91.9, 92.6, 92.8, 93.1, 93.4], - [83.4, 84.8, 861, 86.7, 87.3, 87.9, 88.6, 89.3, 90, 90.7, 91, 91.2, 91.5] - ]; - this._takeOffN1TempRow = [70, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 5, 0, -10, -20, -30, -40, -50]; - this._thrustTakeOffMode = 1; - this._thrustCLBMode = 1; - this._thrustTakeOffTemp = NaN; - this._lastUpdateAPTime = NaN; - this.refreshFlightPlanCooldown = 0; - this.updateAutopilotCooldown = 0; - this._hasSwitchedToHoldOnTakeOff = false; - this._previousApMasterStatus = false; - this._apMasterStatus = false; - this._apHasDeactivated = false; - this._apHasActivated = false; - this._previousAThrStatus = false; - this._aThrStatus = false; - this._aThrHasActivated = false; - this._hasReachedTopOfDescent = false; - this._apCooldown = 500; - this._prepareDefaultValues(); - this._overrideDefaultAsoboValues(); - } /** * SU6 ORIGIN compatibility patch. * TODO: Should be moved to Heavy_Boeing_FMC/Boeing_FMC @@ -18272,6 +18815,99 @@ getEconCrzManagedSpeed() { return this.speedManager.getCrzManagedSpeed(this.getCostIndexFactor(), true); } + /** + * TODO: Refactor section end + */ + constructor() { + super(); + this.onInputAircraftSpecific = (input) => { + HDLogger.log('B787_10_FMC.onInputAircraftSpecific input = \'' + input + '\'', Level.info); + if (input === 'LEGS') { + if (this.onLegs) { + this.onLegs(); + } + return true; + } + if (input === 'RTE') { + if (this.onRte) { + this.onRte(); + } + return true; + } + if (input === 'VNAV') { + if (this.onVNAV) { + this.onVNAV(); + } + return true; + } + return false; + }; + this._registered = false; + this._leftKeyElements = []; + this._rightKeyElements = []; + this.selectedApproachFlap = NaN; + this.selectedApproachSpeed = NaN; + this._climbN1Table = [ + [91, 91.6, 92.9, 94.1, 96.1, 97.6, 99.8, 101.2, 101.5, 100.7], + [92.8, 93.2, 93.8, 93.1, 94.7, 96.2, 98.3, 99.7, 100.0, 99.2], + [94.2, 95.0, 95.4, 94.8, 95.0, 94.9, 96.7, 98.2, 98.4, 97.7], + [92.7, 95.5, 97.0, 96.4, 96.6, 96.5, 95.2, 96.6, 96.8, 96.1], + [91.2, 93.9, 96.6, 97.9, 98.2, 98.0, 96.9, 95.5, 95.2, 94.5], + [90.4, 93.1, 95.8, 97.3, 99.0, 98.9, 97.8, 96.5, 95.9, 95.2], + [89.6, 92.3, 95.0, 96.5, 98.7, 99.7, 98.7, 97.6, 97.0, 96.3], + [88.8, 91.5, 94.1, 95.6, 97.9, 99.6, 99.7, 98.6, 98.0, 97.3], + [88.0, 90.7, 93.3, 94.8, 97.0, 98.7, 100.8, 99.6, 99.0, 98.3], + [87.2, 89.8, 92.4, 93.9, 96.1, 97.8, 101.1, 100.8, 100.0, 99.3], + [86.4, 89.0, 91.5, 93.0, 95.2, 96.8, 100.2, 101.4, 100.9, 100.3], + [85.5, 88.1, 90.7, 92.1, 94.3, 95.9, 99.2, 101.0, 100.9, 100.8], + [84.7, 87.3, 89.8, 91.2, 93.4, 95.0, 98.3, 100.0, 99.9, 99.9], + [83.9, 86.4, 88.9, 90.3, 92.4, 94.0, 97.3, 99.0, 98.9, 98.9], + [83.0, 85.5, 88.0, 89.4, 91.5, 93.1, 96.3, 98.0, 97.9, 97.9], + [82.2, 84.7, 87.1, 88.5, 90.6, 92.1, 95.3, 97.0, 96.9, 96.8], + [81.3, 83.8, 86.2, 87.5, 89.6, 91.2, 94.3, 96.0, 95.9, 95.8] + ]; + this._climbN1TempRow = [60, 50, 40, 30, 20, 15, 10, 5, 0, -5, -10, -15, -20, -25, -30, -35, -40]; + this._takeOffN1Table = [ + [89.7, 90.1, 90.6, 90.6, 90.6, 90.5, 90.4, 90.4, 90.3, 90.3, 89.7, 89.2, 88.5], + [92.5, 93, 93.4, 93.4, 93.4, 93.3, 93.3, 93.2, 93.2, 93.2, 92.6, 92, 91.4], + [93.9, 94.4, 94.8, 94.8, 94.8, 94.7, 94.6, 94.6, 94.6, 94.5, 94, 93.4, 92.8], + [95.2, 95.7, 96.2, 96.1, 96.1, 96, 96, 95.9, 95.9, 95.9, 95.3, 94.7, 94.2], + [96.5, 97, 97.5, 97.4, 97.3, 97.3, 97.3, 97.2, 97.2, 97.2, 96.6, 96, 95.5], + [97.5, 98.2, 98.9, 98.7, 98.5, 98.4, 98.4, 98.5, 98.4, 98.4, 97.9, 97.3, 96.7], + [97.8, 98.9, 99.8, 99.7, 99.7, 99.5, 99.3, 99.3, 99.2, 99.3, 8.8, 98.4, 98], + [97.2, 98.8, 100.4, 100.4, 100.4, 100.4, 100.4, 100.1, 100, 99.9, 99.5, 99.2, 98.8], + [96.4, 98, 99.6, 100.1, 100.7, 101.1, 101.1, 101.1, 101.7, 101.3, 100.3, 99.9, 99.5], + [95.6, 97.2, 98.8, 99.3, 99.9, 100.5, 101.1, 101.8, 102.2, 102.4, 102.1, 101.5, 100.3], + [94.8, 96.3, 97.9, 98.4, 99, 99.6, 1012, 101, 101.7, 102.5, 102.5, 102.2, 1011], + [93.9, 95.5, 97.1, 97.6, 981, 98.8, 99.4, 100.1, 100.8, 101.6, 101.8, 102, 102.3], + [93.1, 94.7, 96.2, 96.7, 97.3, 97.9, 98.5, 991, 99.9, 100.7, 100.9, 101.2, 101.4], + [92.3, 93.8, 95.3, 95.8, 96.4, 97, 97.6, 98.3, 99.1, 99.8, 100, 100.3, 100.6], + [90.6, 92.1, 93.6, 94.1, 94.6, 95.2, 95.9, 96.6, 97.3, 98, 8.3, 98.5, 98.8], + [88.8, 90.3, 91.8, 92.3, 92.8, 93.4, 94.1, 94.8, 95.5, 96.3, 96.5, 96.7, 97], + [87.0, 815, 89.9, 90.4, 91, 91.6, 92.3, 93, 93.7, 94.4, 94.7, 94.9, 95.2], + [85.2, 86.7, 88.1, 88.6, 89.1, 89.8, 90.5, 91.2, 91.9, 92.6, 92.8, 93.1, 93.4], + [83.4, 84.8, 861, 86.7, 87.3, 87.9, 88.6, 89.3, 90, 90.7, 91, 91.2, 91.5] + ]; + this._takeOffN1TempRow = [70, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 5, 0, -10, -20, -30, -40, -50]; + this._thrustTakeOffMode = 1; + this._thrustCLBMode = 1; + this._thrustTakeOffTemp = NaN; + this._lastUpdateAPTime = NaN; + this.refreshFlightPlanCooldown = 0; + this.updateAutopilotCooldown = 0; + this._hasSwitchedToHoldOnTakeOff = false; + this._previousApMasterStatus = false; + this._apMasterStatus = false; + this._apHasDeactivated = false; + this._apHasActivated = false; + this._previousAThrStatus = false; + this._aThrStatus = false; + this._aThrHasActivated = false; + this._hasReachedTopOfDescent = false; + this._apCooldown = 500; + this._prepareDefaultValues(); + this._overrideDefaultAsoboValues(); + } _overrideDefaultAsoboValues() { /** * Flaps handling diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.html similarity index 76% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.html index 9e4cc782..50977bf3 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.html @@ -57,21 +57,21 @@ + import-script="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CommonMFD.js"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.html"> + import-template="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.html"> - + diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/B787_10_MFD.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/B787_10_MFD.js diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_AMBER.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_AMBER.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_AMBER.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_AMBER.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_MAGENTA.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_MAGENTA.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_MAGENTA.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_MAGENTA.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_WHITE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_WHITE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_CSTR_WHITE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_CSTR_WHITE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_BLUE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_LEVEL_OFF_BLUE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_BLUE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_LEVEL_OFF_BLUE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_MAGENTA.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_LEVEL_OFF_MAGENTA.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_LEVEL_OFF_MAGENTA.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_LEVEL_OFF_MAGENTA.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT7.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT7.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT7.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT7.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT8.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT8.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT8.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT8.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_HELIPORT_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_HELIPORT_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_HELIPORT_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_HELIPORT_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_NON_SERVICED_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_NON_SERVICED_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_NON_SERVICED_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_NON_SERVICED_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SEAPLANE_CIV_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SEAPLANE_CIV_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SEAPLANE_CIV_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SEAPLANE_CIV_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SERVICED_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SERVICED_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SERVICED_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_NON_TOWERED_SERVICED_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_PRIVATE_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_PRIVATE_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_PRIVATE_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_PRIVATE_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_NON_SERVICED_BLUE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_NON_SERVICED_BLUE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_NON_SERVICED_BLUE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_NON_SERVICED_BLUE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SEAPLANE_CIV_BLUE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SEAPLANE_CIV_BLUE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SEAPLANE_CIV_BLUE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SEAPLANE_CIV_BLUE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SERVICED_BLUE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SERVICED_BLUE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SERVICED_BLUE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_TOWERED_SERVICED_BLUE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_UNKNOWN_PINK.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_UNKNOWN_PINK.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AIRPORT_UNKNOWN_PINK.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AIRPORT_UNKNOWN_PINK.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AUX.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AUX.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_AUX.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_AUX.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_ACTIVE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_INTERSECTION_FLIGHTPLAN_ACTIVE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_NDB_WAYPOINT.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_NDB_WAYPOINT.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_NDB_WAYPOINT.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_NDB_WAYPOINT.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_NDB_WAYPOINT.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_A320.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_A320.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_A320.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_A320.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_A320.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747_02.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747_02.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747_02.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_PLANE_B747_02.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_PLANE_B747_02.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_OTHER_A320.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_OTHER_A320.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_OTHER_A320.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_OTHER_A320.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_PROX_A320.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_PROX_A320.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_PROX_A320.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_PROX_A320.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_RA_A320.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_RA_A320.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_RA_A320.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_RA_A320.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_TA_A320.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_TA_A320.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TCAS_TA_A320.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TCAS_TA_A320.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOC.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOC.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOC.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOC.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOC.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOD.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOD.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOD.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_TOD.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_TOD.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DISPLAYED.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DISPLAYED.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DISPLAYED.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DISPLAYED.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DISPLAYED.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_DISPLAYED.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_DME_FLIGHTPLAN_ACTIVE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_FLIGHTPLAN_ACTIVE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_DISPLAYED.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_DISPLAYED.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_DISPLAYED.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_DISPLAYED.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_TACAN_FLIGHTPLAN_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN_ACTIVE.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN_ACTIVE.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN_ACTIVE.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_MAP_VOR_VORTAC_FLIGHTPLAN_ACTIVE.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_BLUE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_TOP_DSCNT_BLUE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_BLUE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_TOP_DSCNT_BLUE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_WHITE.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_TOP_DSCNT_WHITE.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/ICON_TOP_DSCNT_WHITE.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/ICON_TOP_DSCNT_WHITE.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_FLIGHTPLAN.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_NON_FLIGHTPLAN.svg diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.png b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.png similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.png rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.png diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.svg b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.svg similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.svg rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/WAYPOINT_TO_FLIGHTPLAN.svg diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.css new file mode 100644 index 00000000..c49a13b6 --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.css @@ -0,0 +1,87 @@ +:root { + --bodyHeightScale: 1; +} + +@keyframes TemporaryShow { + 0%, 100% { + visibility: visible; + } +} +@keyframes TemporaryHide { + 0%, 100% { + visibility: hidden; + } +} +html { + height: 100%; + width: 100%; + overflow: hidden; +} +html body { + -webkit-user-select: none; + font-family: var(--font); + font-size: calc(var(--viewportHeightRatio) * (36px / 21.6) * var(--currentPageHeight) / 100 ); + color: white; + height: 100%; + width: 100%; + margin: 0; + padding: 0; +} + +#highlight { + position: absolute; + height: 100%; + width: 100%; + z-index: 10; + pointer-events: none; +} + +#Electricity { + width: 100%; + height: 100%; +} +#Electricity[state=off] { + display: none; +} +:root { + --eicasWhite: white; + --eicasBlack: black; + --eicasDarkGrey: rgb(50, 50, 50); + --eicasLightGrey: rgb(150, 150, 150); + --eicasBlue: rgb(0, 150, 150); + --eicasGreen: green; + --eicasOrange: rgb(219, 114, 0); + --eicasRed: red; + --eicasMagenta: magenta; +} + +b787-10-cdu-element { + position: absolute; + left: 0%; + top: 0%; + width: 100%; + height: 100%; + background-color: black; +} +b787-10-cdu-element #title { + color: white; + font-size: 35px; +} +b787-10-cdu-element[border=left] #Borders { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-left: 2px inset white; +} +b787-10-cdu-element[border=right] #Borders { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-right: 2px inset white; +} + +/*# sourceMappingURL=B787_10_CDU.css.map */ diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.html new file mode 100644 index 00000000..220d6dcb --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.html @@ -0,0 +1,8 @@ + + + + + diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.js new file mode 100644 index 00000000..b9cf195e --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CDU.js @@ -0,0 +1,14 @@ +class B787_10_CDU extends B787_10_CommonMFD.MFDTemplateElement { + get templateID() { return "B787_10_CDU_Template"; } + get pageIdentifier() { return MFDPageType.CDU; } + initChild() { + } + updateChild(_deltaTime) { + } + onEvent(_event) { + } + setGPS(_gps) { + } +} +customElements.define("b787-10-cdu-element", B787_10_CDU); +//# sourceMappingURL=B787_10_CDU.js.map \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.html similarity index 98% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.html index 0b4c0b44..42238cb2 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.html @@ -165,4 +165,4 @@ + import-script="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.js"> diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_CHKL.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CHKL.js diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.css new file mode 100644 index 00000000..1d2306e9 --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.css @@ -0,0 +1,87 @@ +:root { + --bodyHeightScale: 1; +} + +@keyframes TemporaryShow { + 0%, 100% { + visibility: visible; + } +} +@keyframes TemporaryHide { + 0%, 100% { + visibility: hidden; + } +} +html { + height: 100%; + width: 100%; + overflow: hidden; +} +html body { + -webkit-user-select: none; + font-family: var(--font); + font-size: calc(var(--viewportHeightRatio) * (36px / 21.6) * var(--currentPageHeight) / 100 ); + color: white; + height: 100%; + width: 100%; + margin: 0; + padding: 0; +} + +#highlight { + position: absolute; + height: 100%; + width: 100%; + z-index: 10; + pointer-events: none; +} + +#Electricity { + width: 100%; + height: 100%; +} +#Electricity[state=off] { + display: none; +} +:root { + --eicasWhite: white; + --eicasBlack: black; + --eicasDarkGrey: rgb(50, 50, 50); + --eicasLightGrey: rgb(150, 150, 150); + --eicasBlue: rgb(0, 150, 150); + --eicasGreen: green; + --eicasOrange: rgb(219, 114, 0); + --eicasRed: red; + --eicasMagenta: magenta; +} + +b787-10-com-element { + position: absolute; + left: 0%; + top: 0%; + width: 100%; + height: 100%; + background-color: black; +} +b787-10-com-element #title { + color: white; + font-size: 35px; +} +b787-10-com-element[border=left] #Borders { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-left: 2px inset white; +} +b787-10-com-element[border=right] #Borders { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-right: 2px inset white; +} + +/*# sourceMappingURL=B787_10_COM.css.map */ diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.html new file mode 100644 index 00000000..19afb854 --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.html @@ -0,0 +1,8 @@ + + + + + diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.js new file mode 100644 index 00000000..8e28555f --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_COM.js @@ -0,0 +1,14 @@ +class B787_10_COM extends B787_10_CommonMFD.MFDTemplateElement { + get templateID() { return "B787_10_COM_Template"; } + get pageIdentifier() { return MFDPageType.COMM; } + initChild() { + } + updateChild(_deltaTime) { + } + onEvent(_event) { + } + setGPS(_gps) { + } +} +customElements.define("b787-10-com-element", B787_10_COM); +//# sourceMappingURL=B787_10_COM.js.map \ No newline at end of file diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CommonMFD.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CommonMFD.js new file mode 100644 index 00000000..9af7e2f6 --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_CommonMFD.js @@ -0,0 +1,42 @@ +var B787_10_CommonMFD; +(function (B787_10_CommonMFD) { + class MFDTemplateElement extends TemplateElement { + constructor() { + super(); + this.initialised = false; + this.visible = false; + } + connectedCallback() { + super.connectedCallback(); + TemplateElement.call(this, this.init.bind(this)); + } + init() { + this.initChild(); + this.initialised = true; + } + show(_xPercent, _widthPercent) { + this.style.left = _xPercent + "%"; + this.style.width = _widthPercent + "%"; + diffAndSetStyle(this, StyleProperty.display, "block"); + if (_widthPercent < 55 && _xPercent < 5) { + diffAndSetAttribute(this, "border", "right"); + } + else { + diffAndSetAttribute(this, "border", ""); + } + this.visible = true; + } + hide() { + diffAndSetStyle(this, StyleProperty.display, "none"); + this.visible = false; + } + update(_deltaTime) { + if (this.initialised && this.visible) { + this.updateChild(_deltaTime); + } + } + isVisible() { return this.visible; } + } + B787_10_CommonMFD.MFDTemplateElement = MFDTemplateElement; +})(B787_10_CommonMFD || (B787_10_CommonMFD = {})); +//# sourceMappingURL=B787_10_CommonMFD.js.map \ No newline at end of file diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.html similarity index 98% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.html index 7f7f734b..e59bc903 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.html @@ -240,4 +240,4 @@ + import-script="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.js"> diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_EICAS.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_EICAS.js diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.html similarity index 95% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.html index 1a97ae20..eafdf283 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.html @@ -38,4 +38,4 @@ + import-script="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.js"> diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_INFO.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_INFO.js diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.html similarity index 98% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.html index 5e61b91d..1c8e342d 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.html @@ -7,7 +7,7 @@
+ config-path="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/">
@@ -172,4 +172,4 @@
- + diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_ND.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_ND.js diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.html similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.html index 4bb023d9..4cc05299 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.html @@ -1271,4 +1271,4 @@ + import-script="/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.js"> diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.js similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Pages/B787_10_SYS.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Pages/B787_10_SYS.js diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/mapConfig.json b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/mapConfig.json similarity index 97% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/mapConfig.json rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/mapConfig.json index d0fede7a..1a9ef4d1 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/mapConfig.json +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/mapConfig.json @@ -38,7 +38,7 @@ "airplaneIcon1": "ICON_MAP_PLANE_B747", "airplaneIcon2": "ICON_MAP_PLANE_B747_02", "airplaneIcon3": "ICON_MAP_PLANE", - "imagesDir": "/Pages/VCockpit/Instruments/Airliners/B787_10/MFD/Images/", + "imagesDir": "/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/MFD/Images/", "runwayFillColor": "white", "runwayStrokeColor": "gray", "runwayStrokeWidth": 3, diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.css similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.css index 001d06be..a75ba768 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.css +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.css @@ -81,7 +81,7 @@ b787-10-pfd-element { width: 100%; height: 100%; display: block; - background-color: black; + background-color: rgba(0,0,0,0); font-family: Roboto-Bold; overflow: hidden; z-index: 0; @@ -112,6 +112,7 @@ b787-10-pfd-element #MainFrame { } b787-10-pfd-element #LeftDisplay { + opacity: 0; transform: rotateX(0); flex: 0 0 33%; /* width: 33%; */ @@ -209,6 +210,7 @@ b787-10-pfd-element #RightDisplay { } b787-10-pfd-element #RightDisplay > .top { + visibility: hidden; transform: rotateX(0); position: relative; flex: 0 0 65%; @@ -295,7 +297,7 @@ b787-10-pfd-element #RightDisplay > .bottom { transform: rotateX(0); position: relative; flex: 0 0 35%; - background: black; + background: rgba(0,0,0,0); overflow: hidden; } diff --git a/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.html new file mode 100644 index 00000000..ef40559c --- /dev/null +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.js similarity index 99% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.js index c159bce3..a922e12d 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/PFD/B787_10_PFD.js +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/PFD/B787_10_PFD.js @@ -62,19 +62,9 @@ class B787_10_PFD_MainPage extends NavSystemPage { this._debugShowConstraints = false; this.map = new B787_10_PFD_Map(); this.compass = new B787_10_PFD_Compass(); - this.plane = new B787_10_PFD_PlaneInfo(); - this.day = new B787_10_PFD_DayInfo(); this.element = new NavSystemElementGroup([ - new B787_10_PFD_Attitude(), - new B787_10_PFD_VSpeed(), - new B787_10_PFD_Airspeed(), - new B787_10_PFD_Altimeter(), - new B787_10_PFD_NavStatus(), - new B787_10_PFD_ILS(), this.map, this.compass, - this.plane, - this.day ]); } @@ -114,8 +104,8 @@ class B787_10_PFD_MainPage extends NavSystemPage { onUpdate(_deltaTime) { super.onUpdate(_deltaTime); - this.extendHtmlElementsWithIrsState(); - this.isIRSAligned(); + //this.extendHtmlElementsWithIrsState(); + //this.isIRSAligned(); } onEvent(_event) { diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.css b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.css similarity index 100% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.css rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.css diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.html b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.html similarity index 98% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.html rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.html index 9d149eec..02fde940 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.html +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.html @@ -58,4 +58,4 @@ - + diff --git a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.js b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.js similarity index 98% rename from html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.js rename to src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.js index bfc91f40..49930eb6 100644 --- a/html_ui/Pages/VCockpit/Instruments/Airliners/B787_10/SAI/B787_10_SAI.js +++ b/src/base/hd-aircraft-b78x/html_ui/Pages/VCockpit/Instruments/Airliners/Heavy-Division-B78XH-mod/SAI/B787_10_SAI.js @@ -21,6 +21,14 @@ class B787_10_SAI extends BaseAirliners { if (this.B78XHSystems) { this.B78XHSystems.update(_deltaTime); } + + const stallSpeed = Simplane.getStallSpeed(); + const stallProtectionMinSpeed = Simplane.getStallProtectionMinSpeed(); + const stallProtectionMaxSpeed = Simplane.getStallProtectionMaxSpeed(); + + SimVar.SetSimVarValue('L:B78XH_L_TRANSFER_PROTOCOL_STALL_SPEED', 'Number', stallSpeed); + SimVar.SetSimVarValue('L:B78XH_L_TRANSFER_PROTOCOL_STALL_PROTECTION_MIN_SPEED', 'Number', stallProtectionMinSpeed); + SimVar.SetSimVarValue('L:B78XH_L_TRANSFER_PROTOCOL_STALL_PROTECTION_MAX_SPEED', 'Number', stallProtectionMaxSpeed); } onFlightStart() { diff --git a/html_ui/WTPages/Autopilot/AutopilotMath.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/AutopilotMath.js similarity index 100% rename from html_ui/WTPages/Autopilot/AutopilotMath.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/AutopilotMath.js diff --git a/html_ui/WTPages/Autopilot/HoldsDirector.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/HoldsDirector.js similarity index 100% rename from html_ui/WTPages/Autopilot/HoldsDirector.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/HoldsDirector.js diff --git a/html_ui/WTPages/Autopilot/LNavDirector.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/LNavDirector.js similarity index 100% rename from html_ui/WTPages/Autopilot/LNavDirector.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/LNavDirector.js diff --git a/html_ui/WTPages/Autopilot/LocDirector.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/LocDirector.js similarity index 100% rename from html_ui/WTPages/Autopilot/LocDirector.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/LocDirector.js diff --git a/html_ui/WTPages/Autopilot/WT_BaseVnav.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/WT_BaseVnav.js similarity index 100% rename from html_ui/WTPages/Autopilot/WT_BaseVnav.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/WT_BaseVnav.js diff --git a/html_ui/WTPages/Autopilot/WT_VnavAutopilot.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/WT_VnavAutopilot.js similarity index 100% rename from html_ui/WTPages/Autopilot/WT_VnavAutopilot.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/Autopilot/WT_VnavAutopilot.js diff --git a/html_ui/WTPages/WTLibs/DataStore.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/DataStore.js similarity index 100% rename from html_ui/WTPages/WTLibs/DataStore.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/DataStore.js diff --git a/html_ui/WTPages/WTLibs/LzUtf8.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/LzUtf8.js similarity index 100% rename from html_ui/WTPages/WTLibs/LzUtf8.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/LzUtf8.js diff --git a/html_ui/WTPages/WTLibs/WT_GCMath.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/WT_GCMath.js similarity index 100% rename from html_ui/WTPages/WTLibs/WT_GCMath.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/WT_GCMath.js diff --git a/html_ui/WTPages/WTLibs/WT_SimPlaneMod.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/WT_SimPlaneMod.js similarity index 100% rename from html_ui/WTPages/WTLibs/WT_SimPlaneMod.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/WT_SimPlaneMod.js diff --git a/html_ui/WTPages/WTLibs/wtsdk.js b/src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/wtsdk.js similarity index 100% rename from html_ui/WTPages/WTLibs/wtsdk.js rename to src/base/hd-aircraft-b78x/html_ui/WTPages/WTLibs/wtsdk.js diff --git a/html_ui/plans/plan.pln b/src/base/hd-aircraft-b78x/html_ui/plans/plan.pln similarity index 100% rename from html_ui/plans/plan.pln rename to src/base/hd-aircraft-b78x/html_ui/plans/plan.pln diff --git a/manifest.json b/src/base/hd-aircraft-b78x/manifest-base.json similarity index 70% rename from manifest.json rename to src/base/hd-aircraft-b78x/manifest-base.json index ae5cf578..d229cd97 100644 --- a/manifest.json +++ b/src/base/hd-aircraft-b78x/manifest-base.json @@ -1,5 +1,6 @@ { - "package_version": "0.1.15-5", + "creator": "Asobo Studio, Heavy Division", + "package_version": "0.2.0", "dependencies": [ { "name": "asobo-aircraft-b787-10", @@ -13,13 +14,11 @@ "content_type": "AIRCRAFT", "title": "B787-10 Heavy", "manufacturer": "Boeing", - "creator": "Asobo Studio, Heavy Division", "minimum_game_version": "1.13.9", "release_notes": { - "neutral": { - "LastUpdate": "", - "OlderHistory": "" - } - }, - "total_package_size": "00000000000022398504" -} \ No newline at end of file + "neutral": { + "LastUpdate": "", + "OlderHistory": "" + } + } + } \ No newline at end of file diff --git a/src/localization/msfs/README.md b/src/localization/msfs/README.md new file mode 100644 index 00000000..0a9234c9 --- /dev/null +++ b/src/localization/msfs/README.md @@ -0,0 +1 @@ +# Localization Files \ No newline at end of file diff --git a/src/localization/msfs/de-DE.locPak b/src/localization/msfs/de-DE.locPak new file mode 100644 index 00000000..c5f67d69 --- /dev/null +++ b/src/localization/msfs/de-DE.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "de-DE", + "Strings": { + "AIRCRAFT.DESCRIPTION": "Gegen Ende der 1990er Jahre, als die Verkäufe der 767 und der 747-400 zurückgingen, begann Boeing mit der Entwicklung eines Jetliners für Fernreisen mit breitem Rumpf und Zwillingsmotoren. 2003 wurde schließlich die 7E7 angekündigt, die bald darauf im Rahmen eines öffentlichen Benennungswettbewerbs als „Dreamliner“ bekannt und 2005 schließlich auf den offiziellen Namen 787 getauft wurde.

Die erste Variante der 787-8 erhob sich 2009 in die Lüfte, wobei die längere 787-9 2013 und die längste Variante Anfang 2017 ihr Debut gaben. Seit der Etablierung kommerzieller Dienstleistungen mit Singapur Airlines im April 2018 wurde die 787-10 fast 200-mal von 13 verschiedenen Kunden geordert.

Obwohl in der 787-10 mehr Passagiere Platz finden als in den übrigen 787-Varianten, basiert die gesamte Dreamliner-Gruppe auf identischen Prinzipien und Technologien, die eine effizientere Leistung und Produktion gewährleisten sollen.

Die Flugzeugzelle wird primär aus leichtgewichtigen Kompositmaterialien gefertigt. Ferner verfügt die 787 über Triebwerke mit vollelektrischen Entlüftungssystemen, eine Fly-by-Wire-Steuerung, eine ganze Reihe an aerodynamischen Verbesserungen – von schrägen Flügelspitzen bis hin zu aktiver Böenminderung – sowie einen geringeren Treibstoffverbrauch. Darüber hinaus wurde die Emissionserzeugung gesenkt, die Stabilität und Präzision wurden zugleich erhöht. Die Entwicklung und die Zusammensetzung bedurften der Mithilfe unzähliger Lieferanten rund um den Globus, wodurch der Dreamliner ein wahres Kooperationsprojekt globalen Ausmaßes darstellt.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/en-US.locPak b/src/localization/msfs/en-US.locPak new file mode 100644 index 00000000..4a195aaa --- /dev/null +++ b/src/localization/msfs/en-US.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "en-US", + "Strings": { + "AIRCRAFT.DESCRIPTION": "During the late 1990s, as sales of the 767 and 747-400 slowed, Boeing kicked-off development for a replacement long-haul, wide-body, twin-engine jetliner. In 2003 they announced the 7E7, which would soon be dubbed 'Dreamliner' after a public naming competition, and officially re-designated as the 787 in 2005.

The first variant, the 787-8, took flight in 2009, with the longer 787-9 debuting in 2013, and the longest variant, the 787-10, in early 2017. Since launching commercial service with Singapore Airlines in April 2018, the 787-10 has orders for nearly 200 aircraft from 13 customers.

While the 787-10 accommodates more passengers than its 787 family members, the entire Dreamliner group is built on shared principles and technology -- all geared toward greater efficiency, from both a performance and production standpoint.

With an airframe constructed primarily of light-weight composite materials, engines featuring all-electrical bleedless systems, fly-by-wire controls, and a suite of aerodynamic improvements from raked wingtips to active gust alleviation, the 787 boasts lower fuel burn and emissions, with increased stability and precision. At the same time, development and assembly has required involvement from numerous suppliers across the world, making the Dreamliner a true collaboration on an unprecedented global scale.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/es-ES.locPak b/src/localization/msfs/es-ES.locPak new file mode 100644 index 00000000..20c1253d --- /dev/null +++ b/src/localization/msfs/es-ES.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "es-ES", + "Strings": { + "AIRCRAFT.DESCRIPTION": "A finales de los años 90, cuando se redujeron las ventas de los 767 y 747-400, Boeing inició el desarrollo de un avión sustituto de largo recorrido, de fuselaje ancho y bimotor. En 2003 anunciaron el 7E7, que pronto sería conocido como Dreamliner tras un concurso público de nombres y cuya designación oficial cambió a 787 en 2005.

La primera variante, el 787-8, despegó en 2009, el 787-9 (más largo) debutó en 2013 y el 787-10 (la variante más larga), a principios de 2017. Desde el lanzamiento del servicio comercial con Singapore Airlines en abril de 2018, se han realizado casi 200 pedidos del 787-10 de 13 clientes.

Si bien el 787-10 es la aeronave que da cabida a más pasajeros de toda la familia 787, el grupo Dreamliner al completo comparte principios y tecnología, buscan una mayor eficiencia, tanto desde el punto de vista del rendimiento como de la producción.

El 787 se jacta de un menor consumo de combustible y emisiones, con una mayor estabilidad y precisión. Lo consigue gracias a una célula construida principalmente con materiales compuestos ligeros, motores con sistemas totalmente eléctricos sin purgado, mandos de vuelo eléctricos (fly-by-wire) y un conjunto de mejoras aerodinámicas que van desde los dispositivos de punta alar hasta el desvío de las ráfagas de forma activa. Al mismo tiempo, el desarrollo y el montaje han requerido la participación de numerosos proveedores de todo el mundo, lo que hace del Dreamliner una verdadera colaboración a escala global sin precedentes.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/es-MX.locPak b/src/localization/msfs/es-MX.locPak new file mode 100644 index 00000000..291e45a6 --- /dev/null +++ b/src/localization/msfs/es-MX.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "es-MX", + "Strings": { + "AIRCRAFT.DESCRIPTION": "A finales de los años 90, cuando se redujeron las ventas de los 767 y 747-400, Boeing inició el desarrollo de un avión sustituto de largo recorrido, de fuselaje ancho y bimotor. En 2003 anunciaron el 7E7, que pronto sería conocido como Dreamliner tras un concurso público de nombres y cuya designación oficial cambió a 787 en 2005.

La primera variante, el 787-8, despegó en 2009, el 787-9 (más largo) debutó en 2013 y el 787-10 (la variante más larga), a principios de 2017. Desde el lanzamiento del servicio comercial con Singapore Airlines en abril de 2018, se han realizado casi 200 pedidos del 787-10 de 13 clientes.

Si bien el 787-10 es la aeronave que da cabida a más pasajeros de toda la familia 787, el grupo Dreamliner comparte principios y tecnología, buscan una mayor eficiencia, tanto desde el punto de vista del rendimiento como de la producción.

El 787 se jacta de un menor consumo de combustible y emisiones, con una mayor estabilidad y precisión. Lo consigue gracias a una célula construida principalmente con materiales compuestos ligeros, motores con sistemas totalmente eléctricos sin purgado, mandos de vuelo eléctricos (fly-by-wire) y un conjunto de mejoras aerodinámicas que van desde los dispositivos de punta alar hasta el desvío de las ráfagas de forma activa. Al mismo tiempo, el desarrollo y el montaje han requerido la participación de numerosos proveedores de todo el mundo, lo que hace del Dreamliner una verdadera colaboración a escala global sin precedentes.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/fi-FI.locPak b/src/localization/msfs/fi-FI.locPak new file mode 100644 index 00000000..36cc9852 --- /dev/null +++ b/src/localization/msfs/fi-FI.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "fi-FI", + "Strings": { + "AIRCRAFT.DESCRIPTION": "1990-luvun lopulla, kun 767:n ja 747-400:n myynti hidastui, Boeing käynnisti korvaavan pitkänmatkan, leveärunkoisen, kaksimoottorisen suihkukoneen kehitystyön. Vuonna 2003 yhtiö julkisti 7E7:n, joka sai julkisen nimeämiskilpailun jälkeen kutsunimen Dreamliner ja joka nimettiin virallisesti uudelleen 787:ksi vuonna 2005.

Ensimmäinen versio, 787-8, lähti lentoon vuonna 2009, sitä pidempi 787-9 debytoi vuonna 2013 ja pisin variantti, 787-10, alkuvuodesta 2017. Sen jälkeen, kun kaupallinen palvelu Singapore Airlinesin kanssa käynnistettiin huhtikuussa 2018, 787-10:llä on tilauksia lähes 200 lentokoneelle 13 asiakkaalta.

Vaikka 787-10:een mahtuu enemmän matkustajia kuin muihin 787-perheen jäseniin, koko Dreamliner-ryhmä perustuu yhteisiin periaatteisiin ja teknologiaan, joilla pyritään parantamaan tehokkuutta sekä suorituskyvyssä että tuotannossa.

Kun lentokoneen runko on rakennettu pääasiassa kevyistä komposiittimateriaaleista, moottoreissa on täysin sähköiset ja vuodottomat järjestelmät, ohjausjärjestelmä on elektroninen ja käytössä on monia muita aerodynaamisia parannuksia taitetuista siivenkärjistä aktiiviseen puuskankevitykseen, 787 pystyy parempaan vakauteen ja tarkkuuteen pienemmällä polttoaineenkulutuksella ja päästöillä. Samaan aikaan kehityksessä ja kokoonpanossa edellytetään useiden toimittajien osallistumista ympäri maailmaa, mikä tekee Dreamlinerista todellisen yhteistyön taidonnäytteen ennennäkemättömässä maailmanlaajuisessa mittakaavassa.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/fr-FR.locPak b/src/localization/msfs/fr-FR.locPak new file mode 100644 index 00000000..bf314997 --- /dev/null +++ b/src/localization/msfs/fr-FR.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "fr-FR", + "Strings": { + "AIRCRAFT.DESCRIPTION": "À la fin des années 1990, suite au ralentissement des ventes du 767 et du 747-400, Boeing a lancé le développement d'un avion de ligne bi-moteur long-courrier à fuselage large de remplacement. En 2003, l'entreprise annonce le 7E7, rapidement surnommé « Dreamliner » suite à un concours ouvert au public, et officiellement baptisé 787 en 2005.

Le premier modèle, le 787-8, s'est envolé en 2009, tandis que le modèle plus allongé 787-9 est entré en service en 2013, et le modèle le plus long, le 787-10, début 2017. Depuis le lancement du service commercial avec Singapore Airlines en avril 2018, 13 clients ont commandé 200 avions 787-10.

Tandis que le 787-10 accueille plus de passagers que les autres avions de la gamme 787, le groupe Dreamliner entier est conçu de sorte à partager les principes et la technologie -- tous tournés vers plus d'efficacité que ce soit en matière de performances ou de production.

Le fuselage principalement en matériaux composites légers, les moteurs équipés de systèmes entièrement électriques sans purge, les commandes de vol électriques, et un ensemble d'améliorations aérodynamiques allant des saumons élancés à une atténuation active des rafales, le 787 consomme moins de carburant et émet moins de polluants, tout en augmentant la stabilité et la précision. Au même moment, le développement et le montage ont demandé l'implication de nombreux fournisseurs du monde entier, ce qui a fait du Dreamliner une véritable collaboration à une échelle mondiale sans précédent.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/it-IT.locPak b/src/localization/msfs/it-IT.locPak new file mode 100644 index 00000000..1aa1b0ed --- /dev/null +++ b/src/localization/msfs/it-IT.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "it-IT", + "Strings": { + "AIRCRAFT.DESCRIPTION": "Alla fine degli anni '90, che videro un calo delle vendite dei modelli 767 e 747-400, Boeing inizia lo sviluppo di un ampio jet di linea bimotore a lunga percorrenza che li sostituisca. Nel 2003 l'azienda annuncia il 7E7, presto soprannominato \"Dreamliner\" in seguito a un concorso pubblico indetto per trovarne il nome, e ufficialmente rinominato 787 nel 2005.

La prima variante, il 787-8, prende il volo nel 2009, il modello più lungo 787-9 debutta nel 2013, mentre l'aeromobile con la maggiore lunghezza, il 787-10, viene presentato all'inizio del 2017. Entrato in servizio per la compagnia Singapore Airlines nell'aprile 2018, il 787-10 riceve ordini da 13 clienti per quasi 200 aeromobili.

Sebbene il 787-10 accolga un maggior numero di passeggeri rispetto agli altri aeromobili della serie, l'intero gruppo Dreamliner si basa su tecnologie e principi condivisi, tutti orientati verso una maggiore efficienza, sia dal punto di vista delle prestazioni che della produzione.

Grazie alla cellula realizzata principalmente in materiali compositi leggeri, ai motori con sistemi completamente elettrici senza aria di prelievo, ai comandi fly-by-wire e a una gamma di miglioramenti aerodinamici (dalle punte delle ali inclinate alla riduzione attiva della raffica), la linea 787 vanta emissioni e consumi ridotti, nonché stabilità e precisione maggiori. Lo sviluppo e l'assemblaggio richiedono inoltre il coinvolgimento di numerosi fornitori internazionali, rendendo il Dreamliner una vera e propria collaborazione su una scala globale senza precedenti.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/ja-JP.locPak b/src/localization/msfs/ja-JP.locPak new file mode 100644 index 00000000..aa32a18c --- /dev/null +++ b/src/localization/msfs/ja-JP.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "ja-JP", + "Strings": { + "AIRCRAFT.DESCRIPTION": "1990 年代後半、767 と 747-400 の販売が低迷し始めたボーイングは、その代わりとなる長距離飛行用のワイドボディ双発ジェット旅客機の開発に着手し、2003 年、7E7 が発表された。この機体は、その後すぐに行われた一般公募の命名コンテストで「ドリームライナー」と名付けられ、2005 年には正式名称が 787 に変更された。

最初の機種 787-8 は 2009 年に飛行し、2013 年にはより長い機体を持つ 787-9 がデビューし、最長の機体を誇る 787-10 が 2017 年前半に登場した。2018 年 4 月にシンガポール航空での商用運航を開始して以来、787-10 は 13 の顧客から約 200 機の注文を受けている。

787-10 は同じファミリーの他の機種よりも多くの乗客を収容できるものの、ドリームライナー系列は全体として、性能と生産という両方の観点から、より高い効率性を実現する共通の原則と技術に基づいて造られている。

軽量な複合素材を主な材料として作られた機体、全電気式ブリードレス システムを特徴とするエンジン、フライ バイ ワイヤ操縦系統、突風を緩和するためのレークト ウィングチップによる空気力学性能の改善などにより、787 は、低燃費と低排出量、安定性と精度の向上を実現している。さらに、開発と製造には世界中の数多くのサプライヤーの協力が必要であったため、ドリームライナーこと 787 は、かつてない真のグローバルな共同制作により生み出された作品と化している。", + "AIRCRAFT.UI_MANUFACTURER": "ボーイング", + "AIRCRAFT.UI_MODEL": "787-10 ドリームライナー (HD)" + } + } +} diff --git a/src/localization/msfs/nb-NO.locPak b/src/localization/msfs/nb-NO.locPak new file mode 100644 index 00000000..7af42e76 --- /dev/null +++ b/src/localization/msfs/nb-NO.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "nb-NO", + "Strings": { + "AIRCRAFT.DESCRIPTION": "På slutten av 90-tallet, da salget av 767 og 747-400 bremset opp, satte Boeing i gang utviklingen av sitt neste langdistansefly med bred kropp og to motorer. I 2003 annonserte de 7E7, som fikk navnet «Dreamliner», etter en navnekonkurranse, og det offisielle navnet 787 i 2005.

Den første varianten, 787-8, lettet i 2009, den lengre 787-9 debuterte i 2013, og den lengste varianten, 787-10, tidlig i 2017. Siden lanseringen på kommersielle ruter hos Singapore Airlines i april 2018, har det kommet bestilling på nesten 200 787-10-fly fra 13 kunder.

Selv om 787-10 har plass til flere passasjerer enn de andre flyene i 787-familien, er hele Dreamliner-serien bygget på felles prinsipper og teknologi – alt med mål om å oppnå bedre effektivitet, både fra et ytelses- og produksjonsperspektiv.

Med et flyskrog konstruert hovedsakelig av lette komposittmaterialer, motorer med helelektriske og luftløse systemer, «fly-by-wire»-kontroller og en rekke aerodynamiske forbedringer, fra tilbakestrøkede vingetipper til aktiv demping av vindkast, har 787 lavere drivstofforbruk og utslipp samt økt stabilitet og presisjon. Samtidig har utvikling og montering gjort det nødvendig å involvere en rekke leverandører over hele verden, noe som gjør Dreamliner til et ekte samarbeid på en enestående global skala.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/nl-NL.locPak b/src/localization/msfs/nl-NL.locPak new file mode 100644 index 00000000..ecc0583b --- /dev/null +++ b/src/localization/msfs/nl-NL.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "nl-NL", + "Strings": { + "AIRCRAFT.DESCRIPTION": "Aan het eind van de jaren 1990, toen de verkoop van de 767 en 747-400 afnam, startte Boeing met de ontwikkeling van een vervangende tweemotorige widebody voor lange verkeersvluchten. In 2003 kondigden het bedrijf de 7E7 aan, die na een openbare wedstrijd om beste naam te bedenken 'Dreamliner' zou worden genoemd en in 2005 het officiële typenummer 787 kreeg.

De eerste variant, de 787-8, werd geïntroduceerd in 2009, de langere 787-9 debuteerde in 2013, en de langste variant, de 787-10, verscheen begin 2017. Sinds de 787-10 in april 2018 in een commerciële dienst werd genomen bij Singapore Airlines, zijn er bijna 200 exemplaren besteld door 13 klanten.

Hoewel de 787-10 meer passagiers kan vervoeren dan de andere 787-modellen, is de hele Dreamliner-serie gebaseerd op dezelfde principes en technologie, die zijn bedoeld om zowel de inzet als de productie efficiënter te maken.

Dankzij een airframe dat voornamelijk is gemaakt van lichte composietmaterialen, motoren met volledig elektrische 'bleedless' systemen, fly-by-wirebesturing en een reeks aerodynamische verbeteringen van gekantelde vleugeltips tot actieve demping van windvlagen, biedt de 787 een lager brandstofverbruik en minder uitstoot in combinatie met verbeterde stabiliteit en precisie. Bovendien is de Dreamliner een voorbeeld van wereldwijde samenwerking op een ongekende schaal, omdat bij de ontwikkeling en assemblage talloze leveranciers over de hele wereld betrokken zijn.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/pl-PL.locPak b/src/localization/msfs/pl-PL.locPak new file mode 100644 index 00000000..e8442206 --- /dev/null +++ b/src/localization/msfs/pl-PL.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "pl-PL", + "Strings": { + "AIRCRAFT.DESCRIPTION": "Pod koniec lat 90. XX wieku firma Boeing rozpoczęła prace and szerokokadłubowym, dwusilnikowym odrzutowcem pasażerskim, mającym zastąpić tracące popularność samoloty 767 i 747-400. W roku 2003 zapowiedziano model 7E7, któremu wkrótce nadano wybraną w publicznym konkursie nazwę „Dreamliner”, a w 2005 roku – oficjalne oznaczenie 787

Pierwszą wersję 787-8 oblatano w roku 2009, dłuższy 787-9 zadebiutował w 2013 roku, a najdłuższa wersja 787-10 – na początku roku 2017. Od rozpoczęcia komercyjnej eksploatacji w Singapore Airlines w kwietniu 2018 roku, 13 klientów zamówiło niemal 200 egzemplarzy 787-10.

Podczas gdy 787-10 mieści najwięcej pasażerów ze wszystkich wersji 787, cała rodzina samolotów Dreamliner jest zbudowana w oparciu o te same zasady i technologie, ukierunkowane na uzyskanie większej efektywności zarówno pod względem osiągów, jak i produkcji.

Mając płatowiec wykonany głównie z lekkich materiałów kompozytowych, instalacje nie wykorzystujące powietrza z upustów sprężarek silników, układ sterowania fly-by-wire i szereg usprawnień aerodynamicznych, takich jak podgięte końcówki skrzydeł oraz aktywne niwelowanie podmuchów, 787 odznacza się obniżonym zużyciem paliwa i emisją niepożądanych substancji, większą stabilnością i precyzją pilotażu. Projektowanie i produkcja wymagały zaangażowania licznych dostawców z całego świata, czyniąc z Dreamlinera prawdziwie globalne przedsięwzięcie na niespotykaną dotąd skalę.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/pt-BR.locPak b/src/localization/msfs/pt-BR.locPak new file mode 100644 index 00000000..9ae6f12e --- /dev/null +++ b/src/localization/msfs/pt-BR.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "pt-BR", + "Strings": { + "AIRCRAFT.DESCRIPTION": "No fim dos anos 90, as vendas do 767 e do 747-400 caíram, e a Boeing iniciou o desenvolvimento de um novo jato de dois motores, com corpo amplo e trajetos longos. Em 2003, eles anunciaram o 7E7, que logo seria apelidado de \"Dreamliner\" em um concurso público, e oficialmente foi renomeado como 787 em 2005.

A primeira variante, o 787-8, levantou voo em 2009, com o 787-9 mais longo estreando em 2013, e a variante mais longa, o 787-10, no início de 2017. Desde o lançamento do serviço comercial com a Singapore Airlines em abril de 2018, o 787-10 tem pedidos de quase 200 aeronaves de 13 clientes.

Enquanto o 787-10 acomoda mais passageiros do que os membros da família 787, todo o grupo Dreamliner é criado sobre princípios e tecnologias compartilhados – tudo concebido para eficiência, de um ponto de vista de desempenho e produção.

Com componentes estruturais construídos principalmente de materiais compostos leves, motores com sistemas totalmente elétricos sem sangramento, sistemas de controle não mecânico e um pacote de aprimoramentos aerodinâmicos de pontas de asa para atenuação de rajadas ativa, o 787 apresenta redução de queima e emissões de combustível, com estabilidade e precisão maiores. Ao mesmo tempo, o desenvolvimento e a montagem exigem envolvimento de vários fornecedores do mundo todo, fazendo do Dreamliner um verdadeiro projeto de colaboração em uma escala global sem precedentes.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/pt-PT.locPak b/src/localization/msfs/pt-PT.locPak new file mode 100644 index 00000000..8c4528d6 --- /dev/null +++ b/src/localization/msfs/pt-PT.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "pt-PT", + "Strings": { + "AIRCRAFT.DESCRIPTION": "No fim dos anos 90, as vendas do 767 e do 747-400 abrandaram e a Boeing iniciou o desenvolvimento de um novo jato de dois motores, com corpo amplo para voos de longo curso. Em 2003, a empresa anunciou o 7E7 que, em breve, seria denominado \"Dreamliner\" após um concurso público, tendo sido rebatizado oficialmente como 787 em 2005.

A primeira variante, o 787-8, levantou voo em 2009, com o 787-9 mais longo a fazer a sua estreia em 2013 e a variante mais longa, o 787-10, no início de 2017. Desde o lançamento do serviço comercial com a Singapore Airlines em abril de 2018, o 787-10 tem encomendas de quase 200 aeronaves de 13 clientes.

Embora o 787-10 acomode mais passageiros do que os membros da família 787, todo o grupo Dreamliner é baseado em tecnologias e princípios partilhados, todos eles concebidos para eficiência do ponto de vista do desempenho e da produção.

Com componentes estruturais construídos principalmente de materiais compostos leves, motores com sistemas totalmente elétricos sem sangramento, sistemas de controlo não mecânico e um pacote de melhorias aerodinâmicas, desde pontas de asa inclinadas (raked wingtips) até atenuação de rajadas ativa, o 787 apresenta menor combustão e emissões de combustível, com maior estabilidade e precisão. Ao mesmo tempo, o desenvolvimento e a montagem exigiram o envolvimento de vários fornecedores de todo o mundo, tornando o Dreamliner num verdadeiro projeto de colaboração à escala global sem precedentes.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/ru-RU.locPak b/src/localization/msfs/ru-RU.locPak new file mode 100644 index 00000000..bd97f9a6 --- /dev/null +++ b/src/localization/msfs/ru-RU.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "ru-RU", + "Strings": { + "AIRCRAFT.DESCRIPTION": "В конце 1990-х годов, из-за снижения продаж 767 и 747-400, инженеры Boeing начали разработку дальнемагистрального широкофюзеляжного лайнера с двумя двигателями, способного заменить предыдущие модели. В 2003 году корпорация представила 7E7, который в ходе открытого голосования был назван Dreamliner. В 2005 году самолёт получил официальное обозначение 787.

Модель 787-8 отправилась покорять небеса в 2009 году. В 2013 году был представлен её удлинённый вариант 787-9. В начале 2017 года свет увидела самая длинная модификация этого самолёта — 787-10. В апреле 2018 года Singapore Airlines получила первые заказанные экземпляры и начала коммерческую эксплуатацию этой модели. Сейчас портфель заказов на 787-10 составляет почти 200 воздушных судов для 13 компаний-покупателей.

В основе всех модификаций модели 787 лежат одинаковые принципы и технологии. Самолёты создавались с расчётом на максимальную эффективность и экономичность как при производстве, так и при эксплуатации.

Планер самолёта на 50% изготовлен из лёгких композитных материалов, система отбора воздуха в двигателях заменена дополнительными электрогенераторами, для управления используется электродистанционная система управления, а продвинутая аэродинамика самолёта, от законцовок крыла с переменным изгибом до активной системы противодействия порывам ветра, обеспечивает низкий расход топлива и снижает количество выбросов в атмосферу, а также обеспечивает хорошую устойчивость и безопасность. В процессе производства участвуют поставщики со всего мира, благодаря чему Dreamliner можно назвать по-настоящему международным самолётом.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/sv-SE.locPak b/src/localization/msfs/sv-SE.locPak new file mode 100644 index 00000000..adec7675 --- /dev/null +++ b/src/localization/msfs/sv-SE.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "sv-SE", + "Strings": { + "AIRCRAFT.DESCRIPTION": "Under slutet av 1990-talet började försäljningen av 767 och 747-400 avta, vilket ledde till att Boeing sparkade igång utvecklingen av en ersättare för det bredkroppade tvåmotoriga linjejetplanet för långa distanser. 2003 offentliggjordes 7E7, som snart skulle kallas \"Dreamliner\" efter en offentlig namngivningstävling, och officiellt ombetecknad till 787 under 2005.

Den första varianten 787-8 lyfte 2009, den lite längre 787-9 debuterade 2013 och den längsta varianten 787-10 i början av 2017. Sedan den kommersiella lanseringen hos Singapore Airlines i april 2018 har nästan 200 stycken 787-10 beställts från 13 kunder.

Även om 787-10 rymmer fler passagerare än övriga medlemmar i 787-familjen är hela Dreamliner-gruppen byggd på delade principer och teknik – som alla är inriktade på större effektivitet, både gällande prestanda och produktion.

Med ett flygplansskrov som huvudsakligen bygger på lätta kompositmaterial, motorer med helt elektriska avtappningsfria system, fly by wire-kontroller och en uppsjö aerodynamiska förbättringar från lutande vingspetsar till aktiv lindring av vindstötar kan 787 stoltsera med lägre bränsleförbrukning och utsläpp, samt ökad stabilitet och precision. Samtidigt har utvecklingen och monteringen krävt medverkan av många leverantörer över hela världen, vilket gör Dreamliner till ett verkligt samarbete på en aldrig tidigare skådad global skala.", + "AIRCRAFT.UI_MANUFACTURER": "Boeing", + "AIRCRAFT.UI_MODEL": "787-10 Dreamliner (HD)" + } + } +} diff --git a/src/localization/msfs/zh-CN.locPak b/src/localization/msfs/zh-CN.locPak new file mode 100644 index 00000000..5d7fdbd5 --- /dev/null +++ b/src/localization/msfs/zh-CN.locPak @@ -0,0 +1,10 @@ +{ + "LocalisationPackage": { + "Language": "zh-CN", + "Strings": { + "AIRCRAFT.DESCRIPTION": "20世纪90年代末,伴随着767和747-400销售放缓,波音公司开始研发用于替代的宽体、双引擎长途喷气式客机。2003年,波音公布了7E7,经公开征集将其命名为“梦想客机”,2005年重新指定型号为787。

787的首个衍生型号787-8首飞于2009年,机身更长的787-9亮相于2013年,最长的787-10则推出在2017年初。自2018年4月由新加坡航空投入商业运营以来,787-10已被13个客户订购了近200架。

虽然787-10的载客量要大于其它787系列型号,但所有梦想客机型号均遵循同一个技术设计原则——在性能和生产方面,一切都为了追求更高的效率。

787的机身主要由轻质复合材料构建,发动机采用全电无引气系统,飞机操控为电传控制系统,还有一系列空气动力学改进,包括倾斜式翼尖、主动缓解阵风功能。这些技术令787耗油、排放更低,稳定性、精确性更强。与此同时,梦想客机的开发和组装涉及到世界各地的众多供应商,合作生产的规模前所未有。", + "AIRCRAFT.UI_MANUFACTURER": "波音", + "AIRCRAFT.UI_MODEL": "787-10梦想客机 (HD)" + } + } +} diff --git a/src/package-lock.json b/src/package-lock.json index 085a06c7..a635872b 100644 --- a/src/package-lock.json +++ b/src/package-lock.json @@ -1,15 +1,41 @@ { "name": "src", "version": "0.1.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@rollup/plugin-commonjs": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-21.0.1.tgz", - "integrity": "sha512-EA+g22lbNJ8p5kuZJUYyhhDK7WgJckW5g4pNN7n4mAFUM96VuwUnNT3xr2Db2iCZPI1pJPbGyfT5mS9T1dHfMg==", + "packages": { + "": { + "name": "src", + "version": "0.1.0", + "devDependencies": { + "@rollup/plugin-commonjs": "^21.0.1", + "@rollup/plugin-node-resolve": "^13.0.6", + "@types/node": "^16.11.6", + "deepmerge": "^4.2.2", + "gulp": "^4.0.2", + "gulp-bump": "^3.2.0", + "gulp-exec": "^5.0.0", + "gulp-rename": "^2.0.0", + "gulp-typescript": "^6.0.0-alpha.1", + "gulp-zip": "^5.1.0", + "http": "^0.0.1-security", + "merge2": "^1.4.1", + "path": "^0.12.7", + "rollup": "^2.70.2", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-stream": "^1.24.1", + "socket.io": "^4.3.2", + "socket.io-client": "^4.3.2", + "typescript": "^4.4.4", + "vinyl-source-stream": "^2.0.0" + } + }, + "node_modules/@rollup/plugin-commonjs": { + "version": "21.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-21.1.0.tgz", + "integrity": "sha512-6ZtHx3VHIp2ReNNDxHjuUml6ur+WcQ28N1yHgCQwsbNkQg2suhxGMDQGJOn/KuDxKtd1xuZP5xSTwBA4GQ8hbA==", "dev": true, - "requires": { + "dependencies": { "@rollup/pluginutils": "^3.1.0", "commondir": "^1.0.1", "estree-walker": "^2.0.1", @@ -18,318 +44,412 @@ "magic-string": "^0.25.7", "resolve": "^1.17.0" }, - "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - } + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^2.38.3" } }, - "@rollup/plugin-node-resolve": { - "version": "13.0.6", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.6.tgz", - "integrity": "sha512-sFsPDMPd4gMqnh2gS0uIxELnoRUp5kBl5knxD2EO0778G1oOJv4G1vyT2cpWz75OU2jDVcXhjVUuTAczGyFNKA==", + "node_modules/@rollup/plugin-node-resolve": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz", + "integrity": "sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==", "dev": true, - "requires": { + "dependencies": { "@rollup/pluginutils": "^3.1.0", "@types/resolve": "1.17.1", - "builtin-modules": "^3.1.0", "deepmerge": "^4.2.2", + "is-builtin-module": "^3.1.0", "is-module": "^1.0.0", "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^2.42.0" } }, - "@rollup/pluginutils": { + "node_modules/@rollup/pluginutils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", "dev": true, - "requires": { + "dependencies": { "@types/estree": "0.0.39", "estree-walker": "^1.0.1", "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" } }, - "@socket.io/component-emitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.0.0.tgz", - "integrity": "sha512-2pTGuibAXJswAPJjaKisthqS/NOK5ypG4LYT6tEAV0S/mxW0zOIvYvGK0V8w8+SHxAm6vRMSjqSalFXeBAqs+Q==", + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", "dev": true }, - "@types/component-emitter": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", - "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", + "node_modules/@socket.io/component-emitter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", + "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==", "dev": true }, - "@types/cookie": { + "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", "dev": true }, - "@types/cors": { - "version": "2.8.12", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", - "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", - "dev": true + "node_modules/@types/cors": { + "version": "2.8.13", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.13.tgz", + "integrity": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } }, - "@types/estree": { + "node_modules/@types/estree": { "version": "0.0.39", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "dev": true }, - "@types/node": { - "version": "16.11.6", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz", - "integrity": "sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==", + "node_modules/@types/node": { + "version": "16.18.46", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.46.tgz", + "integrity": "sha512-Mnq3O9Xz52exs3mlxMcQuA7/9VFe/dXcrgAyfjLkABIqxXKOgBRjyazTxUbjsxDa4BP7hhPliyjVTP9RDP14xg==", "dev": true }, - "@types/resolve": { + "node_modules/@types/resolve": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", "dev": true, - "requires": { + "dependencies": { "@types/node": "*" } }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "ansi-colors": { + "node_modules/ansi-colors": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", "dev": true, - "requires": { + "dependencies": { "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "ansi-gray": { + "node_modules/ansi-gray": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", "dev": true, - "requires": { + "dependencies": { "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "ansi-regex": { + "node_modules/ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "ansi-styles": { + "node_modules/ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "ansi-wrap": { + "node_modules/ansi-wrap": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", - "dev": true + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "anymatch": { + "node_modules/anymatch": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, - "requires": { + "dependencies": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" - }, + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "append-buffer": { + "node_modules/append-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", "dev": true, - "requires": { + "dependencies": { "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "archy": { + "node_modules/archy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", "dev": true }, - "arr-diff": { + "node_modules/arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "arr-filter": { + "node_modules/arr-filter": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", "dev": true, - "requires": { + "dependencies": { "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "arr-flatten": { + "node_modules/arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "arr-map": { + "node_modules/arr-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", "dev": true, - "requires": { + "dependencies": { "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "arr-union": { + "node_modules/arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "array-each": { + "node_modules/array-each": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", - "dev": true + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "array-find-index": { + "node_modules/array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "array-initial": { + "node_modules/array-initial": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", "dev": true, - "requires": { + "dependencies": { "array-slice": "^1.0.0", "is-number": "^4.0.0" }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "array-last": { + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", "dev": true, - "requires": { + "dependencies": { "is-number": "^4.0.0" }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "array-slice": { + "node_modules/array-slice": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "array-sort": { + "node_modules/array-sort": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", "dev": true, - "requires": { + "dependencies": { "default-compare": "^1.0.0", "get-value": "^2.0.6", "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "array-unique": { + "node_modules/array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "assign-symbols": { + "node_modules/assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "async-done": { + "node_modules/async-done": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.2", "process-nextick-args": "^2.0.0", "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] }, - "async-settle": { + "node_modules/async-settle": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", "dev": true, - "requires": { + "dependencies": { "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" } }, - "atob": { + "node_modules/atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } }, - "bach": { + "node_modules/bach": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", "dev": true, - "requires": { + "dependencies": { "arr-filter": "^1.1.1", "arr-flatten": "^1.0.1", "arr-map": "^2.0.0", @@ -339,26 +459,23 @@ "async-done": "^1.2.2", "async-settle": "^1.0.0", "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", - "dev": true - }, - "balanced-match": { + "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "base": { + "node_modules/base": { "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, - "requires": { + "dependencies": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", "component-emitter": "^1.2.1", @@ -367,62 +484,66 @@ "mixin-deep": "^1.2.0", "pascalcase": "^0.1.1" }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } + "engines": { + "node": ">=0.10.0" } }, - "base64-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.1.tgz", - "integrity": "sha512-vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA==", - "dev": true + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "base64id": { + "node_modules/base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", - "dev": true + "dev": true, + "engines": { + "node": "^4.5.0 || >= 5.9" + } }, - "binary-extensions": { + "node_modules/binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "bindings": { + "node_modules/bindings": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, "optional": true, - "requires": { + "dependencies": { "file-uri-to-path": "1.0.0" } }, - "brace-expansion": { + "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "requires": { + "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "braces": { + "node_modules/braces": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "dev": true, - "requires": { + "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", "extend-shallow": "^2.0.1", @@ -433,47 +554,68 @@ "snapdragon-node": "^2.0.1", "split-string": "^3.0.2", "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "buffer-crc32": { + "node_modules/buffer-crc32": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", - "dev": true + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } }, - "buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", - "dev": true + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "buffer-from": { + "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "builtin-modules": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", - "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", - "dev": true + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "bump-regex": { + "node_modules/bump-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bump-regex/-/bump-regex-4.1.0.tgz", "integrity": "sha512-75Kr/Iw6lqnOKF/7YpE0WyOMBaaSpdrXTquIxR0qbTgZxwJos6563zNSn+w/LPJUoL4DXq20QX9AQy4+UJbyhw==", "dev": true, - "requires": { + "dependencies": { "semver": "^5.1.0" + }, + "engines": { + "node": ">= 4.0.0" } }, - "cache-base": { + "node_modules/cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, - "requires": { + "dependencies": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", "get-value": "^2.0.6", @@ -483,57 +625,72 @@ "to-object-path": "^0.3.0", "union-value": "^1.0.0", "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "call-bind": { + "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, - "requires": { + "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "camelcase": { + "node_modules/camelcase": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "camelcase-keys": { + "node_modules/camelcase-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^2.0.0", "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "chalk": { + "node_modules/chalk": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", "dev": true, - "requires": { + "dependencies": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", "has-ansi": "^2.0.0", "strip-ansi": "^3.0.0", "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "chokidar": { + "node_modules/chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", "dev": true, - "requires": { + "dependencies": { "anymatch": "^2.0.0", "async-each": "^1.0.1", "braces": "^2.3.2", - "fsevents": "^1.2.7", "glob-parent": "^3.1.0", "inherits": "^2.0.3", "is-binary-path": "^1.0.0", @@ -542,376 +699,459 @@ "path-is-absolute": "^1.0.0", "readdirp": "^2.2.1", "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" } }, - "class-utils": { + "node_modules/class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, - "requires": { + "dependencies": { "arr-union": "^3.1.0", "define-property": "^0.2.5", "isobject": "^3.0.0", "static-extend": "^0.1.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - } + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "cliui": { + "node_modules/cliui": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", "dev": true, - "requires": { + "dependencies": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wrap-ansi": "^2.0.0" } }, - "clone": { + "node_modules/clone": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", - "dev": true + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } }, - "clone-buffer": { + "node_modules/clone-buffer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", - "dev": true + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "clone-stats": { + "node_modules/clone-stats": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", "dev": true }, - "cloneable-readable": { + "node_modules/cloneable-readable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", "dev": true, - "requires": { + "dependencies": { "inherits": "^2.0.1", "process-nextick-args": "^2.0.0", "readable-stream": "^2.3.5" } }, - "code-point-at": { + "node_modules/code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "collection-map": { + "node_modules/collection-map": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", "dev": true, - "requires": { + "dependencies": { "arr-map": "^2.0.2", "for-own": "^1.0.0", "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "collection-visit": { + "node_modules/collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", "dev": true, - "requires": { + "dependencies": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "color-support": { + "node_modules/color-support": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true + "dev": true, + "bin": { + "color-support": "bin.js" + } }, - "commondir": { + "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "component-emitter": { + "node_modules/component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, - "concat-map": { + "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "concat-stream": { + "node_modules/concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, - "requires": { + "engines": [ + "node >= 0.8" + ], + "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true, - "requires": { - "safe-buffer": "~5.1.1" + "engines": { + "node": ">= 0.6" } }, - "cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", - "dev": true - }, - "copy-descriptor": { + "node_modules/copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "copy-props": { + "node_modules/copy-props": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", "dev": true, - "requires": { + "dependencies": { "each-props": "^1.3.2", "is-plain-object": "^5.0.0" } }, - "core-util-is": { + "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true }, - "cors": { + "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, - "requires": { + "dependencies": { "object-assign": "^4", "vary": "^1" + }, + "engines": { + "node": ">= 0.10" } }, - "currently-unhandled": { + "node_modules/currently-unhandled": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", "dev": true, - "requires": { + "dependencies": { "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "d": { + "node_modules/d": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", "dev": true, - "requires": { + "dependencies": { "es5-ext": "^0.10.50", "type": "^1.0.1" } }, - "dateformat": { + "node_modules/dateformat": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", - "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", + "integrity": "sha512-5sFRfAAmbHdIts+eKjR9kYJoF0ViCMVX9yqLu5A7S/v+nd077KgCITOMiirmyCBiZpKLDXbBOkYm6tu7rX/TKg==", "dev": true, - "requires": { + "dependencies": { "get-stdin": "^4.0.1", "meow": "^3.3.0" + }, + "bin": { + "dateformat": "bin/cli.js" + }, + "engines": { + "node": "*" } }, - "debug": { + "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "requires": { + "dependencies": { "ms": "2.0.0" } }, - "decamelize": { + "node_modules/decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - "dev": true + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "default-compare": { + "node_modules/default-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "default-resolution": { + "node_modules/default-resolution": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", "dev": true, - "requires": { - "object-keys": "^1.0.12" + "engines": { + "node": ">= 0.10" } }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dev": true, - "requires": { - "is-descriptor": "^1.0.2", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "detect-file": { + "node_modules/detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", - "dev": true + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "duplexify": { + "node_modules/duplexify": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" } }, - "each-props": { + "node_modules/each-props": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", "dev": true, - "requires": { + "dependencies": { "is-plain-object": "^2.0.1", "object.defaults": "^1.1.0" - }, + } + }, + "node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "end-of-stream": { + "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "requires": { + "dependencies": { "once": "^1.4.0" } }, - "engine.io": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.0.1.tgz", - "integrity": "sha512-Y53UaciUh2Rmx5MiogtMxOQcfh7pnemday+Bb4QDg0Wjmnvo/VTvuEyNGQgYmh8L7VOe8Je1QuiqjLNDelMqLA==", + "node_modules/engine.io": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.2.tgz", + "integrity": "sha512-IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA==", "dev": true, - "requires": { + "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", @@ -920,141 +1160,159 @@ "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~5.0.0", - "ws": "~8.2.3" - }, - "dependencies": { - "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } + "engine.io-parser": "~5.2.1", + "ws": "~8.11.0" + }, + "engines": { + "node": ">=10.2.0" } }, - "engine.io-client": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.0.2.tgz", - "integrity": "sha512-cAep9lhZV6Q8jMXx3TNSU5cydMzMed8/O7Tz5uzyqZvpNPtQ3WQXrLYGADxlsuaFmOLN7wZLmT7ImiFhUOku8g==", + "node_modules/engine.io-client": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.2.tgz", + "integrity": "sha512-CQZqbrpEYnrpGqC07a9dJDz4gePZUgTPMU3NKJPSeQOyw27Tst4Pl3FemKoFGAlHzgZmKjoRmiJvbWfhCXUlIg==", "dev": true, - "requires": { - "@socket.io/component-emitter": "~3.0.0", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", - "engine.io-parser": "~5.0.0", - "has-cors": "1.1.0", - "parseqs": "0.0.6", - "parseuri": "0.0.6", - "ws": "~8.2.3", - "xmlhttprequest-ssl": "~2.0.0", - "yeast": "0.1.2" - }, - "dependencies": { - "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "engine.io-parser": "~5.2.1", + "ws": "~8.11.0", + "xmlhttprequest-ssl": "~2.0.0" + } + }, + "node_modules/engine.io-client/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "engine.io-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.1.tgz", - "integrity": "sha512-j4p3WwJrG2k92VISM0op7wiq60vO92MlF3CRGxhKHy9ywG1/Dkc72g0dXeDQ+//hrcDn8gqQzoEkdO9FN0d9AA==", + "node_modules/engine.io-client/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/engine.io-parser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.1.tgz", + "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==", "dev": true, - "requires": { - "base64-arraybuffer": "~1.0.1" + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "error-ex": { + "node_modules/engine.io/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "requires": { + "dependencies": { "is-arrayish": "^0.2.1" } }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", "dev": true, - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" } }, - "es6-iterator": { + "node_modules/es6-iterator": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", "dev": true, - "requires": { + "dependencies": { "d": "1", "es5-ext": "^0.10.35", "es6-symbol": "^3.1.1" } }, - "es6-symbol": { + "node_modules/es6-symbol": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "dev": true, - "requires": { + "dependencies": { "d": "^1.0.1", "ext": "^1.1.2" } }, - "es6-weak-map": { + "node_modules/es6-weak-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "dev": true, - "requires": { + "dependencies": { "d": "1", "es5-ext": "^0.10.46", "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.1" } }, - "escape-string-regexp": { + "node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true }, - "expand-brackets": { + "node_modules/expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, - "requires": { + "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", "extend-shallow": "^2.0.1", @@ -1063,116 +1321,135 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - } + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "expand-tilde": { + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-tilde": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dev": true, - "requires": { - "type": "^2.5.0" - }, "dependencies": { - "type": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", - "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==", - "dev": true - } + "type": "^2.7.2" } }, - "extend": { + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true }, - "extend-shallow": { + "node_modules/extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "dev": true, - "requires": { + "dependencies": { "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "extglob": { + "node_modules/extglob": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, - "requires": { + "dependencies": { "array-unique": "^0.3.2", "define-property": "^1.0.0", "expand-brackets": "^2.1.4", @@ -1182,253 +1459,319 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "fancy-log": { + "node_modules/fancy-log": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", "dev": true, - "requires": { + "dependencies": { "ansi-gray": "^0.1.1", "color-support": "^1.1.3", "parse-node-version": "^1.0.0", "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "fast-levenshtein": { + "node_modules/fast-levenshtein": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", "dev": true }, - "file-uri-to-path": { + "node_modules/file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true, "optional": true }, - "fill-range": { + "node_modules/fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", "repeat-string": "^1.6.1", "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "find-up": { + "node_modules/find-up": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", "dev": true, - "requires": { + "dependencies": { "path-exists": "^2.0.0", "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "findup-sync": { + "node_modules/findup-sync": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, - "requires": { + "dependencies": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", "micromatch": "^3.0.4", "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "fined": { + "node_modules/fined": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", "dev": true, - "requires": { + "dependencies": { "expand-tilde": "^2.0.2", "is-plain-object": "^2.0.3", "object.defaults": "^1.1.0", "object.pick": "^1.2.0", "parse-filepath": "^1.0.1" }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "flagged-respawn": { + "node_modules/flagged-respawn": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "flush-write-stream": { + "node_modules/flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", "dev": true, - "requires": { + "dependencies": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" } }, - "for-in": { + "node_modules/for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "for-own": { + "node_modules/for-own": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", "dev": true, - "requires": { + "dependencies": { "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "fragment-cache": { + "node_modules/fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", "dev": true, - "requires": { + "dependencies": { "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "fs-mkdirp-stream": { + "node_modules/fs-mkdirp-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.11", "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "fs.realpath": { + "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "fsevents": { + "node_modules/fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", "dev": true, + "hasInstallScript": true, "optional": true, - "requires": { + "os": [ + "darwin" + ], + "dependencies": { "bindings": "^1.5.0", "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" } }, - "function-bind": { + "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, - "get-caller-file": { + "node_modules/get-caller-file": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", "dev": true }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dev": true, - "requires": { + "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "get-stdin": { + "node_modules/get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "get-stream": { + "node_modules/get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "requires": { + "dependencies": { "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "get-value": { + "node_modules/get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "requires": { + "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "glob-parent": { + "node_modules/glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", "dev": true, - "requires": { + "dependencies": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" - }, + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "glob-stream": { + "node_modules/glob-stream": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", "dev": true, - "requires": { + "dependencies": { "extend": "^3.0.0", "glob": "^7.1.1", "glob-parent": "^3.1.0", @@ -1439,14 +1782,17 @@ "remove-trailing-separator": "^1.0.1", "to-absolute-glob": "^2.0.0", "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" } }, - "glob-watcher": { + "node_modules/glob-watcher": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", "dev": true, - "requires": { + "dependencies": { "anymatch": "^2.0.0", "async-done": "^1.2.0", "chokidar": "^2.0.0", @@ -1454,78 +1800,99 @@ "just-debounce": "^1.0.0", "normalize-path": "^3.0.0", "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }, - "global-modules": { + "node_modules/global-modules": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, - "requires": { + "dependencies": { "global-prefix": "^1.0.1", "is-windows": "^1.0.1", "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "global-prefix": { + "node_modules/global-prefix": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", "dev": true, - "requires": { + "dependencies": { "expand-tilde": "^2.0.2", "homedir-polyfill": "^1.0.1", "ini": "^1.3.4", "is-windows": "^1.0.1", "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" } }, - "glogg": { + "node_modules/glogg": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", "dev": true, - "requires": { + "dependencies": { "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "gulp": { + "node_modules/gulp": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", "dev": true, - "requires": { + "dependencies": { "glob-watcher": "^5.0.3", "gulp-cli": "^2.2.0", "undertaker": "^1.2.1", "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" } }, - "gulp-bump": { + "node_modules/gulp-bump": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/gulp-bump/-/gulp-bump-3.2.0.tgz", "integrity": "sha512-j3Yvi0QQZEN1HsXArQCBMdX5jedQZ1Cul3W1VZrvKal/Z4Slb6Z7UQLQyPaLm0heNdJKCjpKHgkYSR8VhfPlTA==", "dev": true, - "requires": { + "dependencies": { "bump-regex": "^4.1.0", "plugin-error": "^1.0.1", "plugin-log": "^0.1.0", "semver": "^5.3.0", "through2": "^2.0.1" + }, + "engines": { + "node": ">= 0.9.0" } }, - "gulp-cli": { + "node_modules/gulp-cli": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", "dev": true, - "requires": { + "dependencies": { "ansi-colors": "^1.0.1", "archy": "^1.0.0", "array-sort": "^1.0.0", @@ -1544,42 +1911,49 @@ "semver-greatest-satisfied-range": "^1.1.0", "v8flags": "^3.2.0", "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" } }, - "gulp-exec": { + "node_modules/gulp-exec": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/gulp-exec/-/gulp-exec-5.0.0.tgz", "integrity": "sha512-XFW5GJr5gpdRc7nAS6fNK2cqtLDjNnIKLbcVGIA6XAWCx7E4aVn/pzEJm6NvjtIU9VMsl4igkkSAo8Le8L1Lww==", "dev": true, - "requires": { + "dependencies": { "plugin-error": "^1.0.1", "through2": "^3.0.1" - }, + } + }, + "node_modules/gulp-exec/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dev": true, "dependencies": { - "through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - } + "inherits": "^2.0.4", + "readable-stream": "2 || 3" } }, - "gulp-rename": { + "node_modules/gulp-rename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-2.0.0.tgz", "integrity": "sha512-97Vba4KBzbYmR5VBs9mWmK+HwIf5mj+/zioxfZhOKeXtx5ZjBk57KFlePf5nxq9QsTtFl0ejnHE3zTC9MHXqyQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "gulp-typescript": { + "node_modules/gulp-typescript": { "version": "6.0.0-alpha.1", "resolved": "https://registry.npmjs.org/gulp-typescript/-/gulp-typescript-6.0.0-alpha.1.tgz", "integrity": "sha512-KoT0TTfjfT7w3JItHkgFH1T/zK4oXWC+a8xxKfniRfVcA0Fa1bKrIhztYelYmb+95RB80OLMBreknYkdwzdi2Q==", "dev": true, - "requires": { + "dependencies": { "ansi-colors": "^4.1.1", "plugin-error": "^1.0.1", "source-map": "^0.7.3", @@ -1587,476 +1961,638 @@ "vinyl": "^2.2.0", "vinyl-fs": "^3.0.3" }, + "engines": { + "node": ">= 8" + }, + "peerDependencies": { + "typescript": "~2.7.1 || >=2.8.0-dev || >=2.9.0-dev || ~3.0.0 || >=3.0.0-dev || >=3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev " + } + }, + "node_modules/gulp-typescript/node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/gulp-typescript/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dev": true, "dependencies": { - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true - }, - "through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - } + "inherits": "^2.0.4", + "readable-stream": "2 || 3" } }, - "gulp-zip": { + "node_modules/gulp-zip": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/gulp-zip/-/gulp-zip-5.1.0.tgz", "integrity": "sha512-XZr/y91IliK/SpR74g3TkZejGkGEmK7CSDjSghT1jXshgO+dFvpLIz9w9fpuwkew6i7k4F+G24TubNgq1ISzEw==", "dev": true, - "requires": { + "dependencies": { "get-stream": "^5.2.0", "plugin-error": "^1.0.1", "through2": "^3.0.1", "vinyl": "^2.1.0", "yazl": "^2.5.1" }, - "dependencies": { - "through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "gulp": ">=4" + }, + "peerDependenciesMeta": { + "gulp": { + "optional": true } } }, - "gulplog": { + "node_modules/gulp-zip/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/gulplog": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", "dev": true, - "requires": { + "dependencies": { "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "has": { + "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, - "requires": { + "dependencies": { "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" } }, - "has-ansi": { + "node_modules/has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-cors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", - "dev": true + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "has-value": { + "node_modules/has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, - "requires": { + "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-values": { + "node_modules/has-values": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, - "requires": { + "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=0.10.0" } }, - "homedir-polyfill": { + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, - "requires": { + "dependencies": { "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "hosted-git-info": { + "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, - "http": { + "node_modules/http": { "version": "0.0.1-security", "resolved": "https://registry.npmjs.org/http/-/http-0.0.1-security.tgz", "integrity": "sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==", "dev": true }, - "indent-string": { + "node_modules/indent-string": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", "dev": true, - "requires": { + "dependencies": { "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "inflight": { + "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "requires": { + "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, - "inherits": { + "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "ini": { + "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "interpret": { + "node_modules/interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "invert-kv": { + "node_modules/invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-absolute": { + "node_modules/is-absolute": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, - "requires": { + "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-accessor-descriptor": { + "node_modules/is-accessor-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.0" }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "is-arrayish": { + "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "is-binary-path": { + "node_modules/is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", "dev": true, - "requires": { + "dependencies": { "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-buffer": { + "node_modules/is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, - "requires": { + "dependencies": { "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-data-descriptor": { + "node_modules/is-data-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.0" }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "is-descriptor": { + "node_modules/is-descriptor": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, - "requires": { + "dependencies": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "is-extendable": { + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-extglob": { + "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-finite": { + "node_modules/is-finite": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "is-fullwidth-code-point": { + "node_modules/is-fullwidth-code-point": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", "dev": true, - "requires": { + "dependencies": { "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-glob": { + "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "requires": { + "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-module": { + "node_modules/is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "dev": true }, - "is-negated-glob": { + "node_modules/is-negated-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", - "dev": true + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-number": { + "node_modules/is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^3.0.2" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-plain-object": { + "node_modules/is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-reference": { + "node_modules/is-reference": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", "dev": true, - "requires": { + "dependencies": { "@types/estree": "*" } }, - "is-relative": { + "node_modules/is-relative": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, - "requires": { + "dependencies": { "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-unc-path": { + "node_modules/is-unc-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, - "requires": { + "dependencies": { "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-utf8": { + "node_modules/is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", "dev": true }, - "is-valid-glob": { + "node_modules/is-valid-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", - "dev": true + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-windows": { + "node_modules/is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "isarray": { + "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, - "isexe": { + "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "isobject": { + "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "json-stable-stringify-without-jsonify": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "just-debounce": { + "node_modules/just-debounce": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", "dev": true }, - "kind-of": { + "node_modules/kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "last-run": { + "node_modules/last-run": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", "dev": true, - "requires": { + "dependencies": { "default-resolution": "^2.0.0", "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "lazystream": { + "node_modules/lazystream": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" } }, - "lcid": { + "node_modules/lcid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", "dev": true, - "requires": { + "dependencies": { "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "lead": { + "node_modules/lead": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", "dev": true, - "requires": { + "dependencies": { "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" } }, - "liftoff": { + "node_modules/liftoff": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", "dev": true, - "requires": { + "dependencies": { "extend": "^3.0.0", "findup-sync": "^3.0.0", "fined": "^1.0.1", @@ -2066,129 +2602,159 @@ "rechoir": "^0.6.2", "resolve": "^1.1.7" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "load-json-file": { + "node_modules/load-json-file": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^2.2.0", "pify": "^2.0.0", "pinkie-promise": "^2.0.0", "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "loud-rejection": { + "node_modules/loud-rejection": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", "dev": true, - "requires": { + "dependencies": { "currently-unhandled": "^0.4.1", "signal-exit": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "magic-string": { - "version": "0.25.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", - "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, - "requires": { - "sourcemap-codec": "^1.4.4" + "dependencies": { + "sourcemap-codec": "^1.4.8" } }, - "make-iterator": { + "node_modules/make-iterator": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.2" }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "map-cache": { + "node_modules/map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "map-obj": { + "node_modules/map-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "map-visit": { + "node_modules/map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, - "requires": { + "dependencies": { "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "matchdep": { + "node_modules/matchdep": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", "dev": true, - "requires": { + "dependencies": { "findup-sync": "^2.0.0", "micromatch": "^3.0.4", "resolve": "^1.4.0", "stack-trace": "0.0.10" }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, "dependencies": { - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "meow": { + "node_modules/meow": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", "dev": true, - "requires": { + "dependencies": { "camelcase-keys": "^2.0.0", "decamelize": "^1.1.2", "loud-rejection": "^1.0.0", @@ -2199,20 +2765,26 @@ "read-pkg-up": "^1.0.1", "redent": "^1.0.0", "trim-newlines": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "merge2": { + "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8" + } }, - "micromatch": { + "node_modules/micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, - "requires": { + "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", "braces": "^2.3.1", @@ -2227,128 +2799,163 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.2" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "mime-db": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", - "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", - "dev": true + "node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, - "mime-types": { - "version": "2.1.34", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", - "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "requires": { - "mime-db": "1.51.0" + "engines": { + "node": ">=0.10.0" } }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "requires": { + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "mixin-deep": { + "node_modules/mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, - "requires": { + "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "ms": { + "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "mute-stdout": { + "node_modules/mute-stdout": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", "dev": true, "optional": true }, - "nanomatch": { + "node_modules/nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, - "requires": { + "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", "define-property": "^2.0.2", @@ -2361,533 +2968,665 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "node_modules/nanomatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", "dev": true }, - "normalize-package-data": { + "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "requires": { + "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }, - "normalize-path": { + "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "now-and-later": { + "node_modules/now-and-later": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", "dev": true, - "requires": { + "dependencies": { "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" } }, - "number-is-nan": { + "node_modules/number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "object-copy": { + "node_modules/object-copy": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, - "requires": { + "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", "kind-of": "^3.0.3" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "object-keys": { + "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4" + } }, - "object-visit": { + "node_modules/object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, - "requires": { + "dependencies": { "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.defaults": { + "node_modules/object.defaults": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", "dev": true, - "requires": { + "dependencies": { "array-each": "^1.0.1", "array-slice": "^1.0.0", "for-own": "^1.0.0", "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.map": { + "node_modules/object.map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", "dev": true, - "requires": { + "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.pick": { + "node_modules/object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, - "requires": { + "dependencies": { "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.reduce": { + "node_modules/object.reduce": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", "dev": true, - "requires": { + "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "once": { + "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "requires": { + "dependencies": { "wrappy": "1" } }, - "ordered-read-streams": { + "node_modules/ordered-read-streams": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "^2.0.1" } }, - "os-locale": { + "node_modules/os-locale": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", "dev": true, - "requires": { + "dependencies": { "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "parse-filepath": { + "node_modules/parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dev": true, - "requires": { + "dependencies": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" } }, - "parse-json": { + "node_modules/parse-json": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", "dev": true, - "requires": { + "dependencies": { "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "parse-node-version": { + "node_modules/parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "parse-passwd": { + "node_modules/parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", - "dev": true - }, - "parseqs": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz", - "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==", - "dev": true - }, - "parseuri": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz", - "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==", - "dev": true + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "pascalcase": { + "node_modules/pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path": { + "node_modules/path": { "version": "0.12.7", "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", "dev": true, - "requires": { + "dependencies": { "process": "^0.11.1", "util": "^0.10.3" } }, - "path-dirname": { + "node_modules/path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", "dev": true }, - "path-exists": { + "node_modules/path-exists": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", "dev": true, - "requires": { + "dependencies": { "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path-parse": { + "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "path-root": { + "node_modules/path-root": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", "dev": true, - "requires": { + "dependencies": { "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "path-root-regex": { + "node_modules/path-root-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", - "dev": true + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path-type": { + "node_modules/path-type": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.2", "pify": "^2.0.0", "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "dev": true + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "pify": { + "node_modules/pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "pinkie": { + "node_modules/pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "pinkie-promise": { + "node_modules/pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, - "requires": { + "dependencies": { "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "plugin-error": { + "node_modules/plugin-error": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", "dev": true, - "requires": { + "dependencies": { "ansi-colors": "^1.0.1", "arr-diff": "^4.0.0", "arr-union": "^3.1.0", "extend-shallow": "^3.0.2" }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/plugin-error/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "plugin-log": { + "node_modules/plugin-log": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/plugin-log/-/plugin-log-0.1.0.tgz", - "integrity": "sha1-hgSc9qsQgzOYqTHzaJy67nteEzM=", + "integrity": "sha512-TzmfWRMEFAnrZbI4GfyXv9Gp5E71eby3gmvnP6LEfmYbVC8FPN2RBRhwxg4sjIg+fy8AJ3mczhLXvk0pzHPeMg==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true, - "requires": { + "dependencies": { "chalk": "^1.1.1", "dateformat": "^1.0.11" + }, + "engines": { + "node": ">= 0.9.0" } }, - "posix-character-classes": { + "node_modules/posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "pretty-hrtime": { + "node_modules/pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "process": { + "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "pump": { + "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "pumpify": { + "node_modules/pumpify": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, - "requires": { + "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" - }, + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "read-pkg": { + "node_modules/read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", "dev": true, - "requires": { + "dependencies": { "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "read-pkg-up": { + "node_modules/read-pkg-up": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", "dev": true, - "requires": { + "dependencies": { "find-up": "^1.0.0", "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, - "requires": { + "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", @@ -2897,341 +3636,423 @@ "util-deprecate": "~1.0.1" } }, - "readdirp": { + "node_modules/readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" } }, - "rechoir": { + "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, - "requires": { + "dependencies": { "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" } }, - "redent": { + "node_modules/redent": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", "dev": true, - "requires": { + "dependencies": { "indent-string": "^2.1.0", "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "regex-not": { + "node_modules/regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "remove-bom-buffer": { + "node_modules/remove-bom-buffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", "dev": true, - "requires": { + "dependencies": { "is-buffer": "^1.1.5", "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "remove-bom-stream": { + "node_modules/remove-bom-stream": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", "dev": true, - "requires": { + "dependencies": { "remove-bom-buffer": "^3.0.0", "safe-buffer": "^5.1.0", "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "remove-trailing-separator": { + "node_modules/remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", "dev": true }, - "repeat-element": { + "node_modules/repeat-element": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "repeat-string": { + "node_modules/repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "repeating": { + "node_modules/repeating": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", "dev": true, - "requires": { + "dependencies": { "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "replace-ext": { + "node_modules/replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "replace-homedir": { + "node_modules/replace-homedir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1", "is-absolute": "^1.0.0", "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }, - "require-directory": { + "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "require-main-filename": { + "node_modules/require-main-filename": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", "dev": true }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "resolve-dir": { + "node_modules/resolve-dir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, - "requires": { + "dependencies": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "resolve-options": { + "node_modules/resolve-options": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", "dev": true, - "requires": { + "dependencies": { "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "resolve-url": { + "node_modules/resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", "dev": true }, - "ret": { + "node_modules/ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.12" + } }, - "rollup": { - "version": "2.70.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.70.2.tgz", - "integrity": "sha512-EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg==", + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, - "requires": { - "fsevents": "~2.3.2" + "bin": { + "rollup": "dist/bin/rollup" }, - "dependencies": { - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - } + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "rollup-plugin-node-resolve": { + "node_modules/rollup-plugin-node-resolve": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz", "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve.", "dev": true, - "requires": { + "dependencies": { "@types/resolve": "0.0.8", "builtin-modules": "^3.1.0", "is-module": "^1.0.0", "resolve": "^1.11.1", "rollup-pluginutils": "^2.8.1" }, + "peerDependencies": { + "rollup": ">=1.11.0" + } + }, + "node_modules/rollup-plugin-node-resolve/node_modules/@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dev": true, "dependencies": { - "@types/resolve": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", - "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - } + "@types/node": "*" } }, - "rollup-pluginutils": { + "node_modules/rollup-pluginutils": { "version": "2.8.2", "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", "dev": true, - "requires": { - "estree-walker": "^0.6.1" - }, "dependencies": { - "estree-walker": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", - "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", - "dev": true - } + "estree-walker": "^0.6.1" } }, - "rollup-stream": { + "node_modules/rollup-pluginutils/node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "node_modules/rollup-stream": { "version": "1.24.1", "resolved": "https://registry.npmjs.org/rollup-stream/-/rollup-stream-1.24.1.tgz", "integrity": "sha512-iQ159xbWSOPc7ey8tjEYf7pCaQwBz3ov37KNCeDewqh6Qj1gntAgZSmmEJIPs2niXMDNqVZ3rnTFXBXhZ+sYSg==", "dev": true, - "requires": { - "rollup": "^0.49.2" - }, "dependencies": { - "rollup": { - "version": "0.49.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-0.49.3.tgz", - "integrity": "sha512-n/vHRX4GhMIyGZEQRANcSFVtvz99bSRbNMuoC33ar9f4CViqffyF9WklLb2mxIQ6I/uFf7wDEpc66bXBFE7FvA==", - "dev": true - } + "rollup": "^0.49.2" + } + }, + "node_modules/rollup-stream/node_modules/rollup": { + "version": "0.49.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-0.49.3.tgz", + "integrity": "sha512-n/vHRX4GhMIyGZEQRANcSFVtvz99bSRbNMuoC33ar9f4CViqffyF9WklLb2mxIQ6I/uFf7wDEpc66bXBFE7FvA==", + "dev": true, + "bin": { + "rollup": "bin/rollup" } }, - "safe-buffer": { + "node_modules/rollup/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "safe-regex": { + "node_modules/safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, - "requires": { + "dependencies": { "ret": "~0.1.10" } }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true + "node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } }, - "semver-greatest-satisfied-range": { + "node_modules/semver-greatest-satisfied-range": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", "dev": true, - "requires": { + "dependencies": { "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" } }, - "set-blocking": { + "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "set-value": { + "node_modules/set-value": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", "is-plain-object": "^2.0.3", "split-string": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "dependencies": { - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "signal-exit": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", - "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "snapdragon": { + "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, - "requires": { + "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", "define-property": "^0.2.5", @@ -3241,235 +4062,283 @@ "source-map-resolve": "^0.5.0", "use": "^3.1.0" }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "snapdragon-node": { + "node_modules/snapdragon-node": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, - "requires": { + "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", "snapdragon-util": "^3.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - } + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "snapdragon-util": { + "node_modules/snapdragon-util": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^3.2.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "socket.io": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.3.2.tgz", - "integrity": "sha512-6S5tV4jcY6dbZ/lLzD6EkvNWI3s81JO6ABP/EpvOlK1NPOcIj3AS4khi6xXw6JlZCASq82HQV4SapfmVMMl2dg==", + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", "dev": true, - "requires": { + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/socket.io": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.2.tgz", + "integrity": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==", + "dev": true, + "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", + "cors": "~2.8.5", "debug": "~4.3.2", - "engine.io": "~6.0.0", - "socket.io-adapter": "~2.3.2", - "socket.io-parser": "~4.0.4" - }, - "dependencies": { - "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } + "engine.io": "~6.5.2", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.2.0" } }, - "socket.io-adapter": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz", - "integrity": "sha512-PBZpxUPYjmoogY0aoaTmo1643JelsaS1CiAwNjRVdrI0X9Seuc19Y2Wife8k88avW6haG8cznvwbubAZwH4Mtg==", - "dev": true + "node_modules/socket.io-adapter": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dev": true, + "dependencies": { + "ws": "~8.11.0" + } }, - "socket.io-client": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.3.2.tgz", - "integrity": "sha512-2B9LqSunN60yV8F7S84CCEEcgbYNfrn7ejIInZtLZ7ppWtiX8rGZAjvdCvbnC8bqo/9RlCNOUsORLyskxSFP1g==", + "node_modules/socket.io-client": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.2.tgz", + "integrity": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==", "dev": true, - "requires": { - "@socket.io/component-emitter": "~3.0.0", - "backo2": "~1.0.2", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.0.1", - "parseuri": "0.0.6", - "socket.io-parser": "~4.1.1" - }, - "dependencies": { - "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "socket.io-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.1.1.tgz", - "integrity": "sha512-USQVLSkDWE5nbcY760ExdKaJxCE65kcsG/8k5FDGZVVxpD1pA7hABYXYkCUvxUuYYh/+uQw0N/fvBzfT8o07KA==", - "dev": true, - "requires": { - "@socket.io/component-emitter": "~3.0.0", - "debug": "~4.3.1" - } + "engine.io-client": "~6.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-client/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "socket.io-parser": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz", - "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==", + "node_modules/socket.io-client/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/socket.io-parser": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", + "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", "dev": true, - "requires": { - "@types/component-emitter": "^1.2.10", - "component-emitter": "~1.3.0", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "dependencies": { - "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "node_modules/socket.io-parser/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "source-map-resolve": { + "node_modules/socket.io/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/socket.io/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, - "requires": { + "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", "resolve-url": "^0.2.1", @@ -3477,401 +4346,503 @@ "urix": "^0.1.0" } }, - "source-map-url": { + "node_modules/source-map-url": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", "dev": true }, - "sourcemap-codec": { + "node_modules/sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", "dev": true }, - "sparkles": { + "node_modules/sparkles": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, - "requires": { + "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-exceptions": { + "node_modules/spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, - "spdx-expression-parse": { + "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "requires": { + "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-license-ids": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", - "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==", + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", "dev": true }, - "split-string": { + "node_modules/split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^3.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" } }, - "stack-trace": { + "node_modules/split-string/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "dev": true + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true, + "engines": { + "node": "*" + } }, - "static-extend": { + "node_modules/static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, - "requires": { + "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - } + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "stream-exhaust": { + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-exhaust": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", "dev": true }, - "stream-shift": { + "node_modules/stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, - "string-width": { + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", "dev": true, - "requires": { + "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { + "node_modules/strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "strip-bom": { + "node_modules/strip-bom": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", "dev": true, - "requires": { + "dependencies": { "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", "dev": true, - "requires": { + "dependencies": { "get-stdin": "^4.0.1" + }, + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "supports-color": { + "node_modules/supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "sver-compat": { + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", "dev": true, - "requires": { + "dependencies": { "es6-iterator": "^2.0.1", "es6-symbol": "^3.1.1" } }, - "through2": { + "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, - "through2-filter": { + "node_modules/through2-filter": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", "dev": true, - "requires": { + "dependencies": { "through2": "~2.0.0", "xtend": "~4.0.0" } }, - "time-stamp": { + "node_modules/time-stamp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", - "dev": true + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "to-absolute-glob": { + "node_modules/to-absolute-glob": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", "dev": true, - "requires": { + "dependencies": { "is-absolute": "^1.0.0", "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "to-object-path": { + "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^3.0.2" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "to-regex": { + "node_modules/to-regex": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, - "requires": { + "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", "regex-not": "^1.0.2", "safe-regex": "^1.1.0" }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - } + "engines": { + "node": ">=0.10.0" } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, - "requires": { + "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "to-through": { + "node_modules/to-through": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", "dev": true, - "requires": { + "dependencies": { "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "trim-newlines": { + "node_modules/trim-newlines": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true + "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "type": { + "node_modules/type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", "dev": true }, - "typedarray": { + "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "dev": true }, - "typescript": { - "version": "4.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz", - "integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==", - "dev": true + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } }, - "unc-path-regex": { + "node_modules/unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", - "dev": true + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "undertaker": { + "node_modules/undertaker": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", "dev": true, - "requires": { + "dependencies": { "arr-flatten": "^1.0.1", "arr-map": "^2.0.0", "bach": "^1.0.0", @@ -3882,168 +4853,203 @@ "object.defaults": "^1.0.0", "object.reduce": "^1.0.0", "undertaker-registry": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "undertaker-registry": { + "node_modules/undertaker-registry": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=", - "dev": true + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "union-value": { + "node_modules/union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, - "requires": { + "dependencies": { "arr-union": "^3.1.0", "get-value": "^2.0.6", "is-extendable": "^0.1.1", "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "unique-stream": { + "node_modules/unique-stream": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", "dev": true, - "requires": { + "dependencies": { "json-stable-stringify-without-jsonify": "^1.0.1", "through2-filter": "^3.0.0" } }, - "unset-value": { + "node_modules/unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, - "requires": { + "dependencies": { "has-value": "^0.3.1", "isobject": "^3.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "upath": { + "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } }, - "urix": { + "node_modules/urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", "dev": true }, - "use": { + "node_modules/use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "util": { + "node_modules/util": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "dev": true, - "requires": { - "inherits": "2.0.3" - }, "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } + "inherits": "2.0.3" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true }, - "v8flags": { + "node_modules/v8flags": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "validate-npm-package-license": { + "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "requires": { + "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "value-or-function": { + "node_modules/value-or-function": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", - "dev": true + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "vinyl": { + "node_modules/vinyl": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", "dev": true, - "requires": { + "dependencies": { "clone": "^2.1.1", "clone-buffer": "^1.0.0", "clone-stats": "^1.0.0", "cloneable-readable": "^1.0.0", "remove-trailing-separator": "^1.0.1", "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "vinyl-fs": { + "node_modules/vinyl-fs": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", "dev": true, - "requires": { + "dependencies": { "fs-mkdirp-stream": "^1.0.0", "glob-stream": "^6.1.0", "graceful-fs": "^4.0.0", @@ -4061,24 +5067,27 @@ "value-or-function": "^3.0.0", "vinyl": "^2.0.0", "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }, - "vinyl-source-stream": { + "node_modules/vinyl-source-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-2.0.0.tgz", - "integrity": "sha1-84pa+53R6Ttl1VBGmsYYKsT1S44=", + "integrity": "sha512-Y5f1wRGajOfYukhv8biIGA7iZiY8UOIc3zJ6zcUNIbRG1BVuXzBsfSfe7MUJTttVkuy64k/pGQtJdd/aIt+hbw==", "dev": true, - "requires": { + "dependencies": { "through2": "^2.0.3", "vinyl": "^2.1.0" } }, - "vinyl-sourcemap": { + "node_modules/vinyl-sourcemap": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", "dev": true, - "requires": { + "dependencies": { "append-buffer": "^1.0.2", "convert-source-map": "^1.5.0", "graceful-fs": "^4.1.6", @@ -4087,79 +5096,110 @@ "remove-bom-buffer": "^3.0.0", "vinyl": "^2.0.0" }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "which": { + "node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "which-module": { + "node_modules/which-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", "dev": true }, - "wrap-ansi": { + "node_modules/wrap-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", "dev": true, - "requires": { + "dependencies": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", - "dev": true + "node_modules/ws": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xmlhttprequest-ssl": { + "node_modules/xmlhttprequest-ssl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "xtend": { + "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4" + } }, - "y18n": { + "node_modules/y18n": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", "dev": true }, - "yargs": { + "node_modules/yargs": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^3.0.0", "cliui": "^3.2.0", "decamelize": "^1.1.1", @@ -4173,48 +5213,44 @@ "which-module": "^1.0.0", "y18n": "^3.2.1", "yargs-parser": "^5.0.1" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^3.0.0", "object.assign": "^4.1.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } } }, - "yazl": { + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yazl": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz", "integrity": "sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==", "dev": true, - "requires": { + "dependencies": { "buffer-crc32": "~0.2.3" } - }, - "yeast": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", - "dev": true } } } diff --git a/src/package.json b/src/package.json index e361b480..2a5a5e1c 100644 --- a/src/package.json +++ b/src/package.json @@ -31,4 +31,4 @@ "typescript": "^4.4.4", "vinyl-source-stream": "^2.0.0" } -} +} \ No newline at end of file diff --git a/src/tsconfig.json b/src/tsconfig.json index 961907ad..b25778e1 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -20,10 +20,10 @@ "experimentalDecorators": true, "noImplicitAny": false, "outDir": "build", - "rootDir": ".", + "rootDir": "./", "baseUrl": ".", "typeRoots": [ - ".types/**", + "src/types/**", "./node_modules/@types" ] } diff --git a/src/wasm b/src/wasm new file mode 160000 index 00000000..6204690a --- /dev/null +++ b/src/wasm @@ -0,0 +1 @@ +Subproject commit 6204690a4bd16177f7a1ef7925cfd322a34f9038