diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..529a854c3e7c0199b9cdd6352e81673879830e55 --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +# Dependencies +node_modules/ +/.pnp +.pnp.js +.yarn/install-state.gz + +# Testing +/coverage + +# Production +/build +/dist +apps/frontend/dist +apps/backend/tmp + +# Misc +.DS_Store +*.pem + +# Debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Environment files +.env +.env*.local +apps/backend/.env +apps/frontend/.env + +# Vercel +.vercel + +# TypeScript +*.tsbuildinfo +next-env.d.ts + +# ngrok +ngrok.exe +ngrok.yml +*.ngrok-free.app + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python + +# Temporary files +*.tmp +*.temp +tmp/ +temp/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +Thumbs.db +.DS_Store + +# Rhubarb (keep the executable but ignore temp files) +Rhubarb-Lip-Sync-*/temp/ diff --git a/CLEANUP_SUMMARY.md b/CLEANUP_SUMMARY.md new file mode 100644 index 0000000000000000000000000000000000000000..bbe4cc651b09bc45b52519f1c607a7f71727490d --- /dev/null +++ b/CLEANUP_SUMMARY.md @@ -0,0 +1,68 @@ +# โœ… Cleanup Complete - Ready for Deployment! + +## ๐Ÿงน What Was Cleaned: + +### Removed: +- โŒ OpenAI dependencies (`@langchain/openai`, `openai`, `langchain`, `zod`) +- โŒ ElevenLabs API references +- โŒ ngrok (stopped and removed from workflow) + +### Kept: +- โœ… Custom Chat API (`https://finalchatdoc.onrender.com`) +- โœ… Local Python TTS (edge-tts) +- โœ… Lip sync functionality (Rhubarb) +- โœ… All avatar features + +## ๐Ÿ“ฆ New Files Created: + +1. **`DEPLOY.md`** - Complete deployment guide +2. **`railway.toml`** - Railway configuration +3. **`nixpacks.toml`** - Python + Node.js setup for Railway +4. **`vercel.json`** - Vercel frontend configuration + +## ๐Ÿš€ Ready to Deploy! + +### Quick Start: + +**Option 1: Railway + Vercel (Recommended)** +1. Deploy backend to Railway +2. Deploy frontend to Vercel +3. Set `VITE_API_URL` in Vercel to your Railway URL + +**Option 2: Railway Only** +1. Deploy backend to Railway +2. Deploy frontend to Railway (separate service) +3. Set `VITE_API_URL` in frontend service + +## ๐Ÿ“‹ Deployment Checklist: + +- [ ] Push code to GitHub +- [ ] Create Railway account +- [ ] Deploy backend to Railway +- [ ] Copy Railway backend URL +- [ ] Create Vercel account (if using Vercel) +- [ ] Deploy frontend to Vercel/Railway +- [ ] Set `VITE_API_URL` environment variable +- [ ] Test the deployment + +## ๐Ÿ”— Next Steps: + +1. **Commit and Push:** + ```bash + git add . + git commit -m "Prepare for deployment - removed OpenAI/ElevenLabs" + git push origin main + ``` + +2. **Follow DEPLOY.md** for detailed deployment instructions + +## ๐Ÿ’ก Important Notes: + +- Backend requires Python (included in nixpacks.toml) +- No API keys needed (custom API is external) +- Frontend needs `VITE_API_URL` set to backend URL +- Health check available at `/health` + +## ๐ŸŽ‰ Your Avatar is Ready for the World! + +Once deployed, you'll have permanent URLs that work 24/7 without needing to keep your computer running! diff --git a/DEPLOY.md b/DEPLOY.md new file mode 100644 index 0000000000000000000000000000000000000000..79fa59381ad0faab7251906f54ce38f9773e59af --- /dev/null +++ b/DEPLOY.md @@ -0,0 +1,116 @@ +# Talking Avatar with AI - Deployment Guide + +## ๐Ÿš€ Deployment Options + +### Option 1: Railway (Backend) + Vercel (Frontend) - Recommended + +#### Deploy Backend to Railway: + +1. **Create Railway Account** + - Go to https://railway.app + - Sign up with GitHub + +2. **Create New Project** + - Click "New Project" + - Select "Deploy from GitHub repo" + - Choose your repository + - Railway will auto-detect the Node.js app + +3. **Configure Environment** + - No environment variables needed (custom API is external) + - Railway will automatically install dependencies + +4. **Deploy** + - Railway will build and deploy automatically + - Copy your Railway URL (e.g., `https://your-app.railway.app`) + +#### Deploy Frontend to Vercel: + +1. **Create Vercel Account** + - Go to https://vercel.com + - Sign up with GitHub + +2. **Import Project** + - Click "New Project" + - Import your GitHub repository + - Framework Preset: Vite + - Root Directory: `apps/frontend` + +3. **Configure Build Settings** + - Build Command: `npm run build` + - Output Directory: `dist` + - Install Command: `npm install` + +4. **Add Environment Variable** + - Name: `VITE_API_URL` + - Value: Your Railway backend URL (e.g., `https://your-app.railway.app`) + +5. **Deploy** + - Click "Deploy" + - Vercel will build and deploy your frontend + +### Option 2: Railway Only (Full Stack) + +You can deploy both backend and frontend on Railway: + +1. **Deploy Backend** (same as above) + +2. **Deploy Frontend as Separate Service** + - Create another Railway service + - Point to same repo + - Root Directory: `apps/frontend` + - Build Command: `npm run build` + - Start Command: `npx serve -s dist -l $PORT` + - Add environment variable: `VITE_API_URL` = your backend URL + +## ๐Ÿ“‹ Pre-Deployment Checklist + +- โœ… Removed OpenAI dependencies +- โœ… Removed ElevenLabs dependencies +- โœ… Using custom API for chat +- โœ… Using local Python TTS +- โœ… Health check endpoint added +- โœ… CORS enabled for all origins + +## ๐Ÿ”ง Important Notes + +### Python Requirement +The backend uses Python for TTS. Make sure Python is available in your deployment environment: + +**For Railway:** +- Add a `nixpacks.toml` file (Railway auto-detects Python) + +**For Render/Other:** +- Use a buildpack that includes Python + +### Environment Variables + +**Backend:** None required (custom API URL is hardcoded) + +**Frontend:** +- `VITE_API_URL` - Your backend URL + +## ๐Ÿงช Testing After Deployment + +1. Test backend health: `https://your-backend-url/health` +2. Test frontend: `https://your-frontend-url` +3. Send a message and verify avatar responds + +## ๐Ÿ†˜ Troubleshooting + +**Backend Issues:** +- Check Railway logs for Python errors +- Verify `/health` endpoint returns 200 +- Check if TTS script is executable + +**Frontend Issues:** +- Verify `VITE_API_URL` is set correctly +- Check browser console for CORS errors +- Ensure backend URL doesn't have trailing slash + +## ๐Ÿ“ฑ URLs After Deployment + +**Backend:** `https://your-app.railway.app` +**Frontend:** `https://your-app.vercel.app` + +Share the frontend URL with anyone! diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..76dccc506f9c1772244b22857c1981e3571b70e7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Talking Avatar with AI + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 30a6abf573953b67d786b1fba6d4d8ea3d1b3959..0188e7d51f6cde53726b78a5ad3b617df2fe7d63 100644 --- a/README.md +++ b/README.md @@ -1 +1,202 @@ -# HealBotAvatar \ No newline at end of file +# ๐Ÿค– Talking Avatar with AI + +An interactive 3D talking avatar powered by AI that can have natural conversations with users. The avatar features realistic lip-sync, facial expressions, and animations. + +![License](https://img.shields.io/badge/license-MIT-blue.svg) +![Node](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen) +![Python](https://img.shields.io/badge/python-3.8%2B-blue) + +## โœจ Features + +- ๐ŸŽญ **3D Animated Avatar** - Realistic 3D character with smooth animations +- ๐Ÿ’ฌ **AI-Powered Conversations** - Natural language chat using custom AI API +- ๐Ÿ—ฃ๏ธ **Text-to-Speech** - High-quality voice synthesis using Edge TTS +- ๐Ÿ‘„ **Lip Sync** - Accurate lip synchronization using Rhubarb Lip Sync +- ๐Ÿ˜Š **Facial Expressions** - Dynamic expressions based on conversation context +- ๐ŸŽค **Voice Input** - Browser-based speech recognition (Web Speech API) +- ๐Ÿ” **User Authentication** - Firebase authentication with personalized sessions +- ๐Ÿ“ฑ **Responsive Design** - Works on desktop and mobile devices + +## ๐Ÿ—๏ธ Architecture + +``` +talking-avatar-with-ai/ +โ”œโ”€โ”€ apps/ +โ”‚ โ”œโ”€โ”€ backend/ # Express.js API server +โ”‚ โ”‚ โ”œโ”€โ”€ modules/ # Custom API, lip-sync logic +โ”‚ โ”‚ โ”œโ”€โ”€ utils/ # TTS utilities +โ”‚ โ”‚ โ””โ”€โ”€ server.js # Main server file +โ”‚ โ””โ”€โ”€ frontend/ # React + Vite application +โ”‚ โ”œโ”€โ”€ src/ +โ”‚ โ”‚ โ”œโ”€โ”€ components/ # Avatar, Chat UI +โ”‚ โ”‚ โ”œโ”€โ”€ hooks/ # Speech, authentication +โ”‚ โ”‚ โ””โ”€โ”€ contexts/ # Auth context +โ”‚ โ””โ”€โ”€ public/ +โ”‚ โ””โ”€โ”€ models/ # 3D avatar models +โ”œโ”€โ”€ Rhubarb-Lip-Sync-*/ # Lip sync engine +โ””โ”€โ”€ resources/ # Additional resources + +``` + +## ๐Ÿš€ Quick Start + +### Prerequisites + +- Node.js 18+ +- Python 3.8+ +- Git + +### Installation + +1. **Clone the repository** + ```bash + git clone https://github.com/YOUR_USERNAME/talking-avatar-with-ai.git + cd talking-avatar-with-ai + ``` + +2. **Install dependencies** + ```bash + # Install root dependencies + npm install + + # Install backend dependencies + cd apps/backend + npm install + + # Install frontend dependencies + cd ../frontend + npm install + ``` + +3. **Install Python dependencies** + ```bash + pip install edge-tts + ``` + +4. **Set up environment variables** + ```bash + # Backend + cd apps/backend + cp .env.example .env + # Edit .env if needed (no variables required for basic setup) + + # Frontend + cd ../frontend + cp .env.example .env + # Edit .env and set VITE_API_URL=http://localhost:3000 + ``` + +5. **Run the application** + + **Option 1: Run both services together (from root)** + ```bash + npm run dev + ``` + + **Option 2: Run separately** + ```bash + # Terminal 1 - Backend + cd apps/backend + npm run dev + + # Terminal 2 - Frontend + cd apps/frontend + npm run dev + ``` + +6. **Open your browser** + - Navigate to `http://localhost:5173` + - Start chatting with your avatar! + +## ๐ŸŒ Deployment + +See [DEPLOY.md](./DEPLOY.md) for detailed deployment instructions. + +### Quick Deploy Options: + +**Backend:** Railway, Render, or Heroku +**Frontend:** Vercel, Netlify, or Railway + +### Recommended Setup: +- **Backend** โ†’ Railway (includes Python support) +- **Frontend** โ†’ Vercel (optimized for React/Vite) + +## ๐Ÿ”ง Configuration + +### Custom API + +The avatar uses a custom chat API. To change it, edit: +```javascript +// apps/backend/modules/customAPI.mjs +const API_BASE_URL = "https://your-api-url.com"; +``` + +### Avatar Model + +To use a different 3D avatar: +1. Export your avatar as GLB format +2. Place in `apps/frontend/public/models/` +3. Update the path in `Avatar.jsx` + +### Voice Settings + +Modify TTS voice in: +```python +# apps/backend/utils/tts.py +voice = "en-US-AriaNeural" # Change to your preferred voice +``` + +## ๐Ÿ“š Tech Stack + +### Frontend +- **React** - UI framework +- **Three.js** - 3D rendering +- **@react-three/fiber** - React renderer for Three.js +- **@react-three/drei** - Useful helpers for R3F +- **Vite** - Build tool +- **Firebase** - Authentication + +### Backend +- **Express.js** - Web server +- **Node.js** - Runtime +- **Python** - TTS processing +- **Edge TTS** - Text-to-speech +- **Rhubarb Lip Sync** - Lip synchronization + +## ๐Ÿค Contributing + +Contributions are welcome! Please feel free to submit a Pull Request. + +1. Fork the repository +2. Create your feature branch (`git checkout -b feature/AmazingFeature`) +3. Commit your changes (`git commit -m 'Add some AmazingFeature'`) +4. Push to the branch (`git push origin feature/AmazingFeature`) +5. Open a Pull Request + +## ๐Ÿ“ License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## ๐Ÿ™ Acknowledgments + +- [Rhubarb Lip Sync](https://github.com/DanielSWolf/rhubarb-lip-sync) - Lip sync engine +- [Edge TTS](https://github.com/rany2/edge-tts) - Text-to-speech +- [Ready Player Me](https://readyplayer.me/) - Avatar creation (if used) +- [Three.js](https://threejs.org/) - 3D graphics library + +## ๐Ÿ“ง Contact + +For questions or support, please open an issue on GitHub. + +## ๐ŸŽฏ Roadmap + +- [ ] Multi-language support +- [ ] Custom avatar upload +- [ ] Voice cloning +- [ ] Emotion detection +- [ ] Screen sharing capability +- [ ] Mobile app version + +--- + +**Made with โค๏ธ by [Your Name]** diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/CHANGELOG.md b/Rhubarb-Lip-Sync-1.14.0-Windows/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..29a15f4ee461e4de68470e861c2cf8bfe05fe2e5 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/CHANGELOG.md @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2c2ff234b6c5f0b38d3689177ebecab5041d6242ec966cb1a5c535e6894d2c +size 13000 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/LICENSE.md b/Rhubarb-Lip-Sync-1.14.0-Windows/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..7b5d3238534184375a173bd46415248e8851a967 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/LICENSE.md @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a10d99959990ec6802c5e2d519fb23665affa7ba32abbdea5b251ee5f93af6 +size 27808 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/README.adoc b/Rhubarb-Lip-Sync-1.14.0-Windows/README.adoc new file mode 100644 index 0000000000000000000000000000000000000000..6dbbca3da23a74385983de3aed4bc2a3bc7dca52 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/README.adoc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7dcb74008ca9eb96f5f258ca4f82e9a49ed9614d93f89bc98bd27ac3a22b43 +size 23164 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/README.adoc b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/README.adoc new file mode 100644 index 0000000000000000000000000000000000000000..0840684a24166c49db4d1935dccd802a2b2d2748 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/README.adoc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1165e986f6e45c95b245cd3a01f568c90a818bfa00b13a0b7bcd901d7bbcf3 +size 4463 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/Rhubarb Lip Sync.jsx b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/Rhubarb Lip Sync.jsx new file mode 100644 index 0000000000000000000000000000000000000000..54cf757f34ebe98e1f22987eaa783327bc770e98 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/Rhubarb Lip Sync.jsx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9c03136a86cd834df38f5806307b405c3eec4e8a4b91829cf7f45c59dcb8bf +size 35084 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.aep b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.aep new file mode 100644 index 0000000000000000000000000000000000000000..6593374a9409b796c95d8ac1c3bed842d6b1cacb --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.aep @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0f7253ec2b1e133d28ab7325afdb74198aa634ebe45e1a2b3a24131044f62c +size 126966 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.ai b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.ai new file mode 100644 index 0000000000000000000000000000000000000000..7f17a25181d113ebbd3b602009181661a439bccd --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/egg.ai @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9996ea1fb25d6e735c18e6fbade6c18c620d10d47baea70fa78e8f3413b26eff +size 186489 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/riddle.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/riddle.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6fc7d033aab6eeb694b3090148b1b913ed4338f --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/AdobeAfterEffects/demo/riddle.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9370f8f4d6fb104ee526f2eb5da0d4697e44b03309cba13ee8aba52c0ca87c +size 639198 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/README.adoc b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/README.adoc new file mode 100644 index 0000000000000000000000000000000000000000..28d436570b34f25aa1ada8933be9adf00af7c78f --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/README.adoc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0badccdbd33a6ab47965964ed8ec89a62c70148f9fc6955150bf12de7ae5f21 +size 5128 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/rhubarb-for-spine-1.14.0.jar b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/rhubarb-for-spine-1.14.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..6ada32d2c466fdea7cc26464010c1f900d09772b --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/EsotericSoftwareSpine/rhubarb-for-spine-1.14.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa7de91a407376ecfc096ba48c2e9690e66fe89b338280d6ef0607e651b433a +size 17940018 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs new file mode 100644 index 0000000000000000000000000000000000000000..c560928872362c4d68e9f225a872c94f0b5cba6b --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3959a70eebee571b6efe81243ce213d7942708abfc776884953064f462481308 +size 10225 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs.config b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs.config new file mode 100644 index 0000000000000000000000000000000000000000..66bf9b473be339b2d120dff916f8a20f2bf32176 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Debug Rhubarb.cs.config @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9eb8de52956b24dae58adfdc5d226e5892f2e7df228f02d92ca4f96479007f6 +size 132 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs new file mode 100644 index 0000000000000000000000000000000000000000..237e94223d65d5674a6ae6164dd32eb92b0c9e42 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4dee925bb0f03e1c67ffa81b2ce11921fbcf4946112e4dda7131205c37fec29 +size 7264 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs.config b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs.config new file mode 100644 index 0000000000000000000000000000000000000000..66bf9b473be339b2d120dff916f8a20f2bf32176 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/Import Rhubarb.cs.config @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9eb8de52956b24dae58adfdc5d226e5892f2e7df228f02d92ca4f96479007f6 +size 132 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/README.adoc b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/README.adoc new file mode 100644 index 0000000000000000000000000000000000000000..166e10c232980f5be3cb41ff69d2ae78f1a9316b --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/extras/MagixVegas/README.adoc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca89b872c57f66bf3888ed86afba1245580e9bcc5261dbc50adf10518f41fdd +size 1823 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/README b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/README new file mode 100644 index 0000000000000000000000000000000000000000..4b12bae6b8b66063ef5ed4a175e0cfaca5a60aed --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/README @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b88de980568509c646d0527b8414beef136964391903b40996d32f737bf752e +size 1617 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feat.params b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feat.params new file mode 100644 index 0000000000000000000000000000000000000000..d40a8784251346f423f2721cdf7eb8bdbf286b27 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feat.params @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4883ca1680270667565cec30a0b827081799617bb825ff6adace06f50c178f +size 129 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feature_transform b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feature_transform new file mode 100644 index 0000000000000000000000000000000000000000..11c4a5e026637e4c3139aee800e1e80471bd6072 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/feature_transform @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05cd0ef213623137b6ac76d72922776c8a14f252e032c4a3f331d41760ef30cc +size 5660 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mdef b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mdef new file mode 100644 index 0000000000000000000000000000000000000000..39e71cb06f080d624d9d4503f7a33948b490d6c9 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mdef @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a100d7401e8d59ed597ea6083e0acca77e41637b7db6db66f43a0799a2eba840 +size 6992233 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/means b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/means new file mode 100644 index 0000000000000000000000000000000000000000..dbed8cb611123c89e4b49730ba2af89bf9a84a41 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/means @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c8a3c1b0718bc786f4c82ba1824b22cd9cdc7ffb0589559c08c0189884f0f1 +size 23675972 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mixture_weights b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mixture_weights new file mode 100644 index 0000000000000000000000000000000000000000..45f9ae866364d3b0cb809f84d965a6c5454cfdef --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/mixture_weights @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a756459b78bfaf85ad59215c77caaf03f9e58e91956975e33de7b8179d551c1f +size 657728 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/noisedict b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/noisedict new file mode 100644 index 0000000000000000000000000000000000000000..005ed0b02bd4e817e3bfe7dd0aad2716d58f6a9a --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/noisedict @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394633701a17db97a512838a79de395020fc571e0537b0498b2179f727642a48 +size 113 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/transition_matrices b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/transition_matrices new file mode 100644 index 0000000000000000000000000000000000000000..8d7e761928f941a30552dd5f5d15bbb854593650 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/transition_matrices @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020e3a8998d12db0d02b620aed95ee1534676fd8e50afaad29d5b432f1e6f893 +size 2272 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/variances b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/variances new file mode 100644 index 0000000000000000000000000000000000000000..e901539f84e71bd9fa3e8fdc9505ed7d311801bc --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/acoustic-model/variances @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bc86ddf763cf27d6194247cbf4f2e912d78789ced246811e7f323f1e8280da +size 23675972 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/cmudict-en-us.dict b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/cmudict-en-us.dict new file mode 100644 index 0000000000000000000000000000000000000000..86d50ad69aa19b3e892406ec53634a8a100c27d9 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/cmudict-en-us.dict @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de99dd2a24b63c653c1c30ab39388d05185cae36d0875f15c319b4ad6dc43af +size 3272051 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us-phone.lm.bin b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us-phone.lm.bin new file mode 100644 index 0000000000000000000000000000000000000000..0dafab6a2c42290e08591917319dc4df3392a304 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us-phone.lm.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57e0fa4191b096b1279cfe3a77927f52568fdecfc6624ddb5cec9527c763a54 +size 857195 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us.lm.bin b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us.lm.bin new file mode 100644 index 0000000000000000000000000000000000000000..20675b0ff86ffa7bc2e9764d3839a375b21dcf84 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/res/sphinx/en-us.lm.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db21d0642286677699e6dbc859d2e5395570222361999387ce60f6e1d01995d6 +size 27114385 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/rhubarb.exe b/Rhubarb-Lip-Sync-1.14.0-Windows/rhubarb.exe new file mode 100644 index 0000000000000000000000000000000000000000..35cbdd0265d4f3b224f0ba825d72e9fefc52520e --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/rhubarb.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e289c6b5939ef6b306a61e8105ec721fd8d52b3ce950d08891ea3cc7df5718d +size 2703360 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/README.adoc b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/README.adoc new file mode 100644 index 0000000000000000000000000000000000000000..b83529a334c07951166584b764b48e96ae1cbdc7 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/README.adoc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3138163d8de5e01ee039f900c8f0d73ec4d61f58d5645eeb62cf9694108c85b8 +size 344 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-flac-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-flac-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..02d91ff3228d1475a870399d963cec5c3b4801bc --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-flac-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491fee574896f2da599659b08498ea9b605bb4679dc38ce588490222831a0c31 +size 1937792 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audacity.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audacity.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c3ac3958bf6b01fa5e003cbe379e490c9abf65e --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audacity.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a5d297769ac42ffc8e54d0f3923ee0064ce8ecba14ccc874b31c25e5c8c9e1 +size 3840194 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audition.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audition.wav new file mode 100644 index 0000000000000000000000000000000000000000..d11a86cce64d1e154997936fe9a543d4c5ef62fb --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-audition.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5645586937fa012dfc051e2c38126c6221a1937dd2fbceebfddb971be53a44d +size 3845534 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e0c1a69f6d942e8416ac4ac7bc0ce2a5b9a2952 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4092089069670b6b1259f5cd34f91afa36066678f80464186118ddcff695923 +size 3840114 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-soundforge.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-soundforge.wav new file mode 100644 index 0000000000000000000000000000000000000000..341056659dbc305efe9a3d41e3e19f87ec14ca9f --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float32-soundforge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e91311e5d7a266cb15f057e60f59295b535f0bf3313c4d9cde54037cc6fa3f +size 3840078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float64-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float64-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b84ce5179f6e9c6e0c171c5b01d3cde207bdff1 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-float64-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf972bf29dc137ff022761260169dbd6e15c668f7cde69f1925de393fa88544 +size 7680114 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audacity.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audacity.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d44a081a4f31762be3b06fbdf81afa3fb26fa93 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audacity.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8d91cf1d1593a103b5b43ea08ab46ca1d66e55e10bbe97c097f7e605155904 +size 1920150 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audition.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audition.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f9fc8a46e2ace5a55b3cffe7554cfa14ab5269a --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-audition.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:885f25245b4227c1761828a6365cb60fa36d81d7e636773ab3702621640bf651 +size 1925534 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3e4b683ecaf8bb1da8616e20672b7e9826e65cf --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e38d3e7b9e03c08a8f46a25b8d7325d0565130a5b74296cbe64e49eea65696 +size 1920078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-soundforge.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-soundforge.wav new file mode 100644 index 0000000000000000000000000000000000000000..4825a4a8df627029ad4d4e1d8aa6445185fe6e74 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int16-soundforge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13741b9dfbf358485cbbc0076713ee9473be970f8cc4686ca75cf286845b2d20 +size 1920078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audacity.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audacity.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b8bbb5680b9a3713e9e1e9db12f2cad993d1b0a --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audacity.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b06e78f2ba11722d516b8367b7c847452d55b2936ab2f28b82fa6fd5c97f383 +size 2880150 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audition.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audition.wav new file mode 100644 index 0000000000000000000000000000000000000000..8359a18be080e51621dcb5152cfa6b5476211d7a --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-audition.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f668649a95293cd031e2d169e444fedfb07aabc6ded2548ce310262aa66c1082 +size 2885534 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ab556ebfd6bf2bf51a8e747f048e38a6c083835 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93248779904023c1e22bd4970f507980a6496e8327dd8a49ce81616375c96f09 +size 2880102 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-soundforge.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-soundforge.wav new file mode 100644 index 0000000000000000000000000000000000000000..af729a021bdc83820d82ab9f2aab6c205f5c9c1f --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int24-soundforge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706c94020f6fe8368383ef28720e10c701e239a9665213eee831e28d59a7a753 +size 2880078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc051f7f9ea3348a4bb21237e105c93f71e4b811 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e6a01afc020355abfffb4b8bfbfefee9ace878081dc265134ae79ccfaf820 +size 3840102 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-soundforge.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-soundforge.wav new file mode 100644 index 0000000000000000000000000000000000000000..d885aec373bd7b135abdaf2148cbd9310004de94 --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-int32-soundforge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f88ac09446b567afa0783a275ee2d3f15e3a05749c08b7bdc75b6f4bbfa1acb +size 3840078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-audition.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-audition.wav new file mode 100644 index 0000000000000000000000000000000000000000..168a106d822fc43f9637220b16db3f1b49025c4e --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-audition.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8fbc6809850523bc274863f07d13b258647b496977ffbf62f2d9ef20f1f40d +size 965534 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..57fbdab3fc532d315c9982e0b713879cd6d099bd --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff9c1914f12e3bb1f8c1de515bb4d0b38a44dd5d3e5ba7e8e5f9406fe3dfd04 +size 960078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-soundforge.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-soundforge.wav new file mode 100644 index 0000000000000000000000000000000000000000..e46e8070c3b875e8b62f3e6b6d51f3ff5d67f5bb --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-uint8-soundforge.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50aa57ea11921d4be417d5339a91ecfa095e755be06adbfba0d4bb52bac56c6 +size 960078 diff --git a/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-vorbis-ffmpeg.wav b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-vorbis-ffmpeg.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b84312efb6a9d1ea8c9407ccad65242756f19fd --- /dev/null +++ b/Rhubarb-Lip-Sync-1.14.0-Windows/tests/resources/sine-triangle-vorbis-ffmpeg.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ffb9e1aaf3b06cb02f07b8aeeb9c9f400e40e265618991e027b59295f7e562 +size 72652 diff --git a/apps/backend/.env.example b/apps/backend/.env.example new file mode 100644 index 0000000000000000000000000000000000000000..08d08d2816eefab797158e9a9d3687f40635e782 --- /dev/null +++ b/apps/backend/.env.example @@ -0,0 +1,8 @@ +# Backend Environment Variables (Example) +# Copy this file to .env and fill in your values + +# No environment variables required for basic setup +# The custom API URL is hardcoded in modules/customAPI.mjs + +# Optional: Add any custom configuration here +# PORT=3000 diff --git a/apps/backend/.gitignore b/apps/backend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..1cbfe25ad026854a2b1884711f9109b97320cb8c --- /dev/null +++ b/apps/backend/.gitignore @@ -0,0 +1,40 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js +.yarn/install-state.gz + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local +.env + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +# visemes inference +/bin \ No newline at end of file diff --git a/apps/backend/audios/api_0.json b/apps/backend/audios/api_0.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b01cc6d18c387b091b5e5ef373de9a68b25b44 --- /dev/null +++ b/apps/backend/audios/api_0.json @@ -0,0 +1,30 @@ +{ + "metadata": { + "soundFile": "/Users/nemesis/Documents/Monadical/talking-avatar-with-ai/apps/backend/audios/message_0.wav", + "duration": 3.00 + }, + "mouthCues": [ + { "start": 0.00, "end": 0.07, "value": "X" }, + { "start": 0.07, "end": 0.31, "value": "B" }, + { "start": 0.31, "end": 0.39, "value": "A" }, + { "start": 0.39, "end": 0.46, "value": "D" }, + { "start": 0.46, "end": 0.59, "value": "G" }, + { "start": 0.59, "end": 0.73, "value": "C" }, + { "start": 0.73, "end": 0.87, "value": "E" }, + { "start": 0.87, "end": 0.94, "value": "F" }, + { "start": 0.94, "end": 1.01, "value": "G" }, + { "start": 1.01, "end": 1.15, "value": "C" }, + { "start": 1.15, "end": 1.22, "value": "B" }, + { "start": 1.22, "end": 1.41, "value": "C" }, + { "start": 1.41, "end": 1.46, "value": "E" }, + { "start": 1.46, "end": 1.64, "value": "F" }, + { "start": 1.64, "end": 1.71, "value": "B" }, + { "start": 1.71, "end": 1.78, "value": "C" }, + { "start": 1.78, "end": 1.86, "value": "A" }, + { "start": 1.86, "end": 2.12, "value": "B" }, + { "start": 2.12, "end": 2.19, "value": "C" }, + { "start": 2.19, "end": 2.27, "value": "A" }, + { "start": 2.27, "end": 2.84, "value": "B" }, + { "start": 2.84, "end": 3.00, "value": "X" } + ] +} diff --git a/apps/backend/audios/api_0.wav b/apps/backend/audios/api_0.wav new file mode 100644 index 0000000000000000000000000000000000000000..8cb7d04a50b6db347b06b80f1ea9dd539c274dd3 --- /dev/null +++ b/apps/backend/audios/api_0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4fdb3dd5f15f66b59c7107befa10a2085e2285cfb09666fbbe524f17095b1b +size 265038 diff --git a/apps/backend/audios/api_1.json b/apps/backend/audios/api_1.json new file mode 100644 index 0000000000000000000000000000000000000000..25f8154007a5ae43d2f46829220e33405828699d --- /dev/null +++ b/apps/backend/audios/api_1.json @@ -0,0 +1,42 @@ +{ + "metadata": { + "soundFile": "/Users/nemesis/Documents/Monadical/talking-avatar-with-ai/apps/backend/audios/message_0.wav", + "duration": 4.96 + }, + "mouthCues": [ + { "start": 0.00, "end": 0.05, "value": "X" }, + { "start": 0.05, "end": 0.22, "value": "B" }, + { "start": 0.22, "end": 0.36, "value": "D" }, + { "start": 0.36, "end": 0.50, "value": "F" }, + { "start": 0.50, "end": 0.57, "value": "D" }, + { "start": 0.57, "end": 0.78, "value": "E" }, + { "start": 0.78, "end": 0.85, "value": "F" }, + { "start": 0.85, "end": 1.13, "value": "B" }, + { "start": 1.13, "end": 1.20, "value": "C" }, + { "start": 1.20, "end": 1.41, "value": "F" }, + { "start": 1.41, "end": 1.48, "value": "B" }, + { "start": 1.48, "end": 1.55, "value": "C" }, + { "start": 1.55, "end": 1.69, "value": "B" }, + { "start": 1.69, "end": 1.76, "value": "C" }, + { "start": 1.76, "end": 2.04, "value": "B" }, + { "start": 2.04, "end": 2.11, "value": "C" }, + { "start": 2.11, "end": 2.39, "value": "B" }, + { "start": 2.39, "end": 2.53, "value": "C" }, + { "start": 2.53, "end": 2.95, "value": "B" }, + { "start": 2.95, "end": 3.02, "value": "C" }, + { "start": 3.02, "end": 3.10, "value": "A" }, + { "start": 3.10, "end": 3.15, "value": "C" }, + { "start": 3.15, "end": 3.27, "value": "H" }, + { "start": 3.27, "end": 3.34, "value": "C" }, + { "start": 3.34, "end": 3.41, "value": "B" }, + { "start": 3.41, "end": 3.55, "value": "H" }, + { "start": 3.55, "end": 3.69, "value": "C" }, + { "start": 3.69, "end": 3.79, "value": "A" }, + { "start": 3.79, "end": 3.86, "value": "B" }, + { "start": 3.86, "end": 3.92, "value": "A" }, + { "start": 3.92, "end": 4.36, "value": "B" }, + { "start": 4.36, "end": 4.50, "value": "C" }, + { "start": 4.50, "end": 4.71, "value": "B" }, + { "start": 4.71, "end": 4.96, "value": "X" } + ] +} diff --git a/apps/backend/audios/api_1.wav b/apps/backend/audios/api_1.wav new file mode 100644 index 0000000000000000000000000000000000000000..214d93b22869e4065b754eab9b81ca7f93aef172 --- /dev/null +++ b/apps/backend/audios/api_1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90d1df7a6c6e31ac7d06cba65cd741a94f13763ba3e2ef2231cec1782e3d7a5 +size 437838 diff --git a/apps/backend/audios/intro_0.json b/apps/backend/audios/intro_0.json new file mode 100644 index 0000000000000000000000000000000000000000..fbbad272666de722220ecd7e970184942ef40248 --- /dev/null +++ b/apps/backend/audios/intro_0.json @@ -0,0 +1,21 @@ +{ + "metadata": { + "soundFile": "/Users/nemesis/Documents/Monadical/talking-avatar-with-ai/apps/backend/audios/message_0.wav", + "duration": 1.51 + }, + "mouthCues": [ + { "start": 0.00, "end": 0.01, "value": "X" }, + { "start": 0.01, "end": 0.06, "value": "A" }, + { "start": 0.06, "end": 0.16, "value": "C" }, + { "start": 0.16, "end": 0.30, "value": "B" }, + { "start": 0.30, "end": 0.44, "value": "C" }, + { "start": 0.44, "end": 0.51, "value": "B" }, + { "start": 0.51, "end": 0.58, "value": "G" }, + { "start": 0.58, "end": 0.65, "value": "C" }, + { "start": 0.65, "end": 0.72, "value": "F" }, + { "start": 0.72, "end": 0.86, "value": "B" }, + { "start": 0.86, "end": 1.07, "value": "C" }, + { "start": 1.07, "end": 1.28, "value": "B" }, + { "start": 1.28, "end": 1.51, "value": "X" } + ] +} diff --git a/apps/backend/audios/intro_0.wav b/apps/backend/audios/intro_0.wav new file mode 100644 index 0000000000000000000000000000000000000000..9353bb8d553a6bdde5d1c3228ac4feb49c118be6 --- /dev/null +++ b/apps/backend/audios/intro_0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e6f10f162648174febc4c3bffaa64170d2179203b22e65d07a63b1f14e5ba0 +size 133710 diff --git a/apps/backend/audios/intro_1.json b/apps/backend/audios/intro_1.json new file mode 100644 index 0000000000000000000000000000000000000000..ee5b1fe7c72253be8589b6c969644dae4e688e27 --- /dev/null +++ b/apps/backend/audios/intro_1.json @@ -0,0 +1,47 @@ +{ + "metadata": { + "soundFile": "/Users/nemesis/Documents/Monadical/talking-avatar-with-ai/apps/backend/audios/message_0.wav", + "duration": 5.56 + }, + "mouthCues": [ + { "start": 0.00, "end": 0.05, "value": "B" }, + { "start": 0.05, "end": 0.16, "value": "D" }, + { "start": 0.16, "end": 0.26, "value": "A" }, + { "start": 0.26, "end": 0.38, "value": "B" }, + { "start": 0.38, "end": 0.59, "value": "C" }, + { "start": 0.59, "end": 1.10, "value": "B" }, + { "start": 1.10, "end": 1.17, "value": "F" }, + { "start": 1.17, "end": 1.25, "value": "A" }, + { "start": 1.25, "end": 1.47, "value": "E" }, + { "start": 1.47, "end": 1.54, "value": "B" }, + { "start": 1.54, "end": 1.62, "value": "A" }, + { "start": 1.62, "end": 1.66, "value": "E" }, + { "start": 1.66, "end": 1.70, "value": "F" }, + { "start": 1.70, "end": 1.77, "value": "H" }, + { "start": 1.77, "end": 1.84, "value": "C" }, + { "start": 1.84, "end": 1.91, "value": "B" }, + { "start": 1.91, "end": 2.12, "value": "C" }, + { "start": 2.12, "end": 2.19, "value": "B" }, + { "start": 2.19, "end": 2.33, "value": "C" }, + { "start": 2.33, "end": 2.54, "value": "B" }, + { "start": 2.54, "end": 2.75, "value": "C" }, + { "start": 2.75, "end": 2.82, "value": "B" }, + { "start": 2.82, "end": 3.19, "value": "X" }, + { "start": 3.19, "end": 3.29, "value": "B" }, + { "start": 3.29, "end": 3.37, "value": "A" }, + { "start": 3.37, "end": 3.50, "value": "B" }, + { "start": 3.50, "end": 3.57, "value": "E" }, + { "start": 3.57, "end": 3.64, "value": "B" }, + { "start": 3.64, "end": 3.78, "value": "C" }, + { "start": 3.78, "end": 3.86, "value": "A" }, + { "start": 3.86, "end": 4.20, "value": "F" }, + { "start": 4.20, "end": 4.27, "value": "C" }, + { "start": 4.27, "end": 4.34, "value": "B" }, + { "start": 4.34, "end": 4.42, "value": "A" }, + { "start": 4.42, "end": 4.52, "value": "C" }, + { "start": 4.52, "end": 4.59, "value": "B" }, + { "start": 4.59, "end": 4.80, "value": "F" }, + { "start": 4.80, "end": 5.36, "value": "B" }, + { "start": 5.36, "end": 5.56, "value": "X" } + ] +} diff --git a/apps/backend/audios/intro_1.wav b/apps/backend/audios/intro_1.wav new file mode 100644 index 0000000000000000000000000000000000000000..46d3a2d17094088a2d0452d057399e894d0dc019 --- /dev/null +++ b/apps/backend/audios/intro_1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe6d00755d27d894d079b55bafd11e491604711956029f20d0e6e8ad00aeaac +size 490830 diff --git a/apps/backend/audios/message_0.json b/apps/backend/audios/message_0.json new file mode 100644 index 0000000000000000000000000000000000000000..ba1c36470ccd4dec118689569eb587872cc75f44 --- /dev/null +++ b/apps/backend/audios/message_0.json @@ -0,0 +1,60 @@ +{ + "metadata": { + "soundFile": "D:\\finalchat\\talking-avatar-with-ai\\apps\\backend\\audios\\message_0.wav", + "duration": 8.71 + }, + "mouthCues": [ + { "start": 0.00, "end": 0.10, "value": "X" }, + { "start": 0.10, "end": 0.15, "value": "B" }, + { "start": 0.15, "end": 0.19, "value": "C" }, + { "start": 0.19, "end": 0.33, "value": "E" }, + { "start": 0.33, "end": 0.40, "value": "F" }, + { "start": 0.40, "end": 0.47, "value": "B" }, + { "start": 0.47, "end": 0.83, "value": "X" }, + { "start": 0.83, "end": 0.91, "value": "B" }, + { "start": 0.91, "end": 0.99, "value": "A" }, + { "start": 0.99, "end": 1.37, "value": "F" }, + { "start": 1.37, "end": 1.51, "value": "C" }, + { "start": 1.51, "end": 1.58, "value": "H" }, + { "start": 1.58, "end": 1.74, "value": "A" }, + { "start": 1.74, "end": 1.85, "value": "F" }, + { "start": 1.85, "end": 2.20, "value": "B" }, + { "start": 2.20, "end": 2.34, "value": "C" }, + { "start": 2.34, "end": 2.48, "value": "H" }, + { "start": 2.48, "end": 2.76, "value": "B" }, + { "start": 2.76, "end": 2.90, "value": "E" }, + { "start": 2.90, "end": 3.11, "value": "F" }, + { "start": 3.11, "end": 3.21, "value": "A" }, + { "start": 3.21, "end": 3.26, "value": "C" }, + { "start": 3.26, "end": 3.58, "value": "B" }, + { "start": 3.58, "end": 3.65, "value": "G" }, + { "start": 3.65, "end": 3.79, "value": "B" }, + { "start": 3.79, "end": 4.15, "value": "X" }, + { "start": 4.15, "end": 4.33, "value": "F" }, + { "start": 4.33, "end": 4.41, "value": "A" }, + { "start": 4.41, "end": 5.04, "value": "B" }, + { "start": 5.04, "end": 5.11, "value": "C" }, + { "start": 5.11, "end": 5.30, "value": "A" }, + { "start": 5.30, "end": 5.41, "value": "F" }, + { "start": 5.41, "end": 5.62, "value": "B" }, + { "start": 5.62, "end": 5.70, "value": "A" }, + { "start": 5.70, "end": 5.87, "value": "B" }, + { "start": 5.87, "end": 5.96, "value": "A" }, + { "start": 5.96, "end": 6.14, "value": "F" }, + { "start": 6.14, "end": 6.21, "value": "E" }, + { "start": 6.21, "end": 6.28, "value": "B" }, + { "start": 6.28, "end": 6.36, "value": "A" }, + { "start": 6.36, "end": 6.87, "value": "B" }, + { "start": 6.87, "end": 7.22, "value": "E" }, + { "start": 7.22, "end": 7.29, "value": "F" }, + { "start": 7.29, "end": 7.36, "value": "C" }, + { "start": 7.36, "end": 7.44, "value": "A" }, + { "start": 7.44, "end": 7.62, "value": "D" }, + { "start": 7.62, "end": 7.69, "value": "B" }, + { "start": 7.69, "end": 7.76, "value": "E" }, + { "start": 7.76, "end": 8.11, "value": "B" }, + { "start": 8.11, "end": 8.25, "value": "C" }, + { "start": 8.25, "end": 8.39, "value": "B" }, + { "start": 8.39, "end": 8.71, "value": "X" } + ] +} diff --git a/apps/backend/audios/message_0.mp3 b/apps/backend/audios/message_0.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..82168125bacb1dcca221e7c2d5dc42afa7f1db22 Binary files /dev/null and b/apps/backend/audios/message_0.mp3 differ diff --git a/apps/backend/audios/message_0.wav b/apps/backend/audios/message_0.wav new file mode 100644 index 0000000000000000000000000000000000000000..696a5148c02bcd3526fe90e001be5dceb1e1417e --- /dev/null +++ b/apps/backend/audios/message_0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4c5630458cedaac21beb9cba3deb4dc9210c300a17c108b71e6762a909f31c +size 418254 diff --git a/apps/backend/modules/customAPI.mjs b/apps/backend/modules/customAPI.mjs new file mode 100644 index 0000000000000000000000000000000000000000..7ad9f08f2562fb64b765082b5409730eb3e42f84 --- /dev/null +++ b/apps/backend/modules/customAPI.mjs @@ -0,0 +1,144 @@ +import dotenv from "dotenv"; +import fs from "fs"; +import path from "path"; + +dotenv.config(); + +const API_BASE_URL = "https://finalchatdoc.onrender.com"; + +import { spawn } from "child_process"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const customAPI = { + chat: async (message, userId) => { + try { + const effectiveUserId = userId || "demo_user_123"; + console.log(`Sending Chat request to ${API_BASE_URL}/chat for user: ${effectiveUserId}`); + const controller = new AbortController(); + const timeoutId = setTimeout(() => controller.abort(), 60000); // 60 second timeout + + const response = await fetch(`${API_BASE_URL}/chat`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + message: message, + user_id: effectiveUserId, + language: "en" + }), + signal: controller.signal + }); + clearTimeout(timeoutId); + + if (!response.ok) { + const errorText = await response.text(); + throw new Error(`Chat API error: ${response.status} ${response.statusText} - ${errorText}`); + } + + const data = await response.json(); + + // The API returns the message in the 'reply' field + const botResponse = data.reply || data.response || data.message || "I didn't get a reply."; + + return botResponse; + } catch (error) { + console.error("Chat API Error:", error); + return "I'm having trouble connecting to the doctor right now. Please try again later."; + } + }, + + tts: async (text) => { + return new Promise((resolve, reject) => { + try { + console.log(`Generating local TTS for text: "${text.substring(0, 20)}..."`); + + const ttsScript = path.join(__dirname, "..", "utils", "tts.py"); + const tempFile = path.join(__dirname, "..", "tmp", `tts_${Date.now()}_${Math.random().toString(36).substring(7)}.mp3`); + + // Ensure tmp dir exists + const tmpDir = path.dirname(tempFile); + if (!fs.existsSync(tmpDir)) { + fs.mkdirSync(tmpDir, { recursive: true }); + } + + const pythonProcess = spawn("python", [ttsScript, "-", tempFile]); + + pythonProcess.stdin.write(text); + pythonProcess.stdin.end(); + + let errorOutput = ""; + + pythonProcess.stderr.on("data", (data) => { + errorOutput += data.toString(); + }); + + pythonProcess.on("close", async (code) => { + if (code !== 0) { + console.error(`TTS Process Error: ${errorOutput}`); + // Fallback to silent buffer on error to prevent crash + resolve(Buffer.alloc(1024)); + return; + } + + try { + const audioBuffer = await fs.promises.readFile(tempFile); + console.log(`TTS generated audio size: ${audioBuffer.length} bytes`); + + if (audioBuffer.length < 1000) { + console.warn("โš ๏ธ Warning: Generated audio is suspiciously small."); + } + + // Clean up + fs.unlink(tempFile, (err) => { if (err) console.error("Error deleting temp file:", err); }); + resolve(audioBuffer); + } catch (err) { + console.error("Error reading TTS file:", err); + resolve(Buffer.alloc(1024)); + } + }); + } catch (error) { + console.error("TTS Wrapper Error:", error); + resolve(Buffer.alloc(1024)); + } + }); + }, + + stt: async (audioBuffer) => { + try { + console.log(`Sending STT request to ${API_BASE_URL}/stt`); + + // Create a Blob from the buffer + const blob = new Blob([audioBuffer], { type: 'audio/wav' }); + + const formData = new FormData(); + formData.append("audio", blob, "input.wav"); + + const controller = new AbortController(); + const timeoutId = setTimeout(() => controller.abort(), 60000); + + const response = await fetch(`${API_BASE_URL}/stt`, { + method: "POST", + body: formData, + signal: controller.signal + }); + clearTimeout(timeoutId); + + if (!response.ok) { + const errorText = await response.text(); + throw new Error(`STT API error: ${response.status} ${response.statusText} - ${errorText}`); + } + + const data = await response.json(); + return data.text; + } catch (error) { + console.error("STT API Error:", error); + return "I couldn't hear you."; + } + }, +}; + +export default customAPI; diff --git a/apps/backend/modules/lip-sync.mjs b/apps/backend/modules/lip-sync.mjs new file mode 100644 index 0000000000000000000000000000000000000000..9855d86c9e17f48558ff30beb79b92fb60873941 --- /dev/null +++ b/apps/backend/modules/lip-sync.mjs @@ -0,0 +1,54 @@ +import customAPI from "./customAPI.mjs"; +import { getPhonemes } from "./rhubarbLipSync.mjs"; +import { readJsonTranscript, audioFileToBase64, execCommand } from "../utils/files.mjs"; +import fs from "fs"; +import path from "path"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const lipSync = async ({ messages }) => { + await Promise.all( + messages.map(async (message, index) => { + const audiosDir = path.join(__dirname, "..", "audios"); + const fileNameWav = path.join(audiosDir, `message_${index}.wav`); + const fileNameMp3 = path.join(audiosDir, `message_${index}.mp3`); + + try { + // 1. Get Audio from Custom TTS (returns ArrayBuffer of MP3) + console.log(`Generating audio for message ${index}...`); + const audioBuffer = await customAPI.tts(message.text); + + // Save as MP3 first (since ElevenLabs returns MP3) + fs.writeFileSync(fileNameMp3, Buffer.from(audioBuffer)); + console.log(`Audio saved to ${fileNameMp3}`); + + // 2. Convert MP3 to WAV for Rhubarb (it needs WAV) + try { + await execCommand({ + command: `ffmpeg -y -i ${fileNameMp3} ${fileNameWav}`, + }); + console.log(`Converted to ${fileNameWav}`); + } catch (error) { + console.warn(`โš ๏ธ FFmpeg conversion failed: ${error.message}. Proceeding to phonetic fallback...`); + } + + // 3. Generate Lip Sync (Rhubarb or Phonetic Fallback) + // getPhonemes will handle missing WAV files by using the phonetic generator + await getPhonemes({ message: index, messageText: message.text }); + + // 4. Read files and attach to message object + message.audio = await audioFileToBase64({ fileName: fileNameMp3 }); + message.lipsync = await readJsonTranscript({ fileName: path.join(audiosDir, `message_${index}.json`) }); + + } catch (error) { + console.error(`Error processing message ${index}:`, error); + } + }) + ); + + return messages; +}; + +export { lipSync }; diff --git a/apps/backend/modules/phoneticLipSync.mjs b/apps/backend/modules/phoneticLipSync.mjs new file mode 100644 index 0000000000000000000000000000000000000000..6b6089f06c25b9636a4219e22c5929c36d7ae24d --- /dev/null +++ b/apps/backend/modules/phoneticLipSync.mjs @@ -0,0 +1,109 @@ +import fs from "fs"; + +/** + * Generate phonetic lip sync data from text + * This is a fallback when Rhubarb is not available + * It creates realistic mouth movements based on letter patterns + */ +export const generatePhoneticLipSync = ({ text, duration }) => { + console.log(`Generating phonetic lip sync for: "${text}" (${duration}s)`); + + const words = text.toLowerCase().split(/\s+/); + const mouthCues = []; + + // Phoneme mapping based on common letter patterns + const letterToPhoneme = { + // Closed mouth sounds + 'p': 'A', 'b': 'A', 'm': 'A', + // K/G sounds + 'k': 'B', 'g': 'B', 'c': 'B', 'q': 'B', + // EE/I sounds + 'e': 'C', 'i': 'C', + // AA/AH sounds + 'a': 'D', + // O sounds + 'o': 'E', + // U/OO sounds + 'u': 'F', + // F/V sounds + 'f': 'G', 'v': 'G', + // TH sounds + 't': 'H', 'd': 'H', 's': 'H', 'z': 'H', + // Default + 'default': 'X' + }; + + let currentTime = 0; + const avgLetterDuration = duration / text.replace(/\s/g, '').length; + + // Process each word + words.forEach(word => { + // Add a small pause between words + if (mouthCues.length > 0) { + mouthCues.push({ + start: currentTime, + end: currentTime + avgLetterDuration * 0.5, + value: 'X' // Rest position + }); + currentTime += avgLetterDuration * 0.5; + } + + // Process each letter in the word + for (let i = 0; i < word.length; i++) { + const letter = word[i]; + const phoneme = letterToPhoneme[letter] || letterToPhoneme['default']; + + // Vary duration slightly for more natural feel + const variance = 0.8 + Math.random() * 0.4; // 0.8x to 1.2x + const letterDur = avgLetterDuration * variance; + + mouthCues.push({ + start: currentTime, + end: currentTime + letterDur, + value: phoneme + }); + + currentTime += letterDur; + } + }); + + // Ensure we end at the right time + if (mouthCues.length > 0) { + const lastCue = mouthCues[mouthCues.length - 1]; + if (lastCue.end > duration) { + // Scale all times proportionally to fit + const scale = duration / lastCue.end; + mouthCues.forEach(cue => { + cue.start *= scale; + cue.end *= scale; + }); + } else if (lastCue.end < duration) { + // Add final rest position + mouthCues.push({ + start: lastCue.end, + end: duration, + value: 'X' + }); + } + } + + console.log(`โœ… Generated ${mouthCues.length} mouth cues`); + + return { + metadata: { + soundFile: "generated", + duration: duration + }, + mouthCues: mouthCues + }; +}; + +/** + * Generate phoneme data and save to file + */ +export const generatePhoneticLipSyncFile = ({ text, duration, outputPath }) => { + const lipSyncData = generatePhoneticLipSync({ text, duration }); + fs.writeFileSync(outputPath, JSON.stringify(lipSyncData, null, 2)); + console.log(`๐Ÿ’พ Saved lip sync data to: ${outputPath}`); + return lipSyncData; +}; diff --git a/apps/backend/modules/rhubarbLipSync.mjs b/apps/backend/modules/rhubarbLipSync.mjs new file mode 100644 index 0000000000000000000000000000000000000000..536ff0d53d5591845f6f04d7931e78cb29db07d0 --- /dev/null +++ b/apps/backend/modules/rhubarbLipSync.mjs @@ -0,0 +1,82 @@ +import { execCommand } from "../utils/files.mjs"; +import fs from "fs"; +import path from "path"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const getPhonemes = async ({ message, messageText = "Hello" }) => { + try { + const time = new Date().getTime(); + console.log(`Starting lip sync for message ${message}`); + + const audiosDir = path.join(__dirname, "..", "audios"); + const wavFile = path.join(audiosDir, `message_${message}.wav`); + const mp3File = path.join(audiosDir, `message_${message}.mp3`); + const jsonFile = path.join(audiosDir, `message_${message}.json`); + + // Check if WAV exists, if not convert MP3 to WAV + if (!fs.existsSync(wavFile)) { + console.log(`Converting MP3 to WAV for message ${message}...`); + await execCommand( + { command: `ffmpeg -y -i "${mp3File}" "${wavFile}"` } + ); + } else { + console.log(`WAV file already exists, skipping conversion.`); + } + + console.log(`Conversion done in ${new Date().getTime() - time}ms`); + + // Resolve path to Rhubarb executable + // Structure: root/apps/backend/modules/rhubarbLipSync.mjs + // Rhubarb is at: root/Rhubarb-Lip-Sync-1.14.0-Windows/rhubarb.exe + const rhubarbPath = path.resolve(__dirname, "../../../Rhubarb-Lip-Sync-1.14.0-Windows/rhubarb.exe"); + + console.log(`Looking for Rhubarb at: ${rhubarbPath}`); + + if (!fs.existsSync(rhubarbPath)) { + throw new Error(`Rhubarb executable not found at ${rhubarbPath}`); + } + + try { + // Try to run Rhubarb + await execCommand({ + command: `"${rhubarbPath}" -f json -o "${jsonFile}" "${wavFile}" -r phonetic`, + }); + console.log(`โœ… Rhubarb lip sync done in ${new Date().getTime() - time}ms`); + } catch (error) { + console.warn("โš ๏ธ Rhubarb not found. Using phonetic lip sync fallback..."); + + // Import the phonetic lip sync generator + const { generatePhoneticLipSyncFile } = await import("./phoneticLipSync.mjs"); + + // Get the audio duration using ffprobe + let audioDuration = 1.0; + try { + const ffprobeResult = await execCommand({ + command: `ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "${wavFile}"` + }); + audioDuration = parseFloat(ffprobeResult.stdout.trim()); + console.log(`๐Ÿ“ Audio duration: ${audioDuration}s`); + } catch (e) { + console.warn("โš ๏ธ Could not get audio duration, estimating from text"); + // Rough estimate: ~0.15 seconds per character + audioDuration = messageText.length * 0.15; + } + + // Generate phonetic lip sync based on text + generatePhoneticLipSyncFile({ + text: messageText, + duration: audioDuration, + outputPath: jsonFile + }); + + console.log(`โœ… Phonetic lip sync generated in ${new Date().getTime() - time}ms`); + } + } catch (error) { + console.error(`โŒ Error generating phonemes for message ${message}:`, error); + } +}; + +export { getPhonemes }; diff --git a/apps/backend/package.json b/apps/backend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..fc81509e9acdb9b002e1d7690063eb10da8b60af --- /dev/null +++ b/apps/backend/package.json @@ -0,0 +1,20 @@ +{ + "name": "digital-human-backend", + "version": "1.0.0", + "type": "module", + "license": "MIT", + "scripts": { + "start": "node server.js", + "dev": "nodemon server.js --ext js" + }, + "dependencies": { + "cors": "^2.8.5", + "dotenv": "^16.3.1", + "express": "^4.18.2", + "form-data": "^4.0.5", + "node-fetch": "^3.3.2" + }, + "devDependencies": { + "nodemon": "^3.0.1" + } +} \ No newline at end of file diff --git a/apps/backend/server.js b/apps/backend/server.js new file mode 100644 index 0000000000000000000000000000000000000000..721534204cd9c0959b6e97c985e06179b9c61343 --- /dev/null +++ b/apps/backend/server.js @@ -0,0 +1,173 @@ +import cors from "cors"; +import dotenv from "dotenv"; +import express from "express"; +import { lipSync } from "./modules/lip-sync.mjs"; +import customAPI from "./modules/customAPI.mjs"; +import path from "path"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +dotenv.config(); + +const app = express(); +app.use(express.json()); +app.use(cors()); + +// Serve static files from the frontend build directory +app.use(express.static(path.join(__dirname, "../frontend/dist"))); +const port = 3000; + +// Helper function to select animation based on message content +const selectAnimation = (message) => { + const talkingAnimations = ["TalkingOne", "TalkingTwo", "Talking"]; + + // Check for emotional keywords to use specific animations + const lowerMessage = message.toLowerCase(); + + if (lowerMessage.includes("happy") || lowerMessage.includes("great") || lowerMessage.includes("wonderful")) { + return "HappyIdle"; + } + if (lowerMessage.includes("sad") || lowerMessage.includes("sorry") || lowerMessage.includes("unfortunate")) { + return "SadIdle"; + } + if (lowerMessage.includes("angry") || lowerMessage.includes("upset")) { + return "Angry"; + } + if (lowerMessage.includes("surprised") || lowerMessage.includes("wow") || lowerMessage.includes("amazing")) { + return "Surprised"; + } + + // Default to random talking animation + return talkingAnimations[Math.floor(Math.random() * talkingAnimations.length)]; +}; + +// Helper function to select facial expression +const selectFacialExpression = (message) => { + const lowerMessage = message.toLowerCase(); + + if (lowerMessage.includes("happy") || lowerMessage.includes("great") || lowerMessage.includes("wonderful")) { + return "smile"; + } + if (lowerMessage.includes("sad") || lowerMessage.includes("sorry")) { + return "sad"; + } + if (lowerMessage.includes("angry") || lowerMessage.includes("upset")) { + return "angry"; + } + if (lowerMessage.includes("surprised") || lowerMessage.includes("wow")) { + return "surprised"; + } + if (lowerMessage.includes("crazy") || lowerMessage.includes("wild")) { + return "crazy"; + } + + // Random default expressions + const defaultExpressions = ["smile", "default", "funnyFace"]; + return defaultExpressions[Math.floor(Math.random() * defaultExpressions.length)]; +}; + +// Health check endpoint +app.get("/health", (req, res) => { + res.json({ status: "ok", timestamp: new Date().toISOString() }); +}); + +app.get("/voices", async (req, res) => { + // Return empty or dummy voices if frontend requests it + res.send([]); +}); + +app.post("/tts", async (req, res) => { + const userMessage = req.body.message; + const userId = req.body.userId; + + if (!userMessage) { + res.send({ messages: [] }); + return; + } + + try { + console.log(`Received message: ${userMessage} from user: ${userId}`); + + // 1. Get Chat Response from Custom API + const botResponseText = await customAPI.chat(userMessage, userId); + console.log(`Bot response: ${botResponseText}`); + + // 2. Construct Message Object + // Intelligently select animations and facial expressions based on message content + const selectedAnimation = selectAnimation(botResponseText); + const selectedExpression = selectFacialExpression(botResponseText); + + console.log(`Selected animation: ${selectedAnimation}, expression: ${selectedExpression}`); + + const messages = [ + { + text: botResponseText, + facialExpression: selectedExpression, + animation: selectedAnimation, + }, + ]; + + // 3. Generate Audio & LipSync + const syncedMessages = await lipSync({ messages }); + + res.send({ messages: syncedMessages }); + } catch (error) { + console.error("Error in /tts:", error); + res.status(500).send({ error: "Internal Server Error" }); + } +}); + +app.post("/sts", async (req, res) => { + const base64Audio = req.body.audio; + const userId = req.body.userId; + + if (!base64Audio) { + res.status(400).send({ error: "No audio provided" }); + return; + } + + const audioData = Buffer.from(base64Audio, "base64"); + + try { + // 1. Convert Speech to Text + const userMessage = await customAPI.stt(audioData); + console.log(`User said (STT): ${userMessage}`); + + // 2. Get Chat Response + const botResponseText = await customAPI.chat(userMessage, userId); + console.log(`Bot response: ${botResponseText}`); + + // 3. Construct Message Object + const selectedAnimation = selectAnimation(botResponseText); + const selectedExpression = selectFacialExpression(botResponseText); + + console.log(`Selected animation: ${selectedAnimation}, expression: ${selectedExpression}`); + + const messages = [ + { + text: botResponseText, + facialExpression: selectedExpression, + animation: selectedAnimation, + }, + ]; + + // 4. Generate Audio & LipSync + const syncedMessages = await lipSync({ messages }); + + res.send({ messages: syncedMessages }); + } catch (error) { + console.error("Error in /sts:", error); + res.status(500).send({ error: "Internal Server Error" }); + } +}); + +// Catch-all route to serve the frontend index.html for any non-API requests +app.get("*", (req, res) => { + res.sendFile(path.join(__dirname, "../frontend/dist/index.html")); +}); + +app.listen(port, () => { + console.log(`Jack is listening on port ${port}`); +}); diff --git a/apps/backend/serviceAccountKey.json b/apps/backend/serviceAccountKey.json new file mode 100644 index 0000000000000000000000000000000000000000..cd4925c1faf7227167e8924d6a955bb0fb84bf92 --- /dev/null +++ b/apps/backend/serviceAccountKey.json @@ -0,0 +1,13 @@ +{ + "type": "service_account", + "project_id": "healbot-36975", + "private_key_id": "ae436d3b915274a488ac3a6e4e6b400a91ebdc9b", + "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDYoyg78IrEcjuo\nJms2HcejNbe0PLrZC8MuLnPO9l4wm9HNR6sD4VsPdnqDODwlF51W3U1BSpUIyWj1\nyicqi9LVAGbDXbDNqNDsBDvOxM3MMmDG5oEB+SU+EyXzN5Fhc6ggvJloS04oxCs+\nbUZKJADDmdOObgw5EcMtPHiUwSFZDdCibj9Lr1LfL91kxFJhDl0EeYSMJq93S4yS\nh0l4mKwKwIcaNhl3Qq51YLOC1xszYJHOXkV47xwQ9FA8y5i5xgG/5bMnFX5YKnF8\nlUuYEWqtEjzQcy4XW5fxiyJziEw/wwjtZWCwfuMAiu5DRpOHSvK+iOLuTvB6pCL5\njWDrZb5FAgMBAAECggEATweWUed6eBfEM59wVRmgDqY2EgZlk3B7D4narZGq4si1\nTNHsTUoU0htCrkQBjPaEa3/oAv2WSNJQ+/l3OEox64pt8q9nJF+Fd9RDjTa2bNuj\n+mt0fKfLMk4B9iw7WPW8S9UBkc6HANAvhmKO1dU0gibHypnS067rKMF6q6mY5Mc9\nkEZAoVgwimZx9Y+1kIMnWuqPyQ1WSSFVuVgnpv+nlOqMA0yrmiiPOACmSQhBcuGl\nBCV/BlqLrB4wnwVW6pkjKMxNNp5ufbPnAdjPUksbBj6GUPQ4abngdlVPhTnQ64oI\n/lePsQeH1OkLAR+SWhqW+Gt8FYUE/puEraX9uNaOsQKBgQDvj+YDhWQSpYZ/lpQu\nOnENs7e/FzXywkTrfiDD7COvjOBRYORPu6N+/0BZIGASSD1xr8NmLYpSxsUKWJxC\nFPyDu88x+fJwUuuFqX86oYEd6VR4hL4O2pElFUlt3eKYXh2lC9rvoZSr/tQh2Nmj\n5Zfs+LDhA/CwrJU/vykl3OCX+wKBgQDngJEMBcKvmb321wlCmehO3W+My7QjeYm0\nMka7Arhq0V+JOWtTtB/rkYoe6tqiAVVTBrimCAEC9FTp1brcUcfCnDqW5zKtF8QT\nH+JFcMblJG/PAk+kHunHBU/9tmYIdTWjhgxTabmByN4/IunLKiX4E9r1GSujmtOz\n+SGtpEvuvwKBgQDJR4Zi/viOEjVnjgUCsme6s313OPFC/qcZlefBte5l2V/AAEDU\nHTvJwH04ZVNTCQ9XLe5nM2w9EHUNtFXVz/w6UtpLi05/wavRqhAUGw55K0ql2CI4\nKLw7BB+mCAATNUCDI+rX3FMmD/38Uk7KvmVf3bP/22enidn8rYjNH0A1cQKBgHhS\n45DbIaCBiTHV/JMoSY1MHKGScvOJRSBqjUbAGDg00LITLQyZb4nR4HdHXBGeHcoE\nkU6ClHwDoGrVUsUWoHwvFWi/jCBZXOkPxlyPTGFm+dIfgmNsSdfOlA/rkMbOnO18\nS8XDCs9BJvqr29Zj9s4lC8Yeqgbj/yrozy9gWLMjAoGAIO70i1XlHLTFkg3EqukA\no+pWAVp4LfAlJPQNA6Y7p6v/6mcuP1q4Px/Pp9s1xbSzgJZh5mKp/rNxmIDV4ca3\n/96gGnlPeD4oFs1avO1ndWiRO2ZoH59oP2ega4f0XYErCOUpD4T78ZzNwHRHBm/z\nX0IcvchoI5Wx7GzJ7FFW0A0=\n-----END PRIVATE KEY-----\n", + "client_email": "firebase-adminsdk-fbsvc@healbot-36975.iam.gserviceaccount.com", + "client_id": "104654071106360410641", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-fbsvc%40healbot-36975.iam.gserviceaccount.com", + "universe_domain": "googleapis.com" +} \ No newline at end of file diff --git a/apps/backend/utils/audios.mjs b/apps/backend/utils/audios.mjs new file mode 100644 index 0000000000000000000000000000000000000000..3e56dec43804bdeccbe388700c9217e46ce98c96 --- /dev/null +++ b/apps/backend/utils/audios.mjs @@ -0,0 +1,20 @@ +import fs from "fs"; +import path from "path"; +import { execCommand } from "./files.mjs"; + +async function convertAudioToMp3({ audioData }) { + const dir = 'tmp'; + if (!fs.existsSync(dir)){ + fs.mkdirSync(dir); + } + const inputPath = path.join(dir, "input.webm"); + fs.writeFileSync(inputPath, audioData); + const outputPath = path.join(dir, "output.mp3"); + await execCommand({ command: `ffmpeg -i ${inputPath} ${outputPath}` }); + const mp3AudioData = fs.readFileSync(outputPath); + fs.unlinkSync(inputPath); + fs.unlinkSync(outputPath); + return mp3AudioData; +} + +export { convertAudioToMp3 }; \ No newline at end of file diff --git a/apps/backend/utils/files.mjs b/apps/backend/utils/files.mjs new file mode 100644 index 0000000000000000000000000000000000000000..5efc597b65a3496ed62e2da85164897943c8b3b8 --- /dev/null +++ b/apps/backend/utils/files.mjs @@ -0,0 +1,23 @@ +import { exec } from "child_process"; +import { promises as fs } from "fs"; + +const execCommand = ({ command }) => { + return new Promise((resolve, reject) => { + exec(command, (error, stdout, stderr) => { + if (error) reject(error); + resolve(stdout); + }); + }); +}; + +const readJsonTranscript = async ({ fileName }) => { + const data = await fs.readFile(fileName, "utf8"); + return JSON.parse(data); +}; + +const audioFileToBase64 = async ({ fileName }) => { + const data = await fs.readFile(fileName); + return data.toString("base64"); +}; + +export { execCommand, readJsonTranscript, audioFileToBase64 }; diff --git a/apps/backend/utils/tts.py b/apps/backend/utils/tts.py new file mode 100644 index 0000000000000000000000000000000000000000..9f5db96578e7f5df157987b81a5c70b68cdd89ba --- /dev/null +++ b/apps/backend/utils/tts.py @@ -0,0 +1,41 @@ +import asyncio +import edge_tts +import sys +import os + +async def generate_tts(text, output_file, voice="en-US-BrianMultilingualNeural"): + communicate = edge_tts.Communicate(text, voice) + await communicate.save(output_file) + +if __name__ == "__main__": + if len(sys.argv) < 3: + print("Usage: python tts.py [voice]") + sys.exit(1) + + text_arg = sys.argv[1] + output_file = sys.argv[2] + voice = sys.argv[3] if len(sys.argv) > 3 else "en-US-BrianMultilingualNeural" + + if text_arg == "-": + text = sys.stdin.read() + else: + text = text_arg + + # Ensure directory exists + dir_name = os.path.dirname(output_file) + if dir_name: + os.makedirs(dir_name, exist_ok=True) + + try: + asyncio.run(generate_tts(text, output_file, voice)) + # Verify file was created and has size + if os.path.exists(output_file) and os.path.getsize(output_file) > 0: + print(f"Audio saved to {output_file}") + else: + print(f"Error: File not created or empty: {output_file}", file=sys.stderr) + sys.exit(1) + except Exception as e: + import traceback + traceback.print_exc() + print(f"Error: {e}", file=sys.stderr) + sys.exit(1) diff --git a/apps/backend/yarn.lock b/apps/backend/yarn.lock new file mode 100644 index 0000000000000000000000000000000000000000..e6c7fcb5f95e458051006490d07e800ed2787f19 --- /dev/null +++ b/apps/backend/yarn.lock @@ -0,0 +1,1226 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@anthropic-ai/sdk@^0.9.1": + version "0.9.1" + resolved "https://registry.yarnpkg.com/@anthropic-ai/sdk/-/sdk-0.9.1.tgz#b2d2b7bf05c90dce502c9a2e869066870f69ba88" + integrity sha512-wa1meQ2WSfoY8Uor3EdrJq0jTiZJoKoSii2ZVWRY1oN4Tlr5s59pADg9T79FTbPe1/se5c3pBeZgJL63wmuoBA== + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + digest-fetch "^1.3.0" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + web-streams-polyfill "^3.2.1" + +"@langchain/community@~0.0.17": + version "0.0.18" + resolved "https://registry.yarnpkg.com/@langchain/community/-/community-0.0.18.tgz#6f93715fb0c4ce1b4e348e9c13e8a7e8e96b1e33" + integrity sha512-U8Wvi0chHQnlYRCVm9la+Y71o1oc/4r2H+p8NzIl900WfElY7npQ6PCXiyv0ONytJhB9bgPFacmC19nrKFPERA== + dependencies: + "@langchain/core" "~0.1.16" + "@langchain/openai" "~0.0.10" + flat "^5.0.2" + langsmith "~0.0.48" + uuid "^9.0.0" + zod "^3.22.3" + +"@langchain/core@~0.1.13", "@langchain/core@~0.1.16": + version "0.1.16" + resolved "https://registry.yarnpkg.com/@langchain/core/-/core-0.1.16.tgz#12bad513f1a126200875665528b60a23d68a3a83" + integrity sha512-hrG3N30k6MtmYKnxWgJrpng2fsIREEHLyrrOooxHP8g7x0Qryzhs6H5TdDGqzW/UutP51sfbk7aO+lDFtv+OHQ== + dependencies: + ansi-styles "^5.0.0" + camelcase "6" + decamelize "1.2.0" + js-tiktoken "^1.0.8" + langsmith "~0.0.48" + ml-distance "^4.0.0" + p-queue "^6.6.2" + p-retry "4" + uuid "^9.0.0" + zod "^3.22.4" + zod-to-json-schema "^3.22.3" + +"@langchain/openai@^0.0.12", "@langchain/openai@~0.0.10", "@langchain/openai@~0.0.12": + version "0.0.12" + resolved "https://registry.yarnpkg.com/@langchain/openai/-/openai-0.0.12.tgz#4c6a4dda3ca96f103482f389299e018340aa2b75" + integrity sha512-MR9x1xRXwJpdYlVx9Tga89q/MvxPrSTYyA5vy9tQ8dfQHNWnlgmI4gB/hDIsWUu1ooScagD4wW+aTnohTX+g+g== + dependencies: + "@langchain/core" "~0.1.13" + js-tiktoken "^1.0.7" + openai "^4.24.2" + zod "^3.22.3" + zod-to-json-schema "3.20.3" + +"@types/node-fetch@^2.6.4": + version "2.6.11" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24" + integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g== + dependencies: + "@types/node" "*" + form-data "^4.0.0" + +"@types/node@*": + version "20.11.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.5.tgz#be10c622ca7fcaa3cf226cf80166abc31389d86e" + integrity sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w== + dependencies: + undici-types "~5.26.4" + +"@types/node@^18.11.18": + version "18.19.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.8.tgz#c1e42b165e5a526caf1f010747e0522cb2c9c36a" + integrity sha512-g1pZtPhsvGVTwmeVoexWZLTQaOvXwoSq//pTL0DHeNzUDrFnir4fgETdhjhIxjVnN+hKOuh98+E1eMLnUXstFg== + dependencies: + undici-types "~5.26.4" + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/uuid@^9.0.1": + version "9.0.7" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.7.tgz#b14cebc75455eeeb160d5fe23c2fcc0c64f724d8" + integrity sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +agentkeepalive@^4.2.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" + integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew== + dependencies: + humanize-ms "^1.2.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +axios@^1.4.0: + version "1.6.5" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.5.tgz#2c090da14aeeab3770ad30c3a1461bc970fb0cd8" + integrity sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg== + dependencies: + follow-redirects "^1.15.4" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-64@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" + integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== + +base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +binary-extensions@^2.0.0, binary-extensions@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +binary-search@^1.3.5: + version "1.3.6" + resolved "https://registry.yarnpkg.com/binary-search/-/binary-search-1.3.6.tgz#e32426016a0c5092f0f3598836a1c7da3560565c" + integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== + dependencies: + function-bind "^1.1.2" + get-intrinsic "^1.2.1" + set-function-length "^1.1.1" + +camelcase@6: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + +chokidar@^3.5.2: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cors@^2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +define-data-property@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== + dependencies: + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +digest-fetch@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/digest-fetch/-/digest-fetch-1.3.0.tgz#898e69264d00012a23cf26e8a3e40320143fc661" + integrity sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA== + dependencies: + base-64 "^0.1.0" + md5 "^2.3.0" + +dotenv@^16.3.1: + version "16.3.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" + integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +elevenlabs-node@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/elevenlabs-node/-/elevenlabs-node-2.0.3.tgz#6823f25bb6f3d9d0179c2338293e9704f6f3e0d9" + integrity sha512-BB6JopTDT+dJ/yNMhqPBzu2yz5Pooos86c8/CFZT6PRnx2in9wh3z560ae/6qpv5XRbpNOOhi/aC51CTdYJr5A== + dependencies: + axios "^1.4.0" + fs-extra "^11.1.1" + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventemitter3@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +expr-eval@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expr-eval/-/expr-eval-2.0.2.tgz#fa6f044a7b0c93fde830954eb9c5b0f7fbc7e201" + integrity sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg== + +express@^4.18.2: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +follow-redirects@^1.15.4: + version "1.15.5" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.5.tgz#54d4d6d062c0fa7d9d17feb008461550e3ba8020" + integrity sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw== + +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-extra@^11.1.1: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== + dependencies: + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== + dependencies: + get-intrinsic "^1.2.2" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + dependencies: + function-bind "^1.1.2" + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== + +inherits@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-any-array@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-any-array/-/is-any-array-2.0.1.tgz#9233242a9c098220290aa2ec28f82ca7fa79899e" + integrity sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +js-tiktoken@^1.0.7, js-tiktoken@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/js-tiktoken/-/js-tiktoken-1.0.8.tgz#21ab8ae222e71226b2ef0d2f4b507fb10d66a114" + integrity sha512-r7XK3E9/I+SOrbAGqb39pyO/rHAS1diAOSRAvaaLfHgXjkUSK9AiSd+r84Vn2f/GvXJYRAxKj8NHrUvqlaH5qg== + dependencies: + base64-js "^1.5.1" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonpointer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" + integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== + +langchain@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/langchain/-/langchain-0.1.4.tgz#b8a3e37fb2337c7dee53a31033d3a4a9bdbd56ff" + integrity sha512-wgYt63JqwCDNrGBXHLD5javroVqCiP/+aYJEHPN+xgchEpcX881HcmhZGmZl8w4tsI0Q4Jy+3mcnV9EJlUD/2w== + dependencies: + "@anthropic-ai/sdk" "^0.9.1" + "@langchain/community" "~0.0.17" + "@langchain/core" "~0.1.16" + "@langchain/openai" "~0.0.12" + binary-extensions "^2.2.0" + expr-eval "^2.0.2" + js-tiktoken "^1.0.7" + js-yaml "^4.1.0" + jsonpointer "^5.0.1" + langchainhub "~0.0.6" + langsmith "~0.0.48" + ml-distance "^4.0.0" + openapi-types "^12.1.3" + p-retry "4" + uuid "^9.0.0" + yaml "^2.2.1" + zod "^3.22.4" + zod-to-json-schema "^3.22.3" + +langchainhub@~0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/langchainhub/-/langchainhub-0.0.6.tgz#9d2d06e4ce0807b4e8a31e19611f57aef990b54d" + integrity sha512-SW6105T+YP1cTe0yMf//7kyshCgvCTyFBMTgH2H3s9rTAR4e+78DA/BBrUL/Mt4Q5eMWui7iGuAYb3pgGsdQ9w== + +langsmith@~0.0.48: + version "0.0.61" + resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.0.61.tgz#fb148e6e7835cab541ab40a02a496f64fe559b88" + integrity sha512-BYf9i0RkOCc4RdtIMGmWV4JBnXYsDYJXSaMuYhRyAEiV0MTw20o6BzP4Gpek1gFYovtC9fSRWqDu2D9xqvnX4w== + dependencies: + "@types/uuid" "^9.0.1" + commander "^10.0.1" + p-queue "^6.6.2" + p-retry "4" + uuid "^9.0.0" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +md5@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +ml-array-mean@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/ml-array-mean/-/ml-array-mean-1.1.6.tgz#d951a700dc8e3a17b3e0a583c2c64abd0c619c56" + integrity sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ== + dependencies: + ml-array-sum "^1.1.6" + +ml-array-sum@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/ml-array-sum/-/ml-array-sum-1.1.6.tgz#d1d89c20793cd29c37b09d40e85681aa4515a955" + integrity sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw== + dependencies: + is-any-array "^2.0.0" + +ml-distance-euclidean@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz#3a668d236649d1b8fec96380b9435c6f42c9a817" + integrity sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q== + +ml-distance@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/ml-distance/-/ml-distance-4.0.1.tgz#4741d17a1735888c5388823762271dfe604bd019" + integrity sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw== + dependencies: + ml-array-mean "^1.1.6" + ml-distance-euclidean "^2.0.0" + ml-tree-similarity "^1.0.0" + +ml-tree-similarity@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz#24705a107e32829e24d945e87219e892159c53f0" + integrity sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg== + dependencies: + binary-search "^1.3.5" + num-sort "^2.0.0" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^2.6.7: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +nodemon@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.0.3.tgz#244a62d1c690eece3f6165c6cdb0db03ebd80b76" + integrity sha512-7jH/NXbFPxVaMwmBCC2B9F/V6X1VkEdNgx3iu9jji8WxWcvhMWkmhNWhI5077zknOnZnBzba9hZP6bCPJLSReQ== + dependencies: + chokidar "^3.5.2" + debug "^4" + ignore-by-default "^1.0.1" + minimatch "^3.1.2" + pstree.remy "^1.1.8" + semver "^7.5.3" + simple-update-notifier "^2.0.0" + supports-color "^5.5.0" + touch "^3.1.0" + undefsafe "^2.0.5" + +nopt@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" + integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg== + dependencies: + abbrev "1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +num-sort@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/num-sort/-/num-sort-2.1.0.tgz#1cbb37aed071329fdf41151258bc011898577a9b" + integrity sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg== + +object-assign@^4: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.9.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +openai@^4.11.1, openai@^4.24.2: + version "4.24.7" + resolved "https://registry.yarnpkg.com/openai/-/openai-4.24.7.tgz#65b206bcf15c11202f758b5e1e945ffa13fd6b7f" + integrity sha512-JUesECWPtsDHO0TlZGb6q73hnAmXUdzj9NrwgZeL4lqlRt/kR1sWrXoy8LocxN/6uOtitywvcJqe0O1PLkG45g== + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + digest-fetch "^1.3.0" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + web-streams-polyfill "^3.2.1" + +openapi-types@^12.1.3: + version "12.1.3" + resolved "https://registry.yarnpkg.com/openapi-types/-/openapi-types-12.1.3.tgz#471995eb26c4b97b7bd356aacf7b91b73e777dd3" + integrity sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw== + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-queue@^6.6.2: + version "6.6.2" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== + dependencies: + eventemitter3 "^4.0.4" + p-timeout "^3.2.0" + +p-retry@4: + version "4.6.2" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-timeout@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +pstree.remy@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" + integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +safe-buffer@5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +semver@^7.5.3: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-function-length@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.0.tgz#2f81dc6c16c7059bda5ab7c82c11f03a515ed8e1" + integrity sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w== + dependencies: + define-data-property "^1.1.1" + function-bind "^1.1.2" + get-intrinsic "^1.2.2" + gopd "^1.0.1" + has-property-descriptors "^1.0.1" + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +simple-update-notifier@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb" + integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== + dependencies: + semver "^7.5.3" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +touch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" + integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== + dependencies: + nopt "~1.0.10" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typechat@^0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/typechat/-/typechat-0.0.10.tgz#cb3c302cc218f078999c34eaf22aa6300dfb767b" + integrity sha512-iF/wLLaZWt4Q9WO8stpq3NKilAa4b8hnCD16EirdhaxzAYk80MCb1wnW1il7GhkMNJuhJUD38dxs8q4A/EdxJw== + dependencies: + axios "^1.4.0" + typescript "^5.1.3" + +typescript@^5.1.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" + integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== + +undefsafe@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" + integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== + +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + +vary@^1, vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +web-streams-polyfill@^3.2.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz#32e26522e05128203a7de59519be3c648004343b" + integrity sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^2.2.1: + version "2.3.4" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" + integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA== + +zod-to-json-schema@3.20.3: + version "3.20.3" + resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.20.3.tgz#8c95d8c20f20455ffa0b4b526c29703f35f6d787" + integrity sha512-/Q3wnyxAfCt94ZcrGiXXoiAfRqasxl9CX64LZ9fj+4dKH68zulUtU0uk1WMxQPfAxQ0ZI70dKzcoW7hHj+DwSQ== + +zod-to-json-schema@^3.22.3: + version "3.22.3" + resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.22.3.tgz#1c71f9fa23f80b2f3b5eed537afa8a13a66a5200" + integrity sha512-9isG8SqRe07p+Aio2ruBZmLm2Q6Sq4EqmXOiNpDxp+7f0LV6Q/LX65fs5Nn+FV/CzfF3NLBoksXbS2jNYIfpKw== + +zod@^3.22.3, zod@^3.22.4: + version "3.22.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.4.tgz#f31c3a9386f61b1f228af56faa9255e845cf3fff" + integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg== diff --git a/apps/frontend/.env.example b/apps/frontend/.env.example new file mode 100644 index 0000000000000000000000000000000000000000..67e995eb783a71ef8eed3be6a11425104b15fe40 --- /dev/null +++ b/apps/frontend/.env.example @@ -0,0 +1,9 @@ +# Frontend Environment Variables (Example) +# Copy this file to .env and fill in your values + +# Backend API URL +# For local development: +VITE_API_URL=http://localhost:3000 + +# For production (set this in your hosting platform): +# VITE_API_URL=https://your-backend-url.railway.app diff --git a/apps/frontend/.gitignore b/apps/frontend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..fd3dbb571a12a1c3baf000db049e141c888d05a8 --- /dev/null +++ b/apps/frontend/.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js +.yarn/install-state.gz + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/apps/frontend/index.html b/apps/frontend/index.html new file mode 100644 index 0000000000000000000000000000000000000000..2e2b93367129df028609e12e9d9365f73fda0015 --- /dev/null +++ b/apps/frontend/index.html @@ -0,0 +1,13 @@ + + + + + + + Talking Avatar AI + + +
+ + + diff --git a/apps/frontend/package.json b/apps/frontend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..83f4a2e2eb1b324f75c26c79cf2d0a85e44d93dc --- /dev/null +++ b/apps/frontend/package.json @@ -0,0 +1,33 @@ +{ + "name": "digital-human-frontend", + "private": true, + "version": "1.0.0", + "type": "module", + "license": "MIT", + "scripts": { + "dev": "vite --host", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@react-three/drei": "9.93.0", + "@react-three/fiber": "8.15.13", + "@react-three/xr": "^5.7.1", + "@types/three": "0.160.0", + "firebase": "^12.6.0", + "leva": "^0.9.35", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-router-dom": "^7.9.6", + "three": "0.160.0" + }, + "devDependencies": { + "@types/react": "^18.2.47", + "@types/react-dom": "^18.2.18", + "@vitejs/plugin-react": "^4.2.1", + "autoprefixer": "^10.4.16", + "postcss": "^8.4.33", + "tailwindcss": "^3.4.1", + "vite": "^5.0.11" + } +} \ No newline at end of file diff --git a/apps/frontend/postcss.config.js b/apps/frontend/postcss.config.js new file mode 100644 index 0000000000000000000000000000000000000000..2e7af2b7f1a6f391da1631d93968a9d487ba977d --- /dev/null +++ b/apps/frontend/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/apps/frontend/public/animations/angry.fbx b/apps/frontend/public/animations/angry.fbx new file mode 100644 index 0000000000000000000000000000000000000000..9f45d8515e9cc804c7f1b18ba49f3162b8a13d0f --- /dev/null +++ b/apps/frontend/public/animations/angry.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789c9b0fb55582422c20165e87385f8d2f190e7cfdeb7bf088d0e25fc5b0d38b +size 1904208 diff --git a/apps/frontend/public/animations/defeated.fbx b/apps/frontend/public/animations/defeated.fbx new file mode 100644 index 0000000000000000000000000000000000000000..2349424754ae603209e762af9cd60b7d03c35108 --- /dev/null +++ b/apps/frontend/public/animations/defeated.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423ab31d0756eb5894ec162087f602095427101cfbc055a82991ea8ed11f7294 +size 1004752 diff --git a/apps/frontend/public/animations/dismissing_gesture.fbx b/apps/frontend/public/animations/dismissing_gesture.fbx new file mode 100644 index 0000000000000000000000000000000000000000..6b5be8a785d781628263c5fb38bbd38dcabc2281 --- /dev/null +++ b/apps/frontend/public/animations/dismissing_gesture.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53d326e46f19602a72d2a108d420ad4c7ccab1e2693c1940e1f396cb9daddaf +size 616080 diff --git a/apps/frontend/public/animations/happy_idle.fbx b/apps/frontend/public/animations/happy_idle.fbx new file mode 100644 index 0000000000000000000000000000000000000000..169cb6daf8b928aa791ee4729e3f1143a3c91ea5 --- /dev/null +++ b/apps/frontend/public/animations/happy_idle.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9af45da202eb93b70f3e0679ec43a5b5cea0d67f41732e78dc907693773e14 +size 701216 diff --git a/apps/frontend/public/animations/idle.fbx b/apps/frontend/public/animations/idle.fbx new file mode 100644 index 0000000000000000000000000000000000000000..fabf69092cafa9c6e5a26df97aa0356c54f9d013 --- /dev/null +++ b/apps/frontend/public/animations/idle.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f353801db1364ec59ca44cb9b1b7bea0895a7f8397d70addf39a9ee021599b41 +size 1417648 diff --git a/apps/frontend/public/animations/sad_idle.fbx b/apps/frontend/public/animations/sad_idle.fbx new file mode 100644 index 0000000000000000000000000000000000000000..0ce4abbf8ce6ae69f1817b2562a760ec1641b18f --- /dev/null +++ b/apps/frontend/public/animations/sad_idle.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50f86657a73a706800b0f887d5b60bbf3df7c9c32c944ac1e3de6909e299e83 +size 586304 diff --git a/apps/frontend/public/animations/surprised.fbx b/apps/frontend/public/animations/surprised.fbx new file mode 100644 index 0000000000000000000000000000000000000000..11596c4bc632d46997e6120271e9fd2cbcb2b5fa --- /dev/null +++ b/apps/frontend/public/animations/surprised.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2e8f3e0b8d6e87f0660eca3460168fff077b4c907e53deaaab400ab1503960 +size 846944 diff --git a/apps/frontend/public/animations/talking.fbx b/apps/frontend/public/animations/talking.fbx new file mode 100644 index 0000000000000000000000000000000000000000..40b182c5038edc2476ecd9f1cb705585bb329a7f --- /dev/null +++ b/apps/frontend/public/animations/talking.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69158870bb49d1add7251172f6f041dd56b93866bd504b2c4fbf63a00fac4a93 +size 817280 diff --git a/apps/frontend/public/animations/talking_one.fbx b/apps/frontend/public/animations/talking_one.fbx new file mode 100644 index 0000000000000000000000000000000000000000..da0ecd0aa8317f71d0422ca1c8c904fa1513e14c --- /dev/null +++ b/apps/frontend/public/animations/talking_one.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a57d466fa8e76ec803f5cf4fd26f694569b84e87bd16204a0e4ce9ce85ff08 +size 817280 diff --git a/apps/frontend/public/animations/talking_two.fbx b/apps/frontend/public/animations/talking_two.fbx new file mode 100644 index 0000000000000000000000000000000000000000..cda82e36ddc3fca11db5e2511740c4ea30cc505d --- /dev/null +++ b/apps/frontend/public/animations/talking_two.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0784f71c1523fefb42f1332e0faa891661048bbe60e17003c693677bf98d3148 +size 792480 diff --git a/apps/frontend/public/animations/thoughtful_head_shake.fbx b/apps/frontend/public/animations/thoughtful_head_shake.fbx new file mode 100644 index 0000000000000000000000000000000000000000..18ccb122184b8dc44c38414d57af7a0eb1ee71d1 --- /dev/null +++ b/apps/frontend/public/animations/thoughtful_head_shake.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af2bc1b68eba1c8f57ffdf7fc7ecf6ae926bdd0e8599828c31c86f72b7ed2b4 +size 724976 diff --git a/apps/frontend/public/favicon.ico b/apps/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..f648a6c92cac28054b3e8153dcd841c3438d6048 --- /dev/null +++ b/apps/frontend/public/favicon.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15db1c33d2e1f814c67c337fe313fbfeb30a3edd093507a4a5016fc7b8fdf7c2 +size 105165 diff --git a/apps/frontend/public/models/animations.glb b/apps/frontend/public/models/animations.glb new file mode 100644 index 0000000000000000000000000000000000000000..a47f12ec4d4b06c8759aac497d9f3514567a117a --- /dev/null +++ b/apps/frontend/public/models/animations.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4609425d32623ae617a0cb0369634cee62700d89f1eda331520ea8830283b0 +size 2220552 diff --git a/apps/frontend/public/models/animations.gltf b/apps/frontend/public/models/animations.gltf new file mode 100644 index 0000000000000000000000000000000000000000..54cfbbae52f24412d767046b04ccfac98cd2e729 --- /dev/null +++ b/apps/frontend/public/models/animations.gltf @@ -0,0 +1,65193 @@ +{ + "asset": { + "generator": "Khronos glTF Blender I/O v4.0.44", + "version": "2.0" + }, + "scene": 0, + "scenes": [ + { + "name": "Scene", + "nodes": [ + 82 + ] + } + ], + "nodes": [ + { + "name": "HeadTop_End_end", + "rotation": [ + -2.4180337732104817e-9, + -6.076716007556021e-16, + 2.3754276676094324e-16, + 1 + ], + "translation": [ + -4.440892098500626e-16, + 0.12410002201795578, + 1.834893625929368e-10 + ] + }, + { + "children": [ + 0 + ], + "name": "HeadTop_End", + "rotation": [ + -0.0036119502037763596, + 7.970954422225653e-15, + 2.0242742351057538e-14, + 0.9999934434890747 + ], + "translation": [ + 1.0935696792557792e-13, + 0.2262999713420868, + 0.03730001300573349 + ] + }, + { + "name": "LeftEye_end", + "rotation": [ + -6.05359851135745e-9, + -2.4814282823045917e-16, + 4.643017637029345e-10, + 1 + ], + "translation": [ + 8.75046257675649e-10, + 0.1241002082824707, + 5.553122406354305e-9 + ] + }, + { + "children": [ + 2 + ], + "name": "LeftEye", + "rotation": [ + -0.003611061256378889, + 4.64286276091741e-10, + -1.6774510383163466e-12, + 0.9999935030937195 + ], + "scale": [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + 0.030400000512599945, + 0.08780006319284439, + 0.08240002393722534 + ] + }, + { + "name": "RightEye_end", + "rotation": [ + -6.2864282668329e-9, + -2.48034381543431e-16, + 4.643008755245148e-10, + 1 + ], + "translation": [ + 8.750531410584017e-10, + 0.12410008907318115, + -1.1525973508952347e-9 + ] + }, + { + "children": [ + 4 + ], + "name": "RightEye", + "rotation": [ + -0.0036110607907176018, + 4.64286276091741e-10, + -1.6774541825026468e-12, + 0.9999935030937195 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation": [ + -0.029899999499320984, + 0.08780006319284439, + 0.08240001648664474 + ] + }, + { + "children": [ + 1, + 3, + 5 + ], + "name": "Head", + "rotation": [ + -0.16267599165439606, + -6.464339968263039e-14, + 4.657636581105462e-13, + 0.9866795539855957 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation": [ + 3.635980405647388e-15, + 0.12259995192289352, + 1.7927957784991122e-8 + ] + }, + { + "children": [ + 6 + ], + "name": "Neck", + "rotation": [ + 0.20306849479675293, + 3.6963423451609814e-14, + -5.902242128201507e-13, + 0.9791645407676697 + ], + "translation": [ + -5.88418203051333e-15, + 0.15560004115104675, + -3.725290742551124e-9 + ] + }, + { + "name": "LeftHandThumb4_end", + "rotation": [ + -1.3038516932795119e-8, + 3.2596292331987797e-9, + -1.3213140803713941e-8, + 1 + ], + "scale": [ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation": [ + 4.6566128730773926e-9, + 0.03529995679855347, + -3.166496753692627e-8 + ] + }, + { + "children": [ + 8 + ], + "name": "LeftHandThumb4", + "rotation": [ + 0.012975107878446579, + 0.052386581897735596, + -0.006928763352334499, + 0.9985185861587524 + ], + "scale": [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + -2.9802322387695312e-8, + 0.03529995307326317, + 1.7276033759117126e-7 + ] + }, + { + "children": [ + 9 + ], + "name": "LeftHandThumb3", + "rotation": [ + -4.518314256074518e-7, + -0.024891996756196022, + -4.378572882046683e-8, + 0.9996901154518127 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + -1.862645149230957e-8, + 0.030500028282403946, + 1.3131648302078247e-7 + ] + }, + { + "children": [ + 10 + ], + "name": "LeftHandThumb2", + "rotation": [ + 6.650693080700876e-7, + -0.0768657848238945, + 4.763839456245478e-8, + 0.9970414638519287 + ], + "scale": [ + 1, + 1, + 0.9999999403953552 + ], + "translation": [ + 7.147900760173798e-8, + 0.04140002653002739, + -1.2665987014770508e-7 + ] + }, + { + "children": [ + 11 + ], + "name": "LeftHandThumb1", + "rotation": [ + 0.16341429948806763, + 0.0041258689016103745, + 0.32652777433395386, + 0.9309449195861816 + ], + "scale": [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + -0.03240001201629639, + 0.02640005387365818, + 0.005199864041060209 + ] + }, + { + "name": "LeftHandIndex4_end", + "rotation": [ + -1.2383679859340191e-8, + -1.4857505448162556e-8, + -4.656612873077393e-10, + 1 + ], + "translation": [ + -1.862645149230957e-9, + 0.03380002826452255, + 1.7462298274040222e-9 + ] + }, + { + "children": [ + 13 + ], + "name": "LeftHandIndex4", + "rotation": [ + 0.044784095138311386, + 0.05674593150615692, + -0.0071326205506920815, + 0.9973582029342651 + ], + "scale": [ + 1.0000001192092896, + 1, + 1 + ], + "translation": [ + -1.862645149230957e-9, + 0.033799976110458374, + 9.057112038135529e-8 + ] + }, + { + "children": [ + 14 + ], + "name": "LeftHandIndex3", + "rotation": [ + 4.812443497860419e-17, + -0.07616151124238968, + 5.546891605092536e-16, + 0.9970954656600952 + ], + "translation": [ + 1.4901162970204496e-8, + 0.02830001711845398, + 1.096632331609726e-7 + ] + }, + { + "children": [ + 15 + ], + "name": "LeftHandIndex2", + "rotation": [ + -6.373963135075655e-9, + -0.005827380809932947, + 6.790348283658432e-9, + 0.999983012676239 + ], + "scale": [ + 1, + 0.9999998807907104, + 1 + ], + "translation": [ + 1.4639779166714106e-8, + 0.044699981808662415, + 4.618151905333434e-8 + ] + }, + { + "children": [ + 16 + ], + "name": "LeftHandIndex1", + "rotation": [ + -0.014759677462279797, + -0.05708460137248039, + 0.04666285961866379, + 0.997169017791748 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation": [ + -0.03530002012848854, + 0.0975000262260437, + -0.007000279147177935 + ] + }, + { + "name": "LeftHandMiddle4_end", + "rotation": [ + 6.897607818245888e-9, + -2.7466739993542433e-9, + 4.656612873077393e-10, + 1 + ], + "translation": [ + 1.4435499906539917e-8, + 0.034599967300891876, + -9.709037840366364e-8 + ] + }, + { + "children": [ + 18 + ], + "name": "LeftHandMiddle4", + "rotation": [ + 0.02381390519440174, + 0.02245859056711197, + -0.0016472397837787867, + 0.9994627833366394 + ], + "translation": [ + 0, + 0.034599993377923965, + 3.958120942115784e-9 + ] + }, + { + "children": [ + 19 + ], + "name": "LeftHandMiddle3", + "rotation": [ + -1.0480952755264217e-15, + -0.023097841069102287, + -1.0736454949847557e-15, + 0.9997332096099854 + ], + "scale": [ + 0.9999998807907104, + 1, + 0.9999998807907104 + ], + "translation": [ + -1.4901161193847656e-8, + 0.035400185734033585, + 8.731149137020111e-8 + ] + }, + { + "children": [ + 20 + ], + "name": "LeftHandMiddle2", + "rotation": [ + -1.7805795726744122e-9, + -0.009798833169043064, + -1.0799731109401023e-9, + 0.999951958656311 + ], + "translation": [ + -9.314737425825115e-9, + 0.04569998010993004, + -3.6063710240341607e-8 + ] + }, + { + "children": [ + 21 + ], + "name": "LeftHandMiddle1", + "rotation": [ + -0.01418119203299284, + -0.06941821426153183, + 0.04684191942214966, + 0.9963863492012024 + ], + "scale": [ + 1, + 1.0000001192092896, + 1 + ], + "translation": [ + -0.00920000672340393, + 0.10020001232624054, + -0.0035001831129193306 + ] + }, + { + "name": "LeftHandRing4_end", + "rotation": [ + 7.566995918750763e-10, + -1.9936123862862587e-9, + -4.700268618762493e-9, + 1 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + -3.725290298461914e-9, + 0.02979995682835579, + 2.0023435354232788e-8 + ] + }, + { + "children": [ + 23 + ], + "name": "LeftHandRing4", + "rotation": [ + 0.006650138646364212, + -0.006897410377860069, + 0.022116072475910187, + 0.9997094869613647 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation": [ + 7.450580596923828e-9, + 0.029799968004226685, + -1.51805579662323e-7 + ] + }, + { + "children": [ + 24 + ], + "name": "LeftHandRing3", + "rotation": [ + -6.04883432991037e-16, + -0.005793055985122919, + 1.60311308481921e-15, + 0.9999832510948181 + ], + "scale": [ + 1, + 0.9999998807907104, + 1 + ], + "translation": [ + -1.4901162970204496e-8, + 0.03620001673698425, + -1.5832483768463135e-8 + ] + }, + { + "children": [ + 25 + ], + "name": "LeftHandRing2", + "rotation": [ + 2.737004622943573e-9, + -0.01650211215019226, + 1.0100156266901195e-8, + 0.999863862991333 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation": [ + -2.08332195938965e-9, + 0.04190002381801605, + 3.783060975592889e-8 + ] + }, + { + "children": [ + 26 + ], + "name": "LeftHandRing1", + "rotation": [ + -0.014753756113350391, + -0.057211313396692276, + 0.04666473716497421, + 0.9971617460250854 + ], + "scale": [ + 1, + 1.0000001192092896, + 1 + ], + "translation": [ + 0.015399985015392303, + 0.09560003131628036, + 0.002199700102210045 + ] + }, + { + "name": "LeftHandPinky4_end", + "rotation": [ + 1.0128133887121749e-8, + -4.016329047118461e-9, + -7.334166163275313e-9, + 1 + ], + "scale": [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation": [ + 3.050081431865692e-8, + 0.02629995532333851, + -1.6763806343078613e-8 + ] + }, + { + "children": [ + 28 + ], + "name": "LeftHandPinky4", + "rotation": [ + 0.13740374147891998, + 0.10453161597251892, + -0.012381546199321747, + 0.9849061369895935 + ], + "scale": [ + 0.9999998807907104, + 1.0000001192092896, + 1 + ], + "translation": [ + 4.470348358154297e-8, + 0.02630004845559597, + 2.9802322387695312e-8 + ] + }, + { + "children": [ + 29 + ], + "name": "LeftHandPinky3", + "rotation": [ + 3.2104459819025225e-16, + -0.012025570496916771, + -7.833319932747183e-16, + 0.9999276995658875 + ], + "scale": [ + 1, + 0.9999998807907104, + 1 + ], + "translation": [ + 4.470348358154297e-8, + 0.02239999733865261, + 2.2351741790771484e-8 + ] + }, + { + "children": [ + 30 + ], + "name": "LeftHandPinky2", + "rotation": [ + 1.0346997036947414e-8, + -0.21278347074985504, + 7.066266238808794e-9, + 0.9770993590354919 + ], + "scale": [ + 1.0000001192092896, + 1, + 1.0000001192092896 + ], + "translation": [ + 5.370370814716807e-11, + 0.028199976310133934, + -2.0426154989650058e-8 + ] + }, + { + "children": [ + 31 + ], + "name": "LeftHandPinky1", + "rotation": [ + -0.013933349400758743, + -0.07468517124652863, + 0.046916231513023376, + 0.9960054755210876 + ], + "scale": [ + 0.9999999403953552, + 1.0000001192092896, + 1 + ], + "translation": [ + 0.03909999132156372, + 0.08980000019073486, + 0.010499756783246994 + ] + }, + { + "children": [ + 12, + 17, + 22, + 27, + 32 + ], + "name": "LeftHand", + "rotation": [ + 0.012432600371539593, + 0.10635720193386078, + -0.047336041927337646, + 0.9931228160858154 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999998807907104 + ], + "translation": [ + 3.725290298461914e-9, + 0.25200000405311584, + 1.5192199498414993e-8 + ] + }, + { + "children": [ + 33 + ], + "name": "LeftForeArm", + "rotation": [ + -7.450407402131987e-9, + 0.023906007409095764, + 5.0726235711895384e-11, + 0.999714195728302 + ], + "translation": [ + 4.927268038024124e-10, + 0.28509992361068726, + -5.652237788922321e-8 + ] + }, + { + "children": [ + 34 + ], + "name": "LeftArm", + "rotation": [ + 0.07900723069906235, + 0.027670037001371384, + -0.0018158321036025882, + 0.9964883327484131 + ], + "scale": [ + 1, + 1, + 0.9999999403953552 + ], + "translation": [ + -6.752088665962219e-9, + 0.11890000104904175, + -6.705522537231445e-8 + ] + }, + { + "children": [ + 35 + ], + "name": "LeftShoulder", + "rotation": [ + 0.45792391896247864, + 0.5333088040351868, + -0.4599848985671997, + 0.5424954295158386 + ], + "scale": [ + 1.0000001192092896, + 1.000000238418579, + 1 + ], + "translation": [ + 0.0471000038087368, + 0.1410999447107315, + -0.006300014443695545 + ] + }, + { + "name": "RightHandThumb4_end", + "rotation": [ + -1.4901159417490817e-8, + -1.5366822481155396e-8, + -2.8172507882118225e-8, + 1 + ], + "scale": [ + 1, + 1.0000001192092896, + 1 + ], + "translation": [ + 9.313225746154785e-10, + 0.035300113260746, + -8.195638656616211e-8 + ] + }, + { + "children": [ + 37 + ], + "name": "RightHandThumb4", + "rotation": [ + 0.012980806641280651, + -0.052376750856637955, + 0.006926343776285648, + 0.9985190629959106 + ], + "scale": [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + 3.5390257835388184e-8, + 0.035300109535455704, + 1.0291114449501038e-7 + ] + }, + { + "children": [ + 38 + ], + "name": "RightHandThumb3", + "rotation": [ + -4.1363554714735074e-7, + 0.02490677312016487, + 5.217024678927373e-8, + 0.9996897578239441 + ], + "translation": [ + -4.190951585769653e-8, + 0.03050002083182335, + -5.6461431086063385e-8 + ] + }, + { + "children": [ + 39 + ], + "name": "RightHandThumb2", + "rotation": [ + 6.258370603973162e-7, + 0.0768522247672081, + -5.6045116991754185e-8, + 0.9970425367355347 + ], + "scale": [ + 1, + 0.9999999403953552, + 1 + ], + "translation": [ + -2.2118911147117615e-8, + 0.04140005260705948, + -1.30385160446167e-8 + ] + }, + { + "children": [ + 40 + ], + "name": "RightHandThumb1", + "rotation": [ + 0.16341228783130646, + -0.004131317604333162, + -0.32652878761291504, + 0.9309448599815369 + ], + "translation": [ + 0.0323999859392643, + 0.026400024071335793, + 0.0052001518197357655 + ] + }, + { + "name": "RightHandIndex4_end", + "rotation": [ + -1.280568540096283e-9, + -1.3620592653751373e-8, + 2.3283064365386963e-10, + 1 + ], + "translation": [ + 5.587935447692871e-9, + 0.03380000218749046, + -6.356276571750641e-8 + ] + }, + { + "children": [ + 42 + ], + "name": "RightHandIndex4", + "rotation": [ + 0.044794898480176926, + -0.05673516169190407, + 0.007137121167033911, + 0.9973583221435547 + ], + "scale": [ + 0.9999999403953552, + 1, + 1 + ], + "translation": [ + 7.450580596923828e-9, + 0.033799923956394196, + -1.157168298959732e-7 + ] + }, + { + "children": [ + 43 + ], + "name": "RightHandIndex3", + "rotation": [ + -1.7879245566026656e-16, + 0.07615259289741516, + 1.4208416530863332e-15, + 0.9970961809158325 + ], + "translation": [ + 1.862643705941025e-9, + 0.028300026431679726, + 3.003515303134918e-8 + ] + }, + { + "children": [ + 44 + ], + "name": "RightHandIndex2", + "rotation": [ + -5.637654232337752e-10, + 0.0058289566077291965, + -5.091157273540148e-9, + 0.999983012676239 + ], + "translation": [ + -2.5590303209810372e-9, + 0.04470006376504898, + 4.928635988221686e-8 + ] + }, + { + "children": [ + 45 + ], + "name": "RightHandIndex1", + "rotation": [ + -0.01475990004837513, + 0.05708017200231552, + -0.0466628298163414, + 0.9971692562103271 + ], + "scale": [ + 1.0000001192092896, + 1, + 0.9999999403953552 + ], + "translation": [ + 0.035299964249134064, + 0.09749999642372131, + -0.006999990437179804 + ] + }, + { + "name": "RightHandMiddle4_end", + "rotation": [ + 1.2951204553246498e-9, + -7.645212463103235e-9, + -1.7462298274040222e-10, + 1 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + -1.792795956134796e-8, + 0.03460000082850456, + -1.969747245311737e-7 + ] + }, + { + "children": [ + 47 + ], + "name": "RightHandMiddle4", + "rotation": [ + 0.023805031552910805, + -0.022467441856861115, + 0.0016420191386714578, + 0.9994627833366394 + ], + "translation": [ + 3.725290298461914e-9, + 0.03460022434592247, + 8.998904377222061e-8 + ] + }, + { + "children": [ + 48 + ], + "name": "RightHandMiddle3", + "rotation": [ + -1.8679744640741174e-15, + 0.023101067170500755, + 1.936262392630657e-16, + 0.9997331500053406 + ], + "scale": [ + 0.9999998807907104, + 1, + 0.9999998807907104 + ], + "translation": [ + 7.4505797087454084e-9, + 0.03540017828345299, + 1.4272518455982208e-7 + ] + }, + { + "children": [ + 49 + ], + "name": "RightHandMiddle2", + "rotation": [ + 2.425564415986514e-9, + 0.00979646947234869, + 6.809933505991239e-9, + 0.9999520182609558 + ], + "translation": [ + 7.1176948779339e-9, + 0.04569998383522034, + 1.6068888442077878e-7 + ] + }, + { + "children": [ + 50 + ], + "name": "RightHandMiddle1", + "rotation": [ + -0.014181339181959629, + 0.06941533833742142, + -0.04684191569685936, + 0.9963865876197815 + ], + "scale": [ + 1, + 0.9999999403953552, + 1 + ], + "translation": [ + 0.009199947118759155, + 0.10019998252391815, + -0.003499893471598625 + ] + }, + { + "name": "RightHandRing4_end", + "rotation": [ + 6.402842700481415e-10, + 1.0622897006484777e-9, + 1.949956640601158e-9, + 1 + ], + "scale": [ + 1, + 1, + 1.0000001192092896 + ], + "translation": [ + -1.4901161193847656e-8, + 0.02979999966919422, + -1.0384246706962585e-7 + ] + }, + { + "children": [ + 52 + ], + "name": "RightHandRing4", + "rotation": [ + 0.006658341735601425, + 0.006907009519636631, + -0.02211541123688221, + 0.9997093677520752 + ], + "scale": [ + 1, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation": [ + 0, + 0.02980002947151661, + -3.67872416973114e-8 + ] + }, + { + "children": [ + 53 + ], + "name": "RightHandRing3", + "rotation": [ + -2.1121376403508002e-15, + 0.005799862556159496, + 1.8519840702167323e-16, + 0.9999831914901733 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation": [ + 1.4901161193847656e-8, + 0.036199960857629776, + 1.4202669262886047e-7 + ] + }, + { + "children": [ + 54 + ], + "name": "RightHandRing2", + "rotation": [ + -2.7368698418683834e-9, + 0.016498908400535583, + 1.01001971231085e-8, + 0.999863862991333 + ], + "translation": [ + 1.2817787720109663e-8, + 0.04189993813633919, + 8.603546319818633e-8 + ] + }, + { + "children": [ + 55 + ], + "name": "RightHandRing1", + "rotation": [ + -0.014753995463252068, + 0.05720629543066025, + -0.04666471481323242, + 0.9971620440483093 + ], + "scale": [ + 1, + 0.9999999403953552, + 1 + ], + "translation": [ + -0.01540006697177887, + 0.09560000151395798, + 0.0021999944001436234 + ] + }, + { + "name": "RightHandPinky4_end", + "rotation": [ + -3.110617399215698e-7, + -3.2462412491440773e-7, + 2.3283064365386963e-9, + 1 + ], + "translation": [ + 3.795139491558075e-8, + 0.02629997208714485, + -2.3283064365386963e-8 + ] + }, + { + "children": [ + 57 + ], + "name": "RightHandPinky4", + "rotation": [ + 0.1373988687992096, + -0.10453642159700394, + 0.012381378561258316, + 0.9849063158035278 + ], + "translation": [ + -2.2351741790771484e-8, + 0.026300039142370224, + -1.7136335372924805e-7 + ] + }, + { + "children": [ + 58 + ], + "name": "RightHandPinky3", + "rotation": [ + 9.852007630870748e-17, + 0.01202438771724701, + -3.105766209209488e-16, + 0.9999276995658875 + ], + "scale": [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation": [ + -1.4901160305669237e-8, + 0.02240004763007164, + -2.60770320892334e-8 + ] + }, + { + "children": [ + 59 + ], + "name": "RightHandPinky2", + "rotation": [ + 4.9797428403053345e-9, + 0.21278272569179535, + 4.898087269111784e-9, + 0.9770995378494263 + ], + "scale": [ + 1, + 1, + 0.9999999403953552 + ], + "translation": [ + -6.0757359143792655e-9, + 0.028200073167681694, + 8.413865515422003e-8 + ] + }, + { + "children": [ + 60 + ], + "name": "RightHandPinky1", + "rotation": [ + -0.013933517970144749, + 0.07468169182538986, + -0.04691622778773308, + 0.9960057139396667 + ], + "scale": [ + 1, + 0.9999999403953552, + 1 + ], + "translation": [ + -0.03910005837678909, + 0.08980002999305725, + 0.010500049218535423 + ] + }, + { + "children": [ + 41, + 46, + 51, + 56, + 61 + ], + "name": "RightHand", + "rotation": [ + 0.012432494200766087, + -0.1063595786690712, + 0.04733610898256302, + 0.9931225776672363 + ], + "scale": [ + 0.9999999403953552, + 1, + 1 + ], + "translation": [ + 2.9198039541711296e-9, + 0.25200003385543823, + 2.9333987683344276e-8 + ] + }, + { + "children": [ + 62 + ], + "name": "RightForeArm", + "rotation": [ + -7.45952100089653e-9, + -0.0239044651389122, + 1.2870665644371115e-9, + 0.9997142553329468 + ], + "translation": [ + -1.570967356201436e-9, + 0.2851000428199768, + -2.6087203508495804e-8 + ] + }, + { + "children": [ + 63 + ], + "name": "RightArm", + "rotation": [ + 0.07900726050138474, + -0.02767096273601055, + 0.0018148301169276237, + 0.9964882731437683 + ], + "translation": [ + 7.334165275096893e-9, + 0.11890002340078354, + 2.7939677238464355e-9 + ] + }, + { + "children": [ + 64 + ], + "name": "RightShoulder", + "rotation": [ + 0.45792248845100403, + -0.5333085656166077, + 0.45998626947402954, + 0.5424957871437073 + ], + "scale": [ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation": [ + -0.047099996358156204, + 0.1410999298095703, + -0.006300016306340694 + ] + }, + { + "children": [ + 7, + 36, + 65 + ], + "name": "Spine2", + "rotation": [ + 0.04720147326588631, + -1.945058358625816e-14, + -1.4076664367566188e-13, + 0.9988853931427002 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation": [ + 3.6637359812630166e-15, + 0.12179993093013763, + 1.1175870895385742e-8 + ] + }, + { + "children": [ + 66 + ], + "name": "Spine1", + "rotation": [ + -0.032173920422792435, + 5.437023227472526e-12, + 5.961653696748281e-13, + 0.999482274055481 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation": [ + 5.051514762044462e-15, + 0.1304999738931656, + -3.725290742551124e-9 + ] + }, + { + "children": [ + 67 + ], + "name": "Spine", + "rotation": [ + -0.06869354099035263, + 0.000026118095775018446, + 0.0000017983932139031822, + 0.9976378083229065 + ], + "scale": [ + 1, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation": [ + -1.674216321134736e-13, + 0.09850005805492401, + -5.820998350003492e-9 + ] + }, + { + "name": "LeftToe_End_end", + "rotation": [ + -8.891221092710566e-9, + -8.284987984552572e-7, + 3.8708094507455826e-9, + 1 + ], + "scale": [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + -4.307366907596588e-9, + 0.09909998625516891, + -2.444721758365631e-9 + ] + }, + { + "children": [ + 69 + ], + "name": "LeftToe_End", + "rotation": [ + 0.006907776929438114, + 0.6984120011329651, + 0.017670635133981705, + 0.7154444456100464 + ], + "scale": [ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation": [ + 2.342858351767063e-9, + 0.09909998625516891, + -6.7229848355054855e-9 + ] + }, + { + "children": [ + 70 + ], + "name": "LeftToeBase", + "rotation": [ + 0.2682287395000458, + -0.04375433176755905, + 0.01854609325528145, + 0.9621824026107788 + ], + "scale": [ + 0.9999998807907104, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation": [ + 8.847564458847046e-9, + 0.14880000054836273, + -1.4901161193847656e-8 + ] + }, + { + "children": [ + 71 + ], + "name": "LeftFoot", + "rotation": [ + 0.5065653920173645, + 0.029989229515194893, + 0.030175402760505676, + 0.861151397228241 + ], + "scale": [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation": [ + 3.1868694350123405e-9, + 0.4438999593257904, + -2.473825588822365e-9 + ] + }, + { + "children": [ + 72 + ], + "name": "LeftLeg", + "rotation": [ + -0.04165526106953621, + -0.000308387097902596, + -0.0029117490630596876, + 0.9991277456283569 + ], + "scale": [ + 1, + 1, + 0.9999999403953552 + ], + "translation": [ + 8.294591680169106e-10, + 0.4582000970840454, + 4.94765117764473e-10 + ] + }, + { + "children": [ + 73 + ], + "name": "LeftUpLeg", + "rotation": [ + 0.0021431848872452974, + -0.00968974269926548, + -0.9999498128890991, + 0.0013720946153625846 + ], + "scale": [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation": [ + 0.09529998898506165, + 0.005200070794671774, + -0.003300001611933112 + ] + }, + { + "name": "RightToe_End_end", + "rotation": [ + 3.133026993396015e-8, + 0.000001385924406349659, + 2.2846506908535957e-9, + 1 + ], + "scale": [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation": [ + -6.51925802230835e-9, + 0.09910000115633011, + -6.170012056827545e-9 + ] + }, + { + "children": [ + 75 + ], + "name": "RightToe_End", + "rotation": [ + 0.0069069210439920425, + -0.6984327435493469, + -0.017671013250947, + 0.7154242396354675 + ], + "scale": [ + 0.9999999403953552, + 0.9999999403953552, + 1 + ], + "translation": [ + -1.7171259969472885e-9, + 0.0991000235080719, + -1.775333657860756e-9 + ] + }, + { + "children": [ + 76 + ], + "name": "RightToeBase", + "rotation": [ + 0.2682301104068756, + 0.04374822601675987, + -0.018555311486124992, + 0.9621821641921997 + ], + "scale": [ + 0.9999999403953552, + 1, + 1 + ], + "translation": [ + -1.862645149230957e-9, + 0.14880000054836273, + -1.30385160446167e-8 + ] + }, + { + "children": [ + 77 + ], + "name": "RightFoot", + "rotation": [ + 0.5065646767616272, + -0.029987497255206108, + -0.03017258085310459, + 0.8611518740653992 + ], + "translation": [ + 6.984919309616089e-9, + 0.4439000189304352, + -1.1932570487260818e-9 + ] + }, + { + "children": [ + 78 + ], + "name": "RightLeg", + "rotation": [ + -0.04165526106953621, + 0.0003092464176006615, + 0.0029117814265191555, + 0.9991278052330017 + ], + "translation": [ + 1.4915713109076023e-10, + 0.45820003747940063, + -1.367880031466484e-9 + ] + }, + { + "children": [ + 79 + ], + "name": "RightUpLeg", + "rotation": [ + 0.0021974805276840925, + 0.009689847007393837, + 0.9999496936798096, + 0.0013715567765757442 + ], + "scale": [ + 0.9999999403953552, + 1, + 1 + ], + "translation": [ + -0.09530000388622284, + 0.0052000959403812885, + -0.0033000013791024685 + ] + }, + { + "children": [ + 68, + 74, + 80 + ], + "name": "Hips", + "rotation": [ + 0.016229970380663872, + -0.000026190657081315294, + -4.4765073425878654e-7, + 0.9998682737350464 + ], + "translation": [ + 0, + 1.0209945440292358, + 0 + ] + }, + { + "children": [ + 81 + ], + "name": "Armature" + } + ], + "animations": [ + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "Angry", + "samplers": [ + { + "input": 0, + "interpolation": "LINEAR", + "output": 1 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 2 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 4 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 5 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 6 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 7 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 8 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 9 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 10 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 11 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 12 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 13 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 14 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 15 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 16 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 17 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 18 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 19 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 20 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 21 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 22 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 23 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 24 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 25 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 26 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 27 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 28 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 29 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 30 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 31 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 32 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 33 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 34 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 35 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 36 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 37 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 38 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 39 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 40 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 41 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 42 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 43 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 44 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 45 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 46 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 47 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 48 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 49 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 50 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 51 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 52 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 53 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 54 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 55 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 56 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 57 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 58 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 59 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 60 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 61 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 62 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 63 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 64 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 65 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 66 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 67 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 68 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 69 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 70 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 71 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 72 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 73 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 74 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 75 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 76 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 77 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 78 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 79 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 80 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 81 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 82 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 83 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 84 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 85 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 86 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 87 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 88 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 89 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 90 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 91 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 92 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 93 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 94 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 95 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 96 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 97 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 98 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 99 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 100 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 101 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 102 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 103 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 104 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 105 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 106 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 107 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 108 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 109 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 110 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 111 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 112 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 113 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 114 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 115 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 116 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 117 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 118 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 119 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 120 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 121 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 122 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 123 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 124 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 125 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 126 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 127 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 128 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 129 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 130 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 131 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 132 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 133 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 134 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 135 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 136 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 137 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 138 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 139 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 140 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 141 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 142 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 143 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 144 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 145 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 146 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 147 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 148 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 149 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 150 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 151 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 152 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 153 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 154 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 155 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 156 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 157 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 158 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 159 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 160 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 161 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 162 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 163 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 164 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 165 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 166 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 167 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 168 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 169 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 170 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 171 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 172 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 173 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 174 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 175 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 176 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 177 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 178 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 179 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 180 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 181 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 182 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 183 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 184 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 185 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 186 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 187 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 188 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 189 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 190 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 191 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 192 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 193 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 194 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 195 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 196 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 197 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 198 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 199 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 200 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 201 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 202 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 203 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 204 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 205 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 206 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 207 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 208 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 209 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 210 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 211 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 212 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 213 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 214 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 215 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 216 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 217 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 218 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 219 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 220 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 221 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 222 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 223 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 224 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 225 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 226 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 227 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 228 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 229 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 230 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 231 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 232 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 233 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 234 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 235 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 236 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 237 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 238 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 239 + }, + { + "input": 0, + "interpolation": "LINEAR", + "output": 240 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 241 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 242 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 243 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 244 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 245 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 246 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 247 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 248 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 249 + }, + { + "input": 3, + "interpolation": "STEP", + "output": 250 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "Defeated", + "samplers": [ + { + "input": 251, + "interpolation": "LINEAR", + "output": 252 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 253 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 255 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 256 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 257 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 258 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 259 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 260 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 261 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 262 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 263 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 264 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 265 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 266 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 267 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 268 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 269 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 270 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 271 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 272 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 273 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 274 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 275 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 276 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 277 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 278 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 279 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 280 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 281 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 282 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 283 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 284 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 285 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 286 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 287 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 288 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 289 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 290 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 291 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 292 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 293 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 294 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 295 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 296 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 297 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 298 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 299 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 300 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 301 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 302 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 303 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 304 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 305 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 306 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 307 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 308 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 309 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 310 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 311 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 312 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 313 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 314 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 315 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 316 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 317 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 318 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 319 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 320 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 321 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 322 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 323 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 324 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 325 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 326 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 327 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 328 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 329 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 330 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 331 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 332 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 333 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 334 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 335 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 336 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 337 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 338 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 339 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 340 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 341 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 342 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 343 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 344 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 345 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 346 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 347 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 348 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 349 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 350 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 351 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 352 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 353 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 354 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 355 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 356 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 357 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 358 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 359 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 360 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 361 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 362 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 363 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 364 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 365 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 366 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 367 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 368 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 369 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 370 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 371 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 372 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 373 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 374 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 375 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 376 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 377 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 378 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 379 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 380 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 381 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 382 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 383 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 384 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 385 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 386 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 387 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 388 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 389 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 390 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 391 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 392 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 393 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 394 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 395 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 396 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 397 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 398 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 399 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 400 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 401 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 402 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 403 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 404 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 405 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 406 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 407 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 408 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 409 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 410 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 411 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 412 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 413 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 414 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 415 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 416 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 417 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 418 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 419 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 420 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 421 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 422 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 423 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 424 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 425 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 426 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 427 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 428 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 429 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 430 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 431 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 432 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 433 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 434 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 435 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 436 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 437 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 438 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 439 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 440 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 441 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 442 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 443 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 444 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 445 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 446 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 447 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 448 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 449 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 450 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 451 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 452 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 453 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 454 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 455 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 456 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 457 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 458 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 459 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 460 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 461 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 462 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 463 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 464 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 465 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 466 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 467 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 468 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 469 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 470 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 471 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 472 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 473 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 474 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 475 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 476 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 477 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 478 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 479 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 480 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 481 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 482 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 483 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 484 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 485 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 486 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 487 + }, + { + "input": 251, + "interpolation": "LINEAR", + "output": 488 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 489 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 490 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 491 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 492 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 493 + }, + { + "input": 254, + "interpolation": "LINEAR", + "output": 494 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 495 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 496 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 497 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 498 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 499 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 500 + }, + { + "input": 254, + "interpolation": "STEP", + "output": 501 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "DismissingGesture", + "samplers": [ + { + "input": 502, + "interpolation": "LINEAR", + "output": 503 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 504 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 506 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 507 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 508 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 509 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 510 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 511 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 512 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 513 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 514 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 515 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 516 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 517 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 518 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 519 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 520 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 521 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 522 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 523 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 524 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 525 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 526 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 527 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 528 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 529 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 530 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 531 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 532 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 533 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 534 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 535 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 536 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 537 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 538 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 539 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 540 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 541 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 542 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 543 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 544 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 545 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 546 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 547 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 548 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 549 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 550 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 551 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 552 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 553 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 554 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 555 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 556 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 557 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 558 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 559 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 560 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 561 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 562 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 563 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 564 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 565 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 566 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 567 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 568 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 569 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 570 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 571 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 572 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 573 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 574 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 575 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 576 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 577 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 578 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 579 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 580 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 581 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 582 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 583 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 584 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 585 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 586 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 587 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 588 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 589 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 590 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 591 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 592 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 593 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 594 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 595 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 596 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 597 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 598 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 599 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 600 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 601 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 602 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 603 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 604 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 605 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 606 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 607 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 608 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 609 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 610 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 611 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 612 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 613 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 614 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 615 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 616 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 617 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 618 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 619 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 620 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 621 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 622 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 623 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 624 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 625 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 626 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 627 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 628 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 629 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 630 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 631 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 632 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 633 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 634 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 635 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 636 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 637 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 638 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 639 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 640 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 641 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 642 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 643 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 644 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 645 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 646 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 647 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 648 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 649 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 650 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 651 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 652 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 653 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 654 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 655 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 656 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 657 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 658 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 659 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 660 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 661 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 662 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 663 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 664 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 665 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 666 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 667 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 668 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 669 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 670 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 671 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 672 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 673 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 674 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 675 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 676 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 677 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 678 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 679 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 680 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 681 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 682 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 683 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 684 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 685 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 686 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 687 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 688 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 689 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 690 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 691 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 692 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 693 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 694 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 695 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 696 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 697 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 698 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 699 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 700 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 701 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 702 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 703 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 704 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 705 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 706 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 707 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 708 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 709 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 710 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 711 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 712 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 713 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 714 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 715 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 716 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 717 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 718 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 719 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 720 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 721 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 722 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 723 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 724 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 725 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 726 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 727 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 728 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 729 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 730 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 731 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 732 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 733 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 734 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 735 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 736 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 737 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 738 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 739 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 740 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 741 + }, + { + "input": 502, + "interpolation": "LINEAR", + "output": 742 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 743 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 744 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 745 + }, + { + "input": 505, + "interpolation": "LINEAR", + "output": 746 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 747 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 748 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 749 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 750 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 751 + }, + { + "input": 505, + "interpolation": "STEP", + "output": 752 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "HappyIdle", + "samplers": [ + { + "input": 753, + "interpolation": "LINEAR", + "output": 754 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 755 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 757 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 758 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 759 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 760 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 761 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 762 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 763 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 764 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 765 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 766 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 767 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 768 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 769 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 770 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 771 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 772 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 773 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 774 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 775 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 776 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 777 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 778 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 779 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 780 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 781 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 782 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 783 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 784 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 785 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 786 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 787 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 788 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 789 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 790 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 791 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 792 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 793 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 794 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 795 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 796 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 797 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 798 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 799 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 800 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 801 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 802 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 803 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 804 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 805 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 806 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 807 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 808 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 809 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 810 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 811 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 812 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 813 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 814 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 815 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 816 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 817 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 818 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 819 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 820 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 821 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 822 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 823 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 824 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 825 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 826 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 827 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 828 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 829 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 830 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 831 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 832 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 833 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 834 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 835 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 836 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 837 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 838 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 839 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 840 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 841 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 842 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 843 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 844 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 845 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 846 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 847 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 848 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 849 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 850 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 851 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 852 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 853 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 854 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 855 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 856 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 857 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 858 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 859 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 860 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 861 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 862 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 863 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 864 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 865 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 866 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 867 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 868 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 869 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 870 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 871 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 872 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 873 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 874 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 875 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 876 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 877 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 878 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 879 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 880 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 881 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 882 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 883 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 884 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 885 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 886 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 887 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 888 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 889 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 890 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 891 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 892 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 893 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 894 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 895 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 896 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 897 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 898 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 899 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 900 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 901 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 902 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 903 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 904 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 905 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 906 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 907 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 908 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 909 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 910 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 911 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 912 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 913 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 914 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 915 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 916 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 917 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 918 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 919 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 920 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 921 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 922 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 923 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 924 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 925 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 926 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 927 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 928 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 929 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 930 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 931 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 932 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 933 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 934 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 935 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 936 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 937 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 938 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 939 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 940 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 941 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 942 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 943 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 944 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 945 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 946 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 947 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 948 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 949 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 950 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 951 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 952 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 953 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 954 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 955 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 956 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 957 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 958 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 959 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 960 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 961 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 962 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 963 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 964 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 965 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 966 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 967 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 968 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 969 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 970 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 971 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 972 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 973 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 974 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 975 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 976 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 977 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 978 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 979 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 980 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 981 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 982 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 983 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 984 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 985 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 986 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 987 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 988 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 989 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 990 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 991 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 992 + }, + { + "input": 753, + "interpolation": "LINEAR", + "output": 993 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 994 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 995 + }, + { + "input": 756, + "interpolation": "LINEAR", + "output": 996 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 997 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 998 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 999 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 1000 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 1001 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 1002 + }, + { + "input": 756, + "interpolation": "STEP", + "output": 1003 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "Idle", + "samplers": [ + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1005 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1006 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1008 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1009 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1010 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1011 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1012 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1013 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1014 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1015 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1016 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1017 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1018 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1019 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1020 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1021 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1022 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1023 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1024 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1025 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1026 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1027 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1028 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1029 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1030 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1031 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1032 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1033 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1034 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1035 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1036 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1037 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1038 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1039 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1040 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1041 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1042 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1043 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1044 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1045 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1046 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1047 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1048 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1049 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1050 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1051 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1052 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1053 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1054 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1055 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1056 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1057 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1058 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1059 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1060 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1061 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1062 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1063 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1064 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1065 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1066 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1067 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1068 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1069 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1070 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1071 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1072 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1073 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1074 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1075 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1076 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1077 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1078 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1079 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1080 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1081 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1082 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1083 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1084 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1085 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1086 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1087 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1088 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1089 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1090 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1091 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1092 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1093 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1094 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1095 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1096 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1097 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1098 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1099 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1100 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1101 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1102 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1103 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1104 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1105 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1106 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1107 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1108 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1109 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1110 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1111 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1112 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1113 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1114 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1115 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1116 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1117 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1118 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1119 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1120 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1121 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1122 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1123 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1124 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1125 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1126 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1127 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1128 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1129 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1130 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1131 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1132 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1133 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1134 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1135 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1136 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1137 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1138 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1139 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1140 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1141 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1142 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1143 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1144 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1145 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1146 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1147 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1148 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1149 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1150 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1151 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1152 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1153 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1154 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1155 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1156 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1157 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1158 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1159 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1160 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1161 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1162 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1163 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1164 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1165 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1166 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1167 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1168 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1169 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1170 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1171 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1172 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1173 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1174 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1175 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1176 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1177 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1178 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1179 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1180 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1181 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1182 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1183 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1184 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1185 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1186 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1187 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1188 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1189 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1190 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1191 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1192 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1193 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1194 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1195 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1196 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1197 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1198 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1199 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1200 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1201 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1202 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1203 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1204 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1205 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1206 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1207 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1208 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1209 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1210 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1211 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1212 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1213 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1214 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1215 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1216 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1217 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1218 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1219 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1220 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1221 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1222 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1223 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1224 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1225 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1226 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1227 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1228 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1229 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1230 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1231 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1232 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1233 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1234 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1235 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1236 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1237 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1238 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1239 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1240 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1241 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1242 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1243 + }, + { + "input": 1004, + "interpolation": "LINEAR", + "output": 1244 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1245 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1246 + }, + { + "input": 1007, + "interpolation": "LINEAR", + "output": 1247 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1248 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1249 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1250 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1251 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1252 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1253 + }, + { + "input": 1007, + "interpolation": "STEP", + "output": 1254 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "SadIdle", + "samplers": [ + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1256 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1257 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1259 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1260 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1261 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1262 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1263 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1264 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1265 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1266 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1267 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1268 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1269 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1270 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1271 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1272 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1273 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1274 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1275 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1276 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1277 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1278 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1279 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1280 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1281 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1282 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1283 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1284 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1285 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1286 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1287 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1288 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1289 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1290 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1291 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1292 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1293 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1294 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1295 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1296 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1297 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1298 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1299 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1300 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1301 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1302 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1303 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1304 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1305 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1306 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1307 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1308 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1309 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1310 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1311 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1312 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1313 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1314 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1315 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1316 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1317 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1318 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1319 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1320 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1321 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1322 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1323 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1324 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1325 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1326 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1327 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1328 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1329 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1330 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1331 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1332 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1333 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1334 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1335 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1336 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1337 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1338 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1339 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1340 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1341 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1342 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1343 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1344 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1345 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1346 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1347 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1348 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1349 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1350 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1351 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1352 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1353 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1354 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1355 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1356 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1357 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1358 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1359 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1360 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1361 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1362 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1363 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1364 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1365 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1366 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1367 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1368 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1369 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1370 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1371 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1372 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1373 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1374 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1375 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1376 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1377 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1378 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1379 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1380 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1381 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1382 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1383 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1384 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1385 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1386 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1387 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1388 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1389 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1390 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1391 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1392 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1393 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1394 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1395 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1396 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1397 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1398 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1399 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1400 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1401 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1402 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1403 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1404 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1405 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1406 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1407 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1408 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1409 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1410 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1411 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1412 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1413 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1414 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1415 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1416 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1417 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1418 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1419 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1420 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1421 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1422 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1423 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1424 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1425 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1426 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1427 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1428 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1429 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1430 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1431 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1432 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1433 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1434 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1435 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1436 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1437 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1438 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1439 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1440 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1441 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1442 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1443 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1444 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1445 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1446 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1447 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1448 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1449 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1450 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1451 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1452 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1453 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1454 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1455 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1456 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1457 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1458 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1459 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1460 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1461 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1462 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1463 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1464 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1465 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1466 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1467 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1468 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1469 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1470 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1471 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1472 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1473 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1474 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1475 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1476 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1477 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1478 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1479 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1480 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1481 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1482 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1483 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1484 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1485 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1486 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1487 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1488 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1489 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1490 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1491 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1492 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1493 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1494 + }, + { + "input": 1255, + "interpolation": "LINEAR", + "output": 1495 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1496 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1497 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1498 + }, + { + "input": 1258, + "interpolation": "LINEAR", + "output": 1499 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1500 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1501 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1502 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1503 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1504 + }, + { + "input": 1258, + "interpolation": "STEP", + "output": 1505 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "Surprised", + "samplers": [ + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1507 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1508 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1510 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1511 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1512 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1513 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1514 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1515 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1516 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1517 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1518 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1519 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1520 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1521 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1522 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1523 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1524 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1525 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1526 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1527 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1528 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1529 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1530 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1531 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1532 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1533 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1534 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1535 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1536 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1537 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1538 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1539 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1540 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1541 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1542 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1543 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1544 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1545 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1546 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1547 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1548 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1549 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1550 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1551 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1552 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1553 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1554 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1555 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1556 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1557 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1558 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1559 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1560 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1561 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1562 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1563 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1564 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1565 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1566 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1567 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1568 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1569 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1570 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1571 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1572 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1573 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1574 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1575 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1576 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1577 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1578 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1579 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1580 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1581 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1582 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1583 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1584 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1585 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1586 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1587 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1588 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1589 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1590 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1591 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1592 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1593 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1594 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1595 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1596 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1597 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1598 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1599 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1600 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1601 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1602 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1603 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1604 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1605 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1606 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1607 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1608 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1609 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1610 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1611 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1612 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1613 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1614 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1615 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1616 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1617 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1618 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1619 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1620 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1621 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1622 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1623 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1624 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1625 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1626 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1627 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1628 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1629 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1630 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1631 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1632 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1633 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1634 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1635 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1636 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1637 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1638 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1639 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1640 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1641 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1642 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1643 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1644 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1645 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1646 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1647 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1648 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1649 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1650 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1651 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1652 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1653 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1654 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1655 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1656 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1657 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1658 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1659 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1660 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1661 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1662 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1663 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1664 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1665 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1666 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1667 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1668 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1669 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1670 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1671 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1672 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1673 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1674 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1675 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1676 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1677 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1678 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1679 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1680 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1681 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1682 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1683 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1684 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1685 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1686 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1687 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1688 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1689 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1690 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1691 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1692 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1693 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1694 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1695 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1696 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1697 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1698 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1699 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1700 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1701 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1702 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1703 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1704 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1705 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1706 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1707 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1708 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1709 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1710 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1711 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1712 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1713 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1714 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1715 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1716 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1717 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1718 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1719 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1720 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1721 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1722 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1723 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1724 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1725 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1726 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1727 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1728 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1729 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1730 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1731 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1732 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1733 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1734 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1735 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1736 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1737 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1738 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1739 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1740 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1741 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1742 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1743 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1744 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1745 + }, + { + "input": 1506, + "interpolation": "LINEAR", + "output": 1746 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1747 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1748 + }, + { + "input": 1509, + "interpolation": "LINEAR", + "output": 1749 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1750 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1751 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1752 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1753 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1754 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1755 + }, + { + "input": 1509, + "interpolation": "STEP", + "output": 1756 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "TalkingOne", + "samplers": [ + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1758 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1759 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1761 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1762 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1763 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1764 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1765 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1766 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1767 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1768 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1769 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1770 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1771 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1772 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1773 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1774 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1775 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1776 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1777 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1778 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1779 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1780 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1781 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1782 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1783 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1784 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1785 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1786 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1787 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1788 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1789 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1790 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1791 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1792 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1793 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1794 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1795 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1796 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1797 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1798 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1799 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1800 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1801 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1802 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1803 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1804 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1805 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1806 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1807 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1808 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1809 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1810 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1811 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1812 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1813 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1814 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1815 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1816 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1817 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1818 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1819 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1820 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1821 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1822 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1823 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1824 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1825 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1826 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1827 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1828 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1829 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1830 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1831 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1832 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1833 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1834 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1835 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1836 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1837 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1838 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1839 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1840 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1841 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1842 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1843 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1844 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1845 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1846 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1847 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1848 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1849 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1850 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1851 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1852 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1853 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1854 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1855 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1856 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1857 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1858 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1859 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1860 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1861 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1862 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1863 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1864 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1865 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1866 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1867 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1868 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1869 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1870 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1871 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1872 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1873 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1874 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1875 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1876 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1877 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1878 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1879 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1880 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1881 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1882 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1883 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1884 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1885 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1886 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1887 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1888 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1889 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1890 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1891 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1892 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1893 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1894 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1895 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1896 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1897 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1898 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1899 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1900 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1901 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1902 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1903 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1904 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1905 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1906 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1907 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1908 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1909 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1910 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1911 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1912 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1913 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1914 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1915 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1916 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1917 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1918 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1919 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1920 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1921 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1922 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1923 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1924 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1925 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1926 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1927 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1928 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1929 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1930 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1931 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1932 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1933 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1934 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1935 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1936 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1937 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1938 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1939 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1940 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1941 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1942 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1943 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1944 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1945 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1946 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1947 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1948 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1949 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1950 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1951 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1952 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1953 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1954 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1955 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1956 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1957 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1958 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1959 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1960 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1961 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1962 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1963 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1964 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1965 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1966 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1967 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1968 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1969 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1970 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1971 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1972 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1973 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1974 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1975 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1976 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1977 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1978 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1979 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1980 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1981 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1982 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1983 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1984 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1985 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1986 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1987 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1988 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 1989 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1990 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1991 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1992 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1993 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1994 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1995 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1996 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 1997 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1998 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 1999 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2000 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2001 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2002 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2003 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2004 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2005 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2006 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2007 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "TalkingThree", + "samplers": [ + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2009 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2010 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2012 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2013 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2014 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2015 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2016 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2017 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2018 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2019 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2020 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2021 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2022 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2023 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2024 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2025 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2026 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2027 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2028 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2029 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2030 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2031 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2032 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2033 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2034 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2035 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2036 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2037 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2038 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2039 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2040 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2041 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2042 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2043 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2044 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2045 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2046 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2047 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2048 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2049 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2050 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2051 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2052 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2053 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2054 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2055 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2056 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2057 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2058 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2059 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2060 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2061 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2062 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2063 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2064 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2065 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2066 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2067 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2068 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2069 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2070 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2071 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2072 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2073 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2074 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2075 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2076 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2077 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2078 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2079 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2080 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2081 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2082 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2083 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2084 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2085 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2086 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2087 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2088 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2089 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2090 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2091 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2092 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2093 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2094 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2095 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2096 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2097 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2098 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2099 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2100 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2101 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2102 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2103 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2104 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2105 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2106 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2107 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2108 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2109 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2110 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2111 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2112 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2113 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2114 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2115 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2116 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2117 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2118 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2119 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2120 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2121 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2122 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2123 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2124 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2125 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2126 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2127 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2128 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2129 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2130 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2131 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2132 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2133 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2134 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2135 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2136 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2137 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2138 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2139 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2140 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2141 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2142 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2143 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2144 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2145 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2146 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2147 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2148 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2149 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2150 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2151 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2152 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2153 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2154 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2155 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2156 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2157 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2158 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2159 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2160 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2161 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2162 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2163 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2164 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2165 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2166 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2167 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2168 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2169 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2170 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2171 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2172 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2173 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2174 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2175 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2176 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2177 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2178 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2179 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2180 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2181 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2182 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2183 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2184 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2185 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2186 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2187 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2188 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2189 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2190 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2191 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2192 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2193 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2194 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2195 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2196 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2197 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2198 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2199 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2200 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2201 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2202 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2203 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2204 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2205 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2206 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2207 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2208 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2209 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2210 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2211 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2212 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2213 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2214 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2215 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2216 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2217 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2218 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2219 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2220 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2221 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2222 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2223 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2224 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2225 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2226 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2227 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2228 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2229 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2230 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2231 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2232 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2233 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2234 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2235 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2236 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2237 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2238 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2239 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2240 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2241 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2242 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2243 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2244 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2245 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2246 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2247 + }, + { + "input": 2008, + "interpolation": "LINEAR", + "output": 2248 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2249 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2250 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2251 + }, + { + "input": 2011, + "interpolation": "LINEAR", + "output": 2252 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2253 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2254 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2255 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2256 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2257 + }, + { + "input": 2011, + "interpolation": "STEP", + "output": 2258 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "TalkingTwo", + "samplers": [ + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2259 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2260 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2261 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2262 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2263 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2264 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2265 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2266 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2267 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2268 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2269 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2270 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2271 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2272 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2273 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2274 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2275 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2276 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2277 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2278 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2279 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2280 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2281 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2282 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2283 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2284 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2285 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2286 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2287 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2288 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2289 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2290 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2291 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2292 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2293 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2294 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2295 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2296 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2297 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2298 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2299 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2300 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2301 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2302 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2303 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2304 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2305 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2306 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2307 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2308 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2309 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2310 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2311 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2312 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2313 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2314 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2315 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2316 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2317 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2318 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2319 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2320 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2321 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2322 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2323 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2324 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2325 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2326 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2327 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2328 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2329 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2330 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2331 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2332 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2333 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2334 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2335 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2336 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2337 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2338 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2339 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2340 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2341 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2342 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2343 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2344 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2345 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2346 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2347 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2348 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2349 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2350 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2351 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2352 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2353 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2354 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2355 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2356 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2357 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2358 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2359 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2360 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2361 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2362 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2363 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2364 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2365 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2366 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2367 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2368 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2369 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2370 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2371 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2372 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2373 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2374 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2375 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2376 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2377 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2378 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2379 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2380 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2381 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2382 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2383 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2384 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2385 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2386 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2387 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2388 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2389 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2390 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2391 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2392 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2393 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2394 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2395 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2396 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2397 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2398 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2399 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2400 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2401 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2402 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2403 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2404 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2405 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2406 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2407 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2408 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2409 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2410 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2411 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2412 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2413 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2414 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2415 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2416 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2417 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2418 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2419 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2420 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2421 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2422 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2423 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2424 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2425 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2426 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2427 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2428 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2429 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2430 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2431 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2432 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2433 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2434 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2435 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2436 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2437 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2438 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2439 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2440 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2441 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2442 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2443 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2444 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2445 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2446 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2447 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2448 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2449 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2450 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2451 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2452 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2453 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2454 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2455 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2456 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2457 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2458 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2459 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2460 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2461 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2462 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2463 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2464 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2465 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2466 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2467 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2468 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2469 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2470 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2471 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2472 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2473 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2474 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2475 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2476 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2477 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2478 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2479 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2480 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2481 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2482 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2483 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2484 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2485 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2486 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2487 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2488 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2489 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2490 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2491 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2492 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2493 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2494 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2495 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2496 + }, + { + "input": 1757, + "interpolation": "LINEAR", + "output": 2497 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2498 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2499 + }, + { + "input": 1760, + "interpolation": "LINEAR", + "output": 2500 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2501 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2502 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2503 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2504 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2505 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2506 + }, + { + "input": 1760, + "interpolation": "STEP", + "output": 2507 + } + ] + }, + { + "channels": [ + { + "sampler": 0, + "target": { + "node": 81, + "path": "translation" + } + }, + { + "sampler": 1, + "target": { + "node": 81, + "path": "rotation" + } + }, + { + "sampler": 2, + "target": { + "node": 81, + "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": 67, + "path": "translation" + } + }, + { + "sampler": 7, + "target": { + "node": 67, + "path": "rotation" + } + }, + { + "sampler": 8, + "target": { + "node": 67, + "path": "scale" + } + }, + { + "sampler": 9, + "target": { + "node": 66, + "path": "translation" + } + }, + { + "sampler": 10, + "target": { + "node": 66, + "path": "rotation" + } + }, + { + "sampler": 11, + "target": { + "node": 66, + "path": "scale" + } + }, + { + "sampler": 12, + "target": { + "node": 7, + "path": "translation" + } + }, + { + "sampler": 13, + "target": { + "node": 7, + "path": "rotation" + } + }, + { + "sampler": 14, + "target": { + "node": 7, + "path": "scale" + } + }, + { + "sampler": 15, + "target": { + "node": 6, + "path": "translation" + } + }, + { + "sampler": 16, + "target": { + "node": 6, + "path": "rotation" + } + }, + { + "sampler": 17, + "target": { + "node": 6, + "path": "scale" + } + }, + { + "sampler": 18, + "target": { + "node": 1, + "path": "translation" + } + }, + { + "sampler": 19, + "target": { + "node": 1, + "path": "rotation" + } + }, + { + "sampler": 20, + "target": { + "node": 1, + "path": "scale" + } + }, + { + "sampler": 21, + "target": { + "node": 0, + "path": "translation" + } + }, + { + "sampler": 22, + "target": { + "node": 0, + "path": "rotation" + } + }, + { + "sampler": 23, + "target": { + "node": 0, + "path": "scale" + } + }, + { + "sampler": 24, + "target": { + "node": 3, + "path": "translation" + } + }, + { + "sampler": 25, + "target": { + "node": 3, + "path": "rotation" + } + }, + { + "sampler": 26, + "target": { + "node": 3, + "path": "scale" + } + }, + { + "sampler": 27, + "target": { + "node": 2, + "path": "translation" + } + }, + { + "sampler": 28, + "target": { + "node": 2, + "path": "rotation" + } + }, + { + "sampler": 29, + "target": { + "node": 2, + "path": "scale" + } + }, + { + "sampler": 30, + "target": { + "node": 5, + "path": "translation" + } + }, + { + "sampler": 31, + "target": { + "node": 5, + "path": "rotation" + } + }, + { + "sampler": 32, + "target": { + "node": 5, + "path": "scale" + } + }, + { + "sampler": 33, + "target": { + "node": 4, + "path": "translation" + } + }, + { + "sampler": 34, + "target": { + "node": 4, + "path": "rotation" + } + }, + { + "sampler": 35, + "target": { + "node": 4, + "path": "scale" + } + }, + { + "sampler": 36, + "target": { + "node": 36, + "path": "translation" + } + }, + { + "sampler": 37, + "target": { + "node": 36, + "path": "rotation" + } + }, + { + "sampler": 38, + "target": { + "node": 36, + "path": "scale" + } + }, + { + "sampler": 39, + "target": { + "node": 35, + "path": "translation" + } + }, + { + "sampler": 40, + "target": { + "node": 35, + "path": "rotation" + } + }, + { + "sampler": 41, + "target": { + "node": 35, + "path": "scale" + } + }, + { + "sampler": 42, + "target": { + "node": 34, + "path": "translation" + } + }, + { + "sampler": 43, + "target": { + "node": 34, + "path": "rotation" + } + }, + { + "sampler": 44, + "target": { + "node": 34, + "path": "scale" + } + }, + { + "sampler": 45, + "target": { + "node": 33, + "path": "translation" + } + }, + { + "sampler": 46, + "target": { + "node": 33, + "path": "rotation" + } + }, + { + "sampler": 47, + "target": { + "node": 33, + "path": "scale" + } + }, + { + "sampler": 48, + "target": { + "node": 12, + "path": "translation" + } + }, + { + "sampler": 49, + "target": { + "node": 12, + "path": "rotation" + } + }, + { + "sampler": 50, + "target": { + "node": 12, + "path": "scale" + } + }, + { + "sampler": 51, + "target": { + "node": 11, + "path": "translation" + } + }, + { + "sampler": 52, + "target": { + "node": 11, + "path": "rotation" + } + }, + { + "sampler": 53, + "target": { + "node": 11, + "path": "scale" + } + }, + { + "sampler": 54, + "target": { + "node": 10, + "path": "translation" + } + }, + { + "sampler": 55, + "target": { + "node": 10, + "path": "rotation" + } + }, + { + "sampler": 56, + "target": { + "node": 10, + "path": "scale" + } + }, + { + "sampler": 57, + "target": { + "node": 9, + "path": "translation" + } + }, + { + "sampler": 58, + "target": { + "node": 9, + "path": "rotation" + } + }, + { + "sampler": 59, + "target": { + "node": 9, + "path": "scale" + } + }, + { + "sampler": 60, + "target": { + "node": 8, + "path": "translation" + } + }, + { + "sampler": 61, + "target": { + "node": 8, + "path": "rotation" + } + }, + { + "sampler": 62, + "target": { + "node": 8, + "path": "scale" + } + }, + { + "sampler": 63, + "target": { + "node": 17, + "path": "translation" + } + }, + { + "sampler": 64, + "target": { + "node": 17, + "path": "rotation" + } + }, + { + "sampler": 65, + "target": { + "node": 17, + "path": "scale" + } + }, + { + "sampler": 66, + "target": { + "node": 16, + "path": "translation" + } + }, + { + "sampler": 67, + "target": { + "node": 16, + "path": "rotation" + } + }, + { + "sampler": 68, + "target": { + "node": 16, + "path": "scale" + } + }, + { + "sampler": 69, + "target": { + "node": 15, + "path": "translation" + } + }, + { + "sampler": 70, + "target": { + "node": 15, + "path": "rotation" + } + }, + { + "sampler": 71, + "target": { + "node": 15, + "path": "scale" + } + }, + { + "sampler": 72, + "target": { + "node": 14, + "path": "translation" + } + }, + { + "sampler": 73, + "target": { + "node": 14, + "path": "rotation" + } + }, + { + "sampler": 74, + "target": { + "node": 14, + "path": "scale" + } + }, + { + "sampler": 75, + "target": { + "node": 13, + "path": "translation" + } + }, + { + "sampler": 76, + "target": { + "node": 13, + "path": "rotation" + } + }, + { + "sampler": 77, + "target": { + "node": 13, + "path": "scale" + } + }, + { + "sampler": 78, + "target": { + "node": 22, + "path": "translation" + } + }, + { + "sampler": 79, + "target": { + "node": 22, + "path": "rotation" + } + }, + { + "sampler": 80, + "target": { + "node": 22, + "path": "scale" + } + }, + { + "sampler": 81, + "target": { + "node": 21, + "path": "translation" + } + }, + { + "sampler": 82, + "target": { + "node": 21, + "path": "rotation" + } + }, + { + "sampler": 83, + "target": { + "node": 21, + "path": "scale" + } + }, + { + "sampler": 84, + "target": { + "node": 20, + "path": "translation" + } + }, + { + "sampler": 85, + "target": { + "node": 20, + "path": "rotation" + } + }, + { + "sampler": 86, + "target": { + "node": 20, + "path": "scale" + } + }, + { + "sampler": 87, + "target": { + "node": 19, + "path": "translation" + } + }, + { + "sampler": 88, + "target": { + "node": 19, + "path": "rotation" + } + }, + { + "sampler": 89, + "target": { + "node": 19, + "path": "scale" + } + }, + { + "sampler": 90, + "target": { + "node": 18, + "path": "translation" + } + }, + { + "sampler": 91, + "target": { + "node": 18, + "path": "rotation" + } + }, + { + "sampler": 92, + "target": { + "node": 18, + "path": "scale" + } + }, + { + "sampler": 93, + "target": { + "node": 27, + "path": "translation" + } + }, + { + "sampler": 94, + "target": { + "node": 27, + "path": "rotation" + } + }, + { + "sampler": 95, + "target": { + "node": 27, + "path": "scale" + } + }, + { + "sampler": 96, + "target": { + "node": 26, + "path": "translation" + } + }, + { + "sampler": 97, + "target": { + "node": 26, + "path": "rotation" + } + }, + { + "sampler": 98, + "target": { + "node": 26, + "path": "scale" + } + }, + { + "sampler": 99, + "target": { + "node": 25, + "path": "translation" + } + }, + { + "sampler": 100, + "target": { + "node": 25, + "path": "rotation" + } + }, + { + "sampler": 101, + "target": { + "node": 25, + "path": "scale" + } + }, + { + "sampler": 102, + "target": { + "node": 24, + "path": "translation" + } + }, + { + "sampler": 103, + "target": { + "node": 24, + "path": "rotation" + } + }, + { + "sampler": 104, + "target": { + "node": 24, + "path": "scale" + } + }, + { + "sampler": 105, + "target": { + "node": 23, + "path": "translation" + } + }, + { + "sampler": 106, + "target": { + "node": 23, + "path": "rotation" + } + }, + { + "sampler": 107, + "target": { + "node": 23, + "path": "scale" + } + }, + { + "sampler": 108, + "target": { + "node": 32, + "path": "translation" + } + }, + { + "sampler": 109, + "target": { + "node": 32, + "path": "rotation" + } + }, + { + "sampler": 110, + "target": { + "node": 32, + "path": "scale" + } + }, + { + "sampler": 111, + "target": { + "node": 31, + "path": "translation" + } + }, + { + "sampler": 112, + "target": { + "node": 31, + "path": "rotation" + } + }, + { + "sampler": 113, + "target": { + "node": 31, + "path": "scale" + } + }, + { + "sampler": 114, + "target": { + "node": 30, + "path": "translation" + } + }, + { + "sampler": 115, + "target": { + "node": 30, + "path": "rotation" + } + }, + { + "sampler": 116, + "target": { + "node": 30, + "path": "scale" + } + }, + { + "sampler": 117, + "target": { + "node": 29, + "path": "translation" + } + }, + { + "sampler": 118, + "target": { + "node": 29, + "path": "rotation" + } + }, + { + "sampler": 119, + "target": { + "node": 29, + "path": "scale" + } + }, + { + "sampler": 120, + "target": { + "node": 28, + "path": "translation" + } + }, + { + "sampler": 121, + "target": { + "node": 28, + "path": "rotation" + } + }, + { + "sampler": 122, + "target": { + "node": 28, + "path": "scale" + } + }, + { + "sampler": 123, + "target": { + "node": 65, + "path": "translation" + } + }, + { + "sampler": 124, + "target": { + "node": 65, + "path": "rotation" + } + }, + { + "sampler": 125, + "target": { + "node": 65, + "path": "scale" + } + }, + { + "sampler": 126, + "target": { + "node": 64, + "path": "translation" + } + }, + { + "sampler": 127, + "target": { + "node": 64, + "path": "rotation" + } + }, + { + "sampler": 128, + "target": { + "node": 64, + "path": "scale" + } + }, + { + "sampler": 129, + "target": { + "node": 63, + "path": "translation" + } + }, + { + "sampler": 130, + "target": { + "node": 63, + "path": "rotation" + } + }, + { + "sampler": 131, + "target": { + "node": 63, + "path": "scale" + } + }, + { + "sampler": 132, + "target": { + "node": 62, + "path": "translation" + } + }, + { + "sampler": 133, + "target": { + "node": 62, + "path": "rotation" + } + }, + { + "sampler": 134, + "target": { + "node": 62, + "path": "scale" + } + }, + { + "sampler": 135, + "target": { + "node": 41, + "path": "translation" + } + }, + { + "sampler": 136, + "target": { + "node": 41, + "path": "rotation" + } + }, + { + "sampler": 137, + "target": { + "node": 41, + "path": "scale" + } + }, + { + "sampler": 138, + "target": { + "node": 40, + "path": "translation" + } + }, + { + "sampler": 139, + "target": { + "node": 40, + "path": "rotation" + } + }, + { + "sampler": 140, + "target": { + "node": 40, + "path": "scale" + } + }, + { + "sampler": 141, + "target": { + "node": 39, + "path": "translation" + } + }, + { + "sampler": 142, + "target": { + "node": 39, + "path": "rotation" + } + }, + { + "sampler": 143, + "target": { + "node": 39, + "path": "scale" + } + }, + { + "sampler": 144, + "target": { + "node": 38, + "path": "translation" + } + }, + { + "sampler": 145, + "target": { + "node": 38, + "path": "rotation" + } + }, + { + "sampler": 146, + "target": { + "node": 38, + "path": "scale" + } + }, + { + "sampler": 147, + "target": { + "node": 37, + "path": "translation" + } + }, + { + "sampler": 148, + "target": { + "node": 37, + "path": "rotation" + } + }, + { + "sampler": 149, + "target": { + "node": 37, + "path": "scale" + } + }, + { + "sampler": 150, + "target": { + "node": 46, + "path": "translation" + } + }, + { + "sampler": 151, + "target": { + "node": 46, + "path": "rotation" + } + }, + { + "sampler": 152, + "target": { + "node": 46, + "path": "scale" + } + }, + { + "sampler": 153, + "target": { + "node": 45, + "path": "translation" + } + }, + { + "sampler": 154, + "target": { + "node": 45, + "path": "rotation" + } + }, + { + "sampler": 155, + "target": { + "node": 45, + "path": "scale" + } + }, + { + "sampler": 156, + "target": { + "node": 44, + "path": "translation" + } + }, + { + "sampler": 157, + "target": { + "node": 44, + "path": "rotation" + } + }, + { + "sampler": 158, + "target": { + "node": 44, + "path": "scale" + } + }, + { + "sampler": 159, + "target": { + "node": 43, + "path": "translation" + } + }, + { + "sampler": 160, + "target": { + "node": 43, + "path": "rotation" + } + }, + { + "sampler": 161, + "target": { + "node": 43, + "path": "scale" + } + }, + { + "sampler": 162, + "target": { + "node": 42, + "path": "translation" + } + }, + { + "sampler": 163, + "target": { + "node": 42, + "path": "rotation" + } + }, + { + "sampler": 164, + "target": { + "node": 42, + "path": "scale" + } + }, + { + "sampler": 165, + "target": { + "node": 51, + "path": "translation" + } + }, + { + "sampler": 166, + "target": { + "node": 51, + "path": "rotation" + } + }, + { + "sampler": 167, + "target": { + "node": 51, + "path": "scale" + } + }, + { + "sampler": 168, + "target": { + "node": 50, + "path": "translation" + } + }, + { + "sampler": 169, + "target": { + "node": 50, + "path": "rotation" + } + }, + { + "sampler": 170, + "target": { + "node": 50, + "path": "scale" + } + }, + { + "sampler": 171, + "target": { + "node": 49, + "path": "translation" + } + }, + { + "sampler": 172, + "target": { + "node": 49, + "path": "rotation" + } + }, + { + "sampler": 173, + "target": { + "node": 49, + "path": "scale" + } + }, + { + "sampler": 174, + "target": { + "node": 48, + "path": "translation" + } + }, + { + "sampler": 175, + "target": { + "node": 48, + "path": "rotation" + } + }, + { + "sampler": 176, + "target": { + "node": 48, + "path": "scale" + } + }, + { + "sampler": 177, + "target": { + "node": 47, + "path": "translation" + } + }, + { + "sampler": 178, + "target": { + "node": 47, + "path": "rotation" + } + }, + { + "sampler": 179, + "target": { + "node": 47, + "path": "scale" + } + }, + { + "sampler": 180, + "target": { + "node": 56, + "path": "translation" + } + }, + { + "sampler": 181, + "target": { + "node": 56, + "path": "rotation" + } + }, + { + "sampler": 182, + "target": { + "node": 56, + "path": "scale" + } + }, + { + "sampler": 183, + "target": { + "node": 55, + "path": "translation" + } + }, + { + "sampler": 184, + "target": { + "node": 55, + "path": "rotation" + } + }, + { + "sampler": 185, + "target": { + "node": 55, + "path": "scale" + } + }, + { + "sampler": 186, + "target": { + "node": 54, + "path": "translation" + } + }, + { + "sampler": 187, + "target": { + "node": 54, + "path": "rotation" + } + }, + { + "sampler": 188, + "target": { + "node": 54, + "path": "scale" + } + }, + { + "sampler": 189, + "target": { + "node": 53, + "path": "translation" + } + }, + { + "sampler": 190, + "target": { + "node": 53, + "path": "rotation" + } + }, + { + "sampler": 191, + "target": { + "node": 53, + "path": "scale" + } + }, + { + "sampler": 192, + "target": { + "node": 52, + "path": "translation" + } + }, + { + "sampler": 193, + "target": { + "node": 52, + "path": "rotation" + } + }, + { + "sampler": 194, + "target": { + "node": 52, + "path": "scale" + } + }, + { + "sampler": 195, + "target": { + "node": 61, + "path": "translation" + } + }, + { + "sampler": 196, + "target": { + "node": 61, + "path": "rotation" + } + }, + { + "sampler": 197, + "target": { + "node": 61, + "path": "scale" + } + }, + { + "sampler": 198, + "target": { + "node": 60, + "path": "translation" + } + }, + { + "sampler": 199, + "target": { + "node": 60, + "path": "rotation" + } + }, + { + "sampler": 200, + "target": { + "node": 60, + "path": "scale" + } + }, + { + "sampler": 201, + "target": { + "node": 59, + "path": "translation" + } + }, + { + "sampler": 202, + "target": { + "node": 59, + "path": "rotation" + } + }, + { + "sampler": 203, + "target": { + "node": 59, + "path": "scale" + } + }, + { + "sampler": 204, + "target": { + "node": 58, + "path": "translation" + } + }, + { + "sampler": 205, + "target": { + "node": 58, + "path": "rotation" + } + }, + { + "sampler": 206, + "target": { + "node": 58, + "path": "scale" + } + }, + { + "sampler": 207, + "target": { + "node": 57, + "path": "translation" + } + }, + { + "sampler": 208, + "target": { + "node": 57, + "path": "rotation" + } + }, + { + "sampler": 209, + "target": { + "node": 57, + "path": "scale" + } + }, + { + "sampler": 210, + "target": { + "node": 74, + "path": "translation" + } + }, + { + "sampler": 211, + "target": { + "node": 74, + "path": "rotation" + } + }, + { + "sampler": 212, + "target": { + "node": 74, + "path": "scale" + } + }, + { + "sampler": 213, + "target": { + "node": 73, + "path": "translation" + } + }, + { + "sampler": 214, + "target": { + "node": 73, + "path": "rotation" + } + }, + { + "sampler": 215, + "target": { + "node": 73, + "path": "scale" + } + }, + { + "sampler": 216, + "target": { + "node": 72, + "path": "translation" + } + }, + { + "sampler": 217, + "target": { + "node": 72, + "path": "rotation" + } + }, + { + "sampler": 218, + "target": { + "node": 72, + "path": "scale" + } + }, + { + "sampler": 219, + "target": { + "node": 71, + "path": "translation" + } + }, + { + "sampler": 220, + "target": { + "node": 71, + "path": "rotation" + } + }, + { + "sampler": 221, + "target": { + "node": 71, + "path": "scale" + } + }, + { + "sampler": 222, + "target": { + "node": 70, + "path": "translation" + } + }, + { + "sampler": 223, + "target": { + "node": 70, + "path": "rotation" + } + }, + { + "sampler": 224, + "target": { + "node": 70, + "path": "scale" + } + }, + { + "sampler": 225, + "target": { + "node": 69, + "path": "translation" + } + }, + { + "sampler": 226, + "target": { + "node": 69, + "path": "rotation" + } + }, + { + "sampler": 227, + "target": { + "node": 69, + "path": "scale" + } + }, + { + "sampler": 228, + "target": { + "node": 80, + "path": "translation" + } + }, + { + "sampler": 229, + "target": { + "node": 80, + "path": "rotation" + } + }, + { + "sampler": 230, + "target": { + "node": 80, + "path": "scale" + } + }, + { + "sampler": 231, + "target": { + "node": 79, + "path": "translation" + } + }, + { + "sampler": 232, + "target": { + "node": 79, + "path": "rotation" + } + }, + { + "sampler": 233, + "target": { + "node": 79, + "path": "scale" + } + }, + { + "sampler": 234, + "target": { + "node": 78, + "path": "translation" + } + }, + { + "sampler": 235, + "target": { + "node": 78, + "path": "rotation" + } + }, + { + "sampler": 236, + "target": { + "node": 78, + "path": "scale" + } + }, + { + "sampler": 237, + "target": { + "node": 77, + "path": "translation" + } + }, + { + "sampler": 238, + "target": { + "node": 77, + "path": "rotation" + } + }, + { + "sampler": 239, + "target": { + "node": 77, + "path": "scale" + } + }, + { + "sampler": 240, + "target": { + "node": 76, + "path": "translation" + } + }, + { + "sampler": 241, + "target": { + "node": 76, + "path": "rotation" + } + }, + { + "sampler": 242, + "target": { + "node": 76, + "path": "scale" + } + }, + { + "sampler": 243, + "target": { + "node": 75, + "path": "translation" + } + }, + { + "sampler": 244, + "target": { + "node": 75, + "path": "rotation" + } + }, + { + "sampler": 245, + "target": { + "node": 75, + "path": "scale" + } + }, + { + "sampler": 246, + "target": { + "node": 82, + "path": "translation" + } + }, + { + "sampler": 247, + "target": { + "node": 82, + "path": "rotation" + } + }, + { + "sampler": 248, + "target": { + "node": 82, + "path": "scale" + } + } + ], + "name": "ThoughtfulHeadShake", + "samplers": [ + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2509 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2510 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2512 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2513 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2514 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2515 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2516 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2517 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2518 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2519 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2520 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2521 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2522 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2523 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2524 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2525 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2526 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2527 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2528 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2529 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2530 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2531 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2532 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2533 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2534 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2535 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2536 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2537 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2538 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2539 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2540 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2541 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2542 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2543 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2544 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2545 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2546 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2547 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2548 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2549 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2550 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2551 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2552 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2553 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2554 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2555 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2556 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2557 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2558 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2559 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2560 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2561 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2562 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2563 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2564 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2565 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2566 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2567 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2568 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2569 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2570 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2571 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2572 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2573 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2574 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2575 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2576 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2577 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2578 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2579 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2580 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2581 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2582 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2583 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2584 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2585 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2586 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2587 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2588 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2589 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2590 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2591 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2592 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2593 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2594 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2595 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2596 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2597 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2598 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2599 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2600 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2601 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2602 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2603 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2604 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2605 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2606 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2607 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2608 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2609 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2610 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2611 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2612 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2613 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2614 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2615 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2616 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2617 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2618 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2619 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2620 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2621 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2622 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2623 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2624 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2625 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2626 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2627 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2628 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2629 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2630 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2631 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2632 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2633 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2634 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2635 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2636 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2637 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2638 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2639 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2640 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2641 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2642 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2643 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2644 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2645 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2646 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2647 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2648 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2649 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2650 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2651 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2652 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2653 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2654 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2655 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2656 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2657 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2658 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2659 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2660 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2661 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2662 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2663 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2664 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2665 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2666 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2667 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2668 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2669 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2670 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2671 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2672 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2673 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2674 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2675 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2676 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2677 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2678 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2679 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2680 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2681 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2682 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2683 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2684 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2685 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2686 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2687 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2688 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2689 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2690 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2691 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2692 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2693 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2694 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2695 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2696 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2697 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2698 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2699 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2700 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2701 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2702 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2703 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2704 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2705 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2706 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2707 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2708 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2709 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2710 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2711 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2712 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2713 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2714 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2715 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2716 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2717 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2718 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2719 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2720 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2721 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2722 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2723 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2724 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2725 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2726 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2727 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2728 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2729 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2730 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2731 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2732 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2733 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2734 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2735 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2736 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2737 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2738 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2739 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2740 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2741 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2742 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2743 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2744 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2745 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2746 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2747 + }, + { + "input": 2508, + "interpolation": "LINEAR", + "output": 2748 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2749 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2750 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2751 + }, + { + "input": 2511, + "interpolation": "LINEAR", + "output": 2752 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2753 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2754 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2755 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2756 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2757 + }, + { + "input": 2511, + "interpolation": "STEP", + "output": 2758 + } + ] + } + ], + "skins": [ + { + "inverseBindMatrices": 2759, + "joints": [ + 81, + 68, + 67, + 66, + 7, + 6, + 1, + 0, + 3, + 2, + 5, + 4, + 36, + 35, + 34, + 33, + 12, + 11, + 10, + 9, + 8, + 17, + 16, + 15, + 14, + 13, + 22, + 21, + 20, + 19, + 18, + 27, + 26, + 25, + 24, + 23, + 32, + 31, + 30, + 29, + 28, + 65, + 64, + 63, + 62, + 41, + 40, + 39, + 38, + 37, + 46, + 45, + 44, + 43, + 42, + 51, + 50, + 49, + 48, + 47, + 56, + 55, + 54, + 53, + 52, + 61, + 60, + 59, + 58, + 57, + 74, + 73, + 72, + 71, + 70, + 69, + 80, + 79, + 78, + 77, + 76, + 75 + ], + "name": "Armature" + } + ], + "accessors": [ + { + "bufferView": 0, + "componentType": 5126, + "count": 576, + "max": [ + 19.2 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1, + "componentType": 5126, + "count": 576, + "type": "VEC3" + }, + { + "bufferView": 2, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 3, + "componentType": 5126, + "count": 2, + "max": [ + 19.2 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 4, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 5, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 6, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 7, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 8, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 9, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 10, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 11, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 12, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 13, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 14, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 15, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 16, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 17, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 18, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 19, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 20, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 21, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 22, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 23, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 24, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 25, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 26, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 27, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 28, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 29, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 30, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 31, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 32, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 33, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 34, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 35, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 36, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 37, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 38, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 39, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 40, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 41, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 42, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 43, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 44, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 45, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 46, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 47, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 48, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 49, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 50, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 51, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 52, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 53, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 54, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 55, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 56, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 57, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 58, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 59, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 60, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 61, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 62, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 63, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 64, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 65, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 66, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 67, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 68, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 69, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 70, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 71, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 72, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 73, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 74, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 75, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 76, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 77, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 78, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 79, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 80, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 81, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 82, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 83, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 84, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 85, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 86, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 87, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 88, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 89, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 90, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 91, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 92, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 93, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 94, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 95, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 96, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 97, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 98, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 99, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 100, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 101, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 102, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 103, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 104, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 105, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 106, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 107, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 108, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 109, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 110, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 111, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 112, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 113, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 114, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 115, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 116, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 117, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 118, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 119, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 120, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 121, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 122, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 123, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 124, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 125, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 126, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 127, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 128, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 129, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 130, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 131, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 132, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 133, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 134, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 135, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 136, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 137, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 138, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 139, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 140, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 141, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 142, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 143, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 144, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 145, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 146, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 147, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 148, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 149, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 150, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 151, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 152, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 153, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 154, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 155, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 156, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 157, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 158, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 159, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 160, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 161, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 162, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 163, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 164, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 165, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 166, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 167, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 168, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 169, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 170, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 171, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 172, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 173, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 174, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 175, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 176, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 177, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 178, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 179, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 180, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 181, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 182, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 183, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 184, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 185, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 186, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 187, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 188, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 189, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 190, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 191, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 192, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 193, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 194, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 195, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 196, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 197, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 198, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 199, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 200, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 201, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 202, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 203, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 204, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 205, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 206, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 207, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 208, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 209, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 210, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 211, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 212, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 213, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 214, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 215, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 216, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 217, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 218, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 219, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 220, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 221, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 222, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 223, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 224, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 225, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 226, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 227, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 228, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 229, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 230, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 231, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 232, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 233, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 234, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 235, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 236, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 237, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 238, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 239, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 240, + "componentType": 5126, + "count": 576, + "type": "VEC4" + }, + { + "bufferView": 241, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 242, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 243, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 244, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 245, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 246, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 247, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 248, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 249, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 250, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 251, + "componentType": 5126, + "count": 201, + "max": [ + 6.7 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 252, + "componentType": 5126, + "count": 201, + "type": "VEC3" + }, + { + "bufferView": 253, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 254, + "componentType": 5126, + "count": 2, + "max": [ + 6.7 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 255, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 256, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 257, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 258, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 259, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 260, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 261, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 262, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 263, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 264, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 265, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 266, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 267, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 268, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 269, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 270, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 271, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 272, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 273, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 274, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 275, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 276, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 277, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 278, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 279, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 280, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 281, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 282, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 283, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 284, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 285, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 286, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 287, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 288, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 289, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 290, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 291, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 292, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 293, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 294, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 295, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 296, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 297, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 298, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 299, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 300, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 301, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 302, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 303, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 304, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 305, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 306, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 307, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 308, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 309, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 310, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 311, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 312, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 313, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 314, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 315, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 316, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 317, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 318, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 319, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 320, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 321, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 322, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 323, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 324, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 325, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 326, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 327, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 328, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 329, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 330, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 331, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 332, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 333, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 334, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 335, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 336, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 337, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 338, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 339, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 340, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 341, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 342, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 343, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 344, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 345, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 346, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 347, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 348, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 349, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 350, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 351, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 352, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 353, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 354, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 355, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 356, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 357, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 358, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 359, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 360, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 361, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 362, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 363, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 364, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 365, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 366, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 367, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 368, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 369, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 370, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 371, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 372, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 373, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 374, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 375, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 376, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 377, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 378, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 379, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 380, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 381, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 382, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 383, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 384, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 385, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 386, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 387, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 388, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 389, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 390, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 391, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 392, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 393, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 394, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 395, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 396, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 397, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 398, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 399, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 400, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 401, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 402, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 403, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 404, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 405, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 406, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 407, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 408, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 409, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 410, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 411, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 412, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 413, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 414, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 415, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 416, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 417, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 418, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 419, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 420, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 421, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 422, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 423, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 424, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 425, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 426, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 427, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 428, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 429, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 430, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 431, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 432, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 433, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 434, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 435, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 436, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 437, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 438, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 439, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 440, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 441, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 442, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 443, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 444, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 445, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 446, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 447, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 448, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 449, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 450, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 451, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 452, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 453, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 454, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 455, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 456, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 457, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 458, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 459, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 460, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 461, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 462, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 463, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 464, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 465, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 466, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 467, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 468, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 469, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 470, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 471, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 472, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 473, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 474, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 475, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 476, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 477, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 478, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 479, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 480, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 481, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 482, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 483, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 484, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 485, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 486, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 487, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 488, + "componentType": 5126, + "count": 201, + "type": "VEC4" + }, + { + "bufferView": 489, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 490, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 491, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 492, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 493, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 494, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 495, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 496, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 497, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 498, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 499, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 500, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 501, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 502, + "componentType": 5126, + "count": 68, + "max": [ + 2.2666666666666666 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 503, + "componentType": 5126, + "count": 68, + "type": "VEC3" + }, + { + "bufferView": 504, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 505, + "componentType": 5126, + "count": 2, + "max": [ + 2.2666666666666666 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 506, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 507, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 508, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 509, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 510, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 511, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 512, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 513, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 514, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 515, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 516, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 517, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 518, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 519, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 520, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 521, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 522, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 523, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 524, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 525, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 526, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 527, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 528, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 529, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 530, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 531, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 532, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 533, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 534, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 535, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 536, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 537, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 538, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 539, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 540, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 541, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 542, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 543, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 544, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 545, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 546, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 547, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 548, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 549, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 550, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 551, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 552, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 553, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 554, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 555, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 556, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 557, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 558, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 559, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 560, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 561, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 562, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 563, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 564, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 565, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 566, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 567, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 568, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 569, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 570, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 571, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 572, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 573, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 574, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 575, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 576, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 577, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 578, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 579, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 580, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 581, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 582, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 583, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 584, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 585, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 586, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 587, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 588, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 589, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 590, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 591, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 592, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 593, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 594, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 595, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 596, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 597, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 598, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 599, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 600, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 601, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 602, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 603, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 604, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 605, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 606, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 607, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 608, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 609, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 610, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 611, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 612, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 613, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 614, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 615, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 616, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 617, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 618, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 619, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 620, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 621, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 622, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 623, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 624, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 625, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 626, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 627, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 628, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 629, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 630, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 631, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 632, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 633, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 634, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 635, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 636, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 637, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 638, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 639, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 640, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 641, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 642, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 643, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 644, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 645, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 646, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 647, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 648, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 649, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 650, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 651, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 652, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 653, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 654, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 655, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 656, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 657, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 658, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 659, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 660, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 661, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 662, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 663, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 664, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 665, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 666, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 667, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 668, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 669, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 670, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 671, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 672, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 673, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 674, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 675, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 676, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 677, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 678, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 679, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 680, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 681, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 682, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 683, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 684, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 685, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 686, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 687, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 688, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 689, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 690, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 691, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 692, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 693, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 694, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 695, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 696, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 697, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 698, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 699, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 700, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 701, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 702, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 703, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 704, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 705, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 706, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 707, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 708, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 709, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 710, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 711, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 712, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 713, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 714, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 715, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 716, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 717, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 718, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 719, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 720, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 721, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 722, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 723, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 724, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 725, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 726, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 727, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 728, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 729, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 730, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 731, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 732, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 733, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 734, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 735, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 736, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 737, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 738, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 739, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 740, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 741, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 742, + "componentType": 5126, + "count": 68, + "type": "VEC4" + }, + { + "bufferView": 743, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 744, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 745, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 746, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 747, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 748, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 749, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 750, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 751, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 752, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 753, + "componentType": 5126, + "count": 89, + "max": [ + 2.966666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 754, + "componentType": 5126, + "count": 89, + "type": "VEC3" + }, + { + "bufferView": 755, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 756, + "componentType": 5126, + "count": 2, + "max": [ + 2.966666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 757, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 758, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 759, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 760, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 761, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 762, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 763, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 764, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 765, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 766, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 767, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 768, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 769, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 770, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 771, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 772, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 773, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 774, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 775, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 776, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 777, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 778, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 779, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 780, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 781, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 782, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 783, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 784, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 785, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 786, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 787, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 788, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 789, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 790, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 791, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 792, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 793, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 794, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 795, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 796, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 797, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 798, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 799, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 800, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 801, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 802, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 803, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 804, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 805, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 806, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 807, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 808, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 809, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 810, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 811, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 812, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 813, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 814, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 815, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 816, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 817, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 818, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 819, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 820, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 821, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 822, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 823, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 824, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 825, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 826, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 827, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 828, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 829, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 830, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 831, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 832, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 833, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 834, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 835, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 836, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 837, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 838, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 839, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 840, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 841, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 842, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 843, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 844, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 845, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 846, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 847, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 848, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 849, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 850, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 851, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 852, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 853, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 854, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 855, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 856, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 857, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 858, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 859, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 860, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 861, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 862, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 863, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 864, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 865, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 866, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 867, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 868, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 869, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 870, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 871, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 872, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 873, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 874, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 875, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 876, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 877, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 878, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 879, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 880, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 881, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 882, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 883, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 884, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 885, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 886, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 887, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 888, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 889, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 890, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 891, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 892, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 893, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 894, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 895, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 896, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 897, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 898, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 899, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 900, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 901, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 902, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 903, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 904, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 905, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 906, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 907, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 908, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 909, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 910, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 911, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 912, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 913, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 914, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 915, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 916, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 917, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 918, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 919, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 920, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 921, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 922, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 923, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 924, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 925, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 926, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 927, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 928, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 929, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 930, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 931, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 932, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 933, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 934, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 935, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 936, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 937, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 938, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 939, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 940, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 941, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 942, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 943, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 944, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 945, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 946, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 947, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 948, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 949, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 950, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 951, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 952, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 953, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 954, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 955, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 956, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 957, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 958, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 959, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 960, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 961, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 962, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 963, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 964, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 965, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 966, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 967, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 968, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 969, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 970, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 971, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 972, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 973, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 974, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 975, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 976, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 977, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 978, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 979, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 980, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 981, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 982, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 983, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 984, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 985, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 986, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 987, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 988, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 989, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 990, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 991, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 992, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 993, + "componentType": 5126, + "count": 89, + "type": "VEC4" + }, + { + "bufferView": 994, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 995, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 996, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 997, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 998, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 999, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1000, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1001, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1002, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1003, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1004, + "componentType": 5126, + "count": 431, + "max": [ + 14.366666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1005, + "componentType": 5126, + "count": 431, + "type": "VEC3" + }, + { + "bufferView": 1006, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1007, + "componentType": 5126, + "count": 2, + "max": [ + 14.366666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1008, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1009, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1010, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1011, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1012, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1013, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1014, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1015, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1016, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1017, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1018, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1019, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1020, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1021, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1022, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1023, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1024, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1025, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1026, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1027, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1028, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1029, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1030, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1031, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1032, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1033, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1034, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1035, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1036, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1037, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1038, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1039, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1040, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1041, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1042, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1043, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1044, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1045, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1046, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1047, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1048, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1049, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1050, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1051, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1052, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1053, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1054, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1055, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1056, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1057, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1058, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1059, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1060, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1061, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1062, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1063, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1064, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1065, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1066, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1067, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1068, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1069, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1070, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1071, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1072, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1073, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1074, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1075, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1076, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1077, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1078, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1079, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1080, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1081, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1082, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1083, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1084, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1085, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1086, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1087, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1088, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1089, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1090, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1091, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1092, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1093, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1094, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1095, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1096, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1097, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1098, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1099, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1100, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1101, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1102, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1103, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1104, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1105, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1106, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1107, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1108, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1109, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1110, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1111, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1112, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1113, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1114, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1115, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1116, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1117, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1118, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1119, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1120, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1121, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1122, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1123, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1124, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1125, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1126, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1127, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1128, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1129, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1130, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1131, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1132, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1133, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1134, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1135, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1136, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1137, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1138, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1139, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1140, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1141, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1142, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1143, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1144, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1145, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1146, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1147, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1148, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1149, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1150, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1151, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1152, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1153, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1154, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1155, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1156, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1157, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1158, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1159, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1160, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1161, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1162, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1163, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1164, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1165, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1166, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1167, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1168, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1169, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1170, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1171, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1172, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1173, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1174, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1175, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1176, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1177, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1178, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1179, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1180, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1181, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1182, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1183, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1184, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1185, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1186, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1187, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1188, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1189, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1190, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1191, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1192, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1193, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1194, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1195, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1196, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1197, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1198, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1199, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1200, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1201, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1202, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1203, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1204, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1205, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1206, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1207, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1208, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1209, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1210, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1211, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1212, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1213, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1214, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1215, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1216, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1217, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1218, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1219, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1220, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1221, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1222, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1223, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1224, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1225, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1226, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1227, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1228, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1229, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1230, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1231, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1232, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1233, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1234, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1235, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1236, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1237, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1238, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1239, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1240, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1241, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1242, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1243, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1244, + "componentType": 5126, + "count": 431, + "type": "VEC4" + }, + { + "bufferView": 1245, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1246, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1247, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1248, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1249, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1250, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1251, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1252, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1253, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1254, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1255, + "componentType": 5126, + "count": 81, + "max": [ + 2.7 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1256, + "componentType": 5126, + "count": 81, + "type": "VEC3" + }, + { + "bufferView": 1257, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1258, + "componentType": 5126, + "count": 2, + "max": [ + 2.7 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1259, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1260, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1261, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1262, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1263, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1264, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1265, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1266, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1267, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1268, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1269, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1270, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1271, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1272, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1273, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1274, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1275, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1276, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1277, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1278, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1279, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1280, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1281, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1282, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1283, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1284, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1285, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1286, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1287, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1288, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1289, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1290, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1291, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1292, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1293, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1294, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1295, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1296, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1297, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1298, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1299, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1300, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1301, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1302, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1303, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1304, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1305, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1306, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1307, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1308, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1309, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1310, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1311, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1312, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1313, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1314, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1315, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1316, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1317, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1318, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1319, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1320, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1321, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1322, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1323, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1324, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1325, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1326, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1327, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1328, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1329, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1330, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1331, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1332, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1333, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1334, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1335, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1336, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1337, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1338, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1339, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1340, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1341, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1342, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1343, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1344, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1345, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1346, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1347, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1348, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1349, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1350, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1351, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1352, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1353, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1354, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1355, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1356, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1357, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1358, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1359, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1360, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1361, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1362, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1363, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1364, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1365, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1366, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1367, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1368, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1369, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1370, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1371, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1372, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1373, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1374, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1375, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1376, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1377, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1378, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1379, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1380, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1381, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1382, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1383, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1384, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1385, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1386, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1387, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1388, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1389, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1390, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1391, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1392, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1393, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1394, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1395, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1396, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1397, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1398, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1399, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1400, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1401, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1402, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1403, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1404, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1405, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1406, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1407, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1408, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1409, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1410, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1411, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1412, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1413, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1414, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1415, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1416, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1417, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1418, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1419, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1420, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1421, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1422, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1423, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1424, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1425, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1426, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1427, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1428, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1429, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1430, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1431, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1432, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1433, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1434, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1435, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1436, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1437, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1438, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1439, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1440, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1441, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1442, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1443, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1444, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1445, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1446, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1447, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1448, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1449, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1450, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1451, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1452, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1453, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1454, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1455, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1456, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1457, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1458, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1459, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1460, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1461, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1462, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1463, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1464, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1465, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1466, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1467, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1468, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1469, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1470, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1471, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1472, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1473, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1474, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1475, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1476, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1477, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1478, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1479, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1480, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1481, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1482, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1483, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1484, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1485, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1486, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1487, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1488, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1489, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1490, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1491, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1492, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1493, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1494, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1495, + "componentType": 5126, + "count": 81, + "type": "VEC4" + }, + { + "bufferView": 1496, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1497, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1498, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1499, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1500, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1501, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1502, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1503, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1504, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1505, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1506, + "componentType": 5126, + "count": 121, + "max": [ + 4.033333333333333 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1507, + "componentType": 5126, + "count": 121, + "type": "VEC3" + }, + { + "bufferView": 1508, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1509, + "componentType": 5126, + "count": 2, + "max": [ + 4.033333333333333 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1510, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1511, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1512, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1513, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1514, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1515, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1516, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1517, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1518, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1519, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1520, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1521, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1522, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1523, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1524, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1525, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1526, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1527, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1528, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1529, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1530, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1531, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1532, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1533, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1534, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1535, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1536, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1537, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1538, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1539, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1540, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1541, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1542, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1543, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1544, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1545, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1546, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1547, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1548, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1549, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1550, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1551, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1552, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1553, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1554, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1555, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1556, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1557, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1558, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1559, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1560, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1561, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1562, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1563, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1564, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1565, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1566, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1567, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1568, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1569, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1570, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1571, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1572, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1573, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1574, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1575, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1576, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1577, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1578, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1579, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1580, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1581, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1582, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1583, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1584, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1585, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1586, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1587, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1588, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1589, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1590, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1591, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1592, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1593, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1594, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1595, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1596, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1597, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1598, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1599, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1600, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1601, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1602, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1603, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1604, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1605, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1606, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1607, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1608, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1609, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1610, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1611, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1612, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1613, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1614, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1615, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1616, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1617, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1618, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1619, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1620, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1621, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1622, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1623, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1624, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1625, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1626, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1627, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1628, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1629, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1630, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1631, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1632, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1633, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1634, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1635, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1636, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1637, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1638, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1639, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1640, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1641, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1642, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1643, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1644, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1645, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1646, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1647, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1648, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1649, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1650, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1651, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1652, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1653, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1654, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1655, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1656, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1657, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1658, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1659, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1660, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1661, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1662, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1663, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1664, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1665, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1666, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1667, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1668, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1669, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1670, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1671, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1672, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1673, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1674, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1675, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1676, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1677, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1678, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1679, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1680, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1681, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1682, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1683, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1684, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1685, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1686, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1687, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1688, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1689, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1690, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1691, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1692, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1693, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1694, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1695, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1696, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1697, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1698, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1699, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1700, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1701, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1702, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1703, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1704, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1705, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1706, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1707, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1708, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1709, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1710, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1711, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1712, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1713, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1714, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1715, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1716, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1717, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1718, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1719, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1720, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1721, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1722, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1723, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1724, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1725, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1726, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1727, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1728, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1729, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1730, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1731, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1732, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1733, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1734, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1735, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1736, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1737, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1738, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1739, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1740, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1741, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1742, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1743, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1744, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1745, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1746, + "componentType": 5126, + "count": 121, + "type": "VEC4" + }, + { + "bufferView": 1747, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1748, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1749, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1750, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1751, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1752, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1753, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1754, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1755, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1756, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1757, + "componentType": 5126, + "count": 119, + "max": [ + 3.966666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1758, + "componentType": 5126, + "count": 119, + "type": "VEC3" + }, + { + "bufferView": 1759, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1760, + "componentType": 5126, + "count": 2, + "max": [ + 3.966666666666667 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 1761, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1762, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1763, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1764, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1765, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1766, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1767, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1768, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1769, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1770, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1771, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1772, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1773, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1774, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1775, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1776, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1777, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1778, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1779, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1780, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1781, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1782, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1783, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1784, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1785, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1786, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1787, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1788, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1789, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1790, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1791, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1792, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1793, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1794, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1795, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1796, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1797, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1798, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1799, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1800, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1801, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1802, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1803, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1804, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1805, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1806, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1807, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1808, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1809, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1810, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1811, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1812, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1813, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1814, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1815, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1816, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1817, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1818, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1819, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1820, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1821, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1822, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1823, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1824, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1825, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1826, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1827, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1828, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1829, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1830, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1831, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1832, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1833, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1834, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1835, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1836, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1837, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1838, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1839, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1840, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1841, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1842, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1843, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1844, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1845, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1846, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1847, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1848, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1849, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1850, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1851, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1852, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1853, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1854, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1855, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1856, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1857, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1858, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1859, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1860, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1861, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1862, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1863, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1864, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1865, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1866, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1867, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1868, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1869, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1870, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1871, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1872, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1873, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1874, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1875, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1876, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1877, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1878, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1879, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1880, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1881, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1882, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1883, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1884, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1885, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1886, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1887, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1888, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1889, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1890, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1891, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1892, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1893, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1894, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1895, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1896, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1897, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1898, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1899, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1900, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1901, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1902, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1903, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1904, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1905, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1906, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1907, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1908, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1909, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1910, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1911, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1912, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1913, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1914, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1915, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1916, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1917, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1918, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1919, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1920, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1921, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1922, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1923, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1924, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1925, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1926, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1927, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1928, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1929, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1930, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1931, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1932, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1933, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1934, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1935, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1936, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1937, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1938, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1939, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1940, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1941, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1942, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1943, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1944, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1945, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1946, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1947, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1948, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1949, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1950, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1951, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1952, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1953, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1954, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1955, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1956, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1957, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1958, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1959, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1960, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1961, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1962, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1963, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1964, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1965, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1966, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1967, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1968, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1969, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1970, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1971, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1972, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1973, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1974, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1975, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1976, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1977, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1978, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1979, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1980, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1981, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1982, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1983, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1984, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1985, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 1986, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1987, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1988, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1989, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1990, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1991, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1992, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1993, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1994, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1995, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1996, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1997, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 1998, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 1999, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2000, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2001, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2002, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2003, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2004, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2005, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2006, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2007, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2008, + "componentType": 5126, + "count": 114, + "max": [ + 3.8 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 2009, + "componentType": 5126, + "count": 114, + "type": "VEC3" + }, + { + "bufferView": 2010, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2011, + "componentType": 5126, + "count": 2, + "max": [ + 3.8 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 2012, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2013, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2014, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2015, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2016, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2017, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2018, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2019, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2020, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2021, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2022, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2023, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2024, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2025, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2026, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2027, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2028, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2029, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2030, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2031, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2032, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2033, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2034, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2035, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2036, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2037, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2038, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2039, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2040, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2041, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2042, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2043, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2044, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2045, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2046, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2047, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2048, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2049, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2050, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2051, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2052, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2053, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2054, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2055, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2056, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2057, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2058, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2059, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2060, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2061, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2062, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2063, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2064, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2065, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2066, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2067, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2068, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2069, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2070, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2071, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2072, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2073, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2074, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2075, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2076, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2077, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2078, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2079, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2080, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2081, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2082, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2083, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2084, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2085, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2086, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2087, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2088, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2089, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2090, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2091, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2092, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2093, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2094, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2095, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2096, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2097, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2098, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2099, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2100, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2101, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2102, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2103, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2104, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2105, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2106, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2107, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2108, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2109, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2110, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2111, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2112, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2113, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2114, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2115, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2116, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2117, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2118, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2119, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2120, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2121, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2122, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2123, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2124, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2125, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2126, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2127, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2128, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2129, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2130, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2131, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2132, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2133, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2134, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2135, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2136, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2137, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2138, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2139, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2140, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2141, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2142, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2143, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2144, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2145, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2146, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2147, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2148, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2149, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2150, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2151, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2152, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2153, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2154, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2155, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2156, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2157, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2158, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2159, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2160, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2161, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2162, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2163, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2164, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2165, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2166, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2167, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2168, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2169, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2170, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2171, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2172, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2173, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2174, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2175, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2176, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2177, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2178, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2179, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2180, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2181, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2182, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2183, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2184, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2185, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2186, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2187, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2188, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2189, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2190, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2191, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2192, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2193, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2194, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2195, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2196, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2197, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2198, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2199, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2200, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2201, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2202, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2203, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2204, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2205, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2206, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2207, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2208, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2209, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2210, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2211, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2212, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2213, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2214, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2215, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2216, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2217, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2218, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2219, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2220, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2221, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2222, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2223, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2224, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2225, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2226, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2227, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2228, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2229, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2230, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2231, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2232, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2233, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2234, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2235, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2236, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2237, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2238, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2239, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2240, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2241, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2242, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2243, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2244, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2245, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2246, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2247, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2248, + "componentType": 5126, + "count": 114, + "type": "VEC4" + }, + { + "bufferView": 2249, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2250, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2251, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2252, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2253, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2254, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2255, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2256, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2257, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2258, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2259, + "componentType": 5126, + "count": 119, + "type": "VEC3" + }, + { + "bufferView": 2260, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2261, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2262, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2263, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2264, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2265, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2266, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2267, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2268, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2269, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2270, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2271, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2272, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2273, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2274, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2275, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2276, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2277, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2278, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2279, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2280, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2281, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2282, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2283, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2284, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2285, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2286, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2287, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2288, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2289, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2290, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2291, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2292, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2293, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2294, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2295, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2296, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2297, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2298, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2299, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2300, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2301, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2302, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2303, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2304, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2305, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2306, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2307, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2308, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2309, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2310, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2311, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2312, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2313, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2314, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2315, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2316, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2317, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2318, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2319, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2320, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2321, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2322, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2323, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2324, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2325, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2326, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2327, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2328, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2329, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2330, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2331, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2332, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2333, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2334, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2335, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2336, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2337, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2338, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2339, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2340, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2341, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2342, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2343, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2344, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2345, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2346, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2347, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2348, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2349, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2350, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2351, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2352, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2353, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2354, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2355, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2356, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2357, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2358, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2359, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2360, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2361, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2362, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2363, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2364, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2365, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2366, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2367, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2368, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2369, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2370, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2371, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2372, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2373, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2374, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2375, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2376, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2377, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2378, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2379, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2380, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2381, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2382, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2383, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2384, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2385, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2386, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2387, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2388, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2389, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2390, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2391, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2392, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2393, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2394, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2395, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2396, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2397, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2398, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2399, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2400, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2401, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2402, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2403, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2404, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2405, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2406, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2407, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2408, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2409, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2410, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2411, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2412, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2413, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2414, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2415, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2416, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2417, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2418, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2419, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2420, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2421, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2422, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2423, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2424, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2425, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2426, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2427, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2428, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2429, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2430, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2431, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2432, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2433, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2434, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2435, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2436, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2437, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2438, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2439, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2440, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2441, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2442, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2443, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2444, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2445, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2446, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2447, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2448, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2449, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2450, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2451, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2452, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2453, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2454, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2455, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2456, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2457, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2458, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2459, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2460, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2461, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2462, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2463, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2464, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2465, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2466, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2467, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2468, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2469, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2470, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2471, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2472, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2473, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2474, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2475, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2476, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2477, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2478, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2479, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2480, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2481, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2482, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2483, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2484, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2485, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2486, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2487, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2488, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2489, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2490, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2491, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2492, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2493, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2494, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2495, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2496, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2497, + "componentType": 5126, + "count": 119, + "type": "VEC4" + }, + { + "bufferView": 2498, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2499, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2500, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2501, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2502, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2503, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2504, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2505, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2506, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2507, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2508, + "componentType": 5126, + "count": 93, + "max": [ + 3.1 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 2509, + "componentType": 5126, + "count": 93, + "type": "VEC3" + }, + { + "bufferView": 2510, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2511, + "componentType": 5126, + "count": 2, + "max": [ + 3.1 + ], + "min": [ + 0.03333333333333333 + ], + "type": "SCALAR" + }, + { + "bufferView": 2512, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2513, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2514, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2515, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2516, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2517, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2518, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2519, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2520, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2521, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2522, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2523, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2524, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2525, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2526, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2527, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2528, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2529, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2530, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2531, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2532, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2533, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2534, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2535, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2536, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2537, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2538, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2539, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2540, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2541, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2542, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2543, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2544, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2545, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2546, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2547, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2548, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2549, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2550, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2551, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2552, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2553, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2554, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2555, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2556, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2557, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2558, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2559, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2560, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2561, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2562, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2563, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2564, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2565, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2566, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2567, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2568, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2569, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2570, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2571, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2572, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2573, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2574, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2575, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2576, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2577, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2578, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2579, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2580, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2581, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2582, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2583, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2584, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2585, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2586, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2587, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2588, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2589, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2590, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2591, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2592, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2593, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2594, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2595, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2596, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2597, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2598, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2599, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2600, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2601, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2602, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2603, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2604, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2605, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2606, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2607, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2608, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2609, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2610, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2611, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2612, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2613, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2614, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2615, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2616, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2617, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2618, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2619, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2620, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2621, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2622, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2623, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2624, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2625, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2626, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2627, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2628, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2629, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2630, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2631, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2632, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2633, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2634, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2635, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2636, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2637, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2638, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2639, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2640, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2641, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2642, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2643, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2644, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2645, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2646, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2647, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2648, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2649, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2650, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2651, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2652, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2653, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2654, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2655, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2656, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2657, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2658, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2659, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2660, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2661, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2662, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2663, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2664, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2665, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2666, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2667, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2668, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2669, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2670, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2671, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2672, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2673, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2674, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2675, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2676, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2677, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2678, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2679, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2680, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2681, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2682, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2683, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2684, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2685, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2686, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2687, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2688, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2689, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2690, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2691, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2692, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2693, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2694, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2695, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2696, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2697, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2698, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2699, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2700, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2701, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2702, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2703, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2704, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2705, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2706, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2707, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2708, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2709, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2710, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2711, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2712, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2713, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2714, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2715, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2716, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2717, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2718, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2719, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2720, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2721, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2722, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2723, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2724, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2725, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2726, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2727, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2728, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2729, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2730, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2731, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2732, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2733, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2734, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2735, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2736, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2737, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2738, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2739, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2740, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2741, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2742, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2743, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2744, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2745, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2746, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2747, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2748, + "componentType": 5126, + "count": 93, + "type": "VEC4" + }, + { + "bufferView": 2749, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2750, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2751, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2752, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2753, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2754, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2755, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2756, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2757, + "componentType": 5126, + "count": 2, + "type": "VEC4" + }, + { + "bufferView": 2758, + "componentType": 5126, + "count": 2, + "type": "VEC3" + }, + { + "bufferView": 2759, + "componentType": 5126, + "count": 82, + "type": "MAT4" + } + ], + "bufferViews": [ + { + "buffer": 0, + "byteLength": 2304, + "byteOffset": 0 + }, + { + "buffer": 0, + "byteLength": 6912, + "byteOffset": 2304 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 9216 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 18432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 18440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 18464 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 18488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 27704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 27728 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 27752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 36968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 36992 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 37016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 46232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 46256 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 46280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 55496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 55520 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 55544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64784 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 64808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64864 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 64888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 64944 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 64968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65024 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 65048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65104 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 65128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65184 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 65208 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 65264 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 65288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 74504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 74528 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 74552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 83768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 83792 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 83816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 93032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 93056 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 93080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 102296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 102320 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 102344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 111560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 111584 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 111608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 120824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 120848 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 120872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130112 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 130136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 130216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 130272 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 130296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 139512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 139536 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 139560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 148776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 148800 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 148824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158064 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 158088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158144 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 158168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 158224 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 158248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 167464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 167488 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 167512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 176728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 176752 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 176776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 185992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 186016 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 186040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 186072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 186096 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 186120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 186152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 186176 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 186200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 195416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 195440 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 195464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 204680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 204704 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 204728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 213944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 213968 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 213992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 214024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 214048 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 214072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 214104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 214128 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 214152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 223368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 223392 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 223416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 232632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 232656 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 232680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 241896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 241920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 241944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 241976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 242000 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 242024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 242056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 242080 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 242104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 251320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 251344 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 251368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 260584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 260608 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 260632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 269848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 269872 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 269896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 279112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 279136 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 279160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 288376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 288400 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 288424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 297640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 297664 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 297688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 306904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 306928 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 306952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 306984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 307008 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 307032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 307064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 307088 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 307112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 316328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 316352 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 316376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 325592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 325616 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 325640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 334856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 334880 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 334904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 334936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 334960 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 334984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 335016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 335040 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 335064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 344280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 344304 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 344328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 353544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 353568 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 353592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362832 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 362856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362912 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 362936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 362992 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 363016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 372232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 372256 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 372280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 381496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 381520 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 381544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390784 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 390808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390864 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 390888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 390944 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 390968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 400184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 400208 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 400232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 409448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 409472 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 409496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418736 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 418760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418816 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 418840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 418896 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 418920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 428136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 428160 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 428184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 437400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 437424 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 437448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 446664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 446688 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 446712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 455928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 455952 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 455976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 456008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 456032 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 456056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 456088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 456112 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 456136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 465352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 465376 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 465400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 474616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 474640 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 474664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 483880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 483904 + }, + { + "buffer": 0, + "byteLength": 9216, + "byteOffset": 483928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493168 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 493192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493248 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 493272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493328 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 493352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 493384 + }, + { + "buffer": 0, + "byteLength": 804, + "byteOffset": 493408 + }, + { + "buffer": 0, + "byteLength": 2412, + "byteOffset": 494212 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 496624 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 499840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 499848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 499872 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 499896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 503112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 503136 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 503160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 506376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 506400 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 506424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 509640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 509664 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 509688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 512904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 512928 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 512952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516272 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516352 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516432 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516512 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516592 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 516616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 516672 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 516696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 519912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 519936 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 519960 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 523176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 523200 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 523224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 526440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 526464 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 526488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 529704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 529728 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 529752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 532968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 532992 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 533016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 536232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 536256 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 536280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 539544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539600 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 539624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 539680 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 539704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 542920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 542944 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 542968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 546184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 546208 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 546232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549472 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 549496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549552 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 549576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 549632 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 549656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 552872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 552896 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 552920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 556136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 556160 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 556184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559424 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 559448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559504 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 559528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 559584 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 559608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 562824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 562848 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 562872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 566088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 566112 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 566136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569376 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 569400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569456 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 569480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 569536 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 569560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 572776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 572800 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 572824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 576040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 576064 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 576088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579328 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 579352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579408 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 579432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 579488 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 579512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 582728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 582752 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 582776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 585992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 586016 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 586040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 589256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 589280 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 589304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 592520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 592544 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 592568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 595784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 595808 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 595832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 599048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 599072 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 599096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602336 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 602360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602416 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 602440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 602496 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 602520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 605736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 605760 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 605784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 609000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 609024 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 609048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612288 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 612312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612368 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 612392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 612448 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 612472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 615688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 615712 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 615736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 618952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 618976 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 619000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622240 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 622264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622320 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 622344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 622400 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 622424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 625640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 625664 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 625688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 628904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 628928 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 628952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 632216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632272 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 632296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 632352 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 632376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 635592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 635616 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 635640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 638856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 638880 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 638904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642144 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 642168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642224 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 642248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 642304 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 642328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 645544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 645568 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 645592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 648808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 648832 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 648856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 652072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 652096 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 652120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655360 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 655384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655440 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 655464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 655520 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 655544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 658760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 658784 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 658808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 662024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 662048 + }, + { + "buffer": 0, + "byteLength": 3216, + "byteOffset": 662072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665312 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 665336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665392 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 665416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665472 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 665496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665552 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 665576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 665608 + }, + { + "buffer": 0, + "byteLength": 272, + "byteOffset": 665632 + }, + { + "buffer": 0, + "byteLength": 816, + "byteOffset": 665904 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 666720 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 667808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 667816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 667840 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 667864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 668952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 668976 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 669000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 670088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 670112 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 670136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 671224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 671248 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 671272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 672360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 672384 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 672408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673600 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673680 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673760 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673840 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 673944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 673976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 674000 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 674024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 675112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 675136 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 675160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 676248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 676272 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 676296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 677384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 677408 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 677432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 678520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 678544 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 678568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 679656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 679680 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 679704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 680792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 680816 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 680840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 681928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 681952 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 681976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 682008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 682032 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 682056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 682088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 682112 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 682136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 683224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 683248 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 683272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 684360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 684384 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 684408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 685544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685600 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 685624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 685680 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 685704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 686792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 686816 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 686840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 687928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 687952 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 687976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689088 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 689112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689168 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 689192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 689248 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 689272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 690360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 690384 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 690408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 691496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 691520 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 691544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692656 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 692680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692736 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 692760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 692816 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 692840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 693928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 693952 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 693976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 695064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 695088 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 695112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696224 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 696248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696304 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 696328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 696384 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 696408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 697496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 697520 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 697544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 698632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 698656 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 698680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 699768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 699792 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 699816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 700904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 700928 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 700952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 702040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 702064 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 702088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 703176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 703200 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 703224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704336 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 704360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704416 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 704440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 704496 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 704520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 705608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 705632 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 705656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 706744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 706768 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 706792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 707880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 707904 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 707928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 707960 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 707984 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 708008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 708040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 708064 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 708088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 709176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 709200 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 709224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 710312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 710336 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 710360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711472 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 711496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711552 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 711576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 711632 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 711656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 712744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 712768 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 712792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 713880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 713904 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 713928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 715064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715120 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 715144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 715200 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 715224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 716312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 716336 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 716360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 717448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 717472 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 717496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 718632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718688 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 718712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 718768 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 718792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 719880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 719904 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 719928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 721016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 721040 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 721064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 722152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 722176 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 722200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723312 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 723336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723392 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 723416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 723472 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 723496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 724584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 724608 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 724632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 725720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 725744 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 725768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 726856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 726880 + }, + { + "buffer": 0, + "byteLength": 1088, + "byteOffset": 726904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 727992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728016 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 728040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728096 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 728120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728176 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 728200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 728232 + }, + { + "buffer": 0, + "byteLength": 356, + "byteOffset": 728256 + }, + { + "buffer": 0, + "byteLength": 1068, + "byteOffset": 728612 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 729680 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 731104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 731112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 731136 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 731160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 732584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 732608 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 732632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 734056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 734080 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 734104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 735528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 735552 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 735576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 737000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 737024 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 737048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738496 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738576 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738656 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738736 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738816 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738896 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 738920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 738976 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 739000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 740424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 740448 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 740472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 741896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 741920 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 741944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 743368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 743392 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 743416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 744840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 744864 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 744888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 744920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 744944 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 744968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 746392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 746416 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 746440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 747864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 747888 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 747912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 747944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 747968 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 747992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 748024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 748048 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 748072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 749496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 749520 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 749544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 750968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 750992 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 751016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752464 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 752488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752544 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 752568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 752624 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 752648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 754072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 754096 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 754120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 755544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 755568 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 755592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 757064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757120 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 757144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 757200 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 757224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 758648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 758672 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 758696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 760120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 760144 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 760168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761616 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 761640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761696 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 761720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 761776 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 761800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 763224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 763248 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 763272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 764696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 764720 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 764744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 766216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766272 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 766296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 766352 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 766376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 767800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 767824 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 767848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 769272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 769296 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 769320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 770744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 770768 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 770792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 772216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 772240 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 772264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 772296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 772320 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 772344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 773768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 773792 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 773816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775264 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 775288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775344 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 775368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 775424 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 775448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 776872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 776896 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 776920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 778344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 778368 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 778392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 779816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 779840 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 779864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 779896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 779920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 779944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 779976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 780000 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 780024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 781448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 781472 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 781496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 782920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 782944 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 782968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784416 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 784440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784496 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 784520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 784576 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 784600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 786024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 786048 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 786072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 787496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 787520 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 787544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 788968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 788992 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 789016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 789048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 789072 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 789096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 789128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 789152 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 789176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 790600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 790624 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 790648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 792072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 792096 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 792120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793568 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 793592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793648 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 793672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 793728 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 793752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 795176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 795200 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 795224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 796648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 796672 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 796696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 798120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 798144 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 798168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799616 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 799640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799696 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 799720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 799776 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 799800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 801224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 801248 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 801272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 802696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 802720 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 802744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 804168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 804192 + }, + { + "buffer": 0, + "byteLength": 1424, + "byteOffset": 804216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805664 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 805688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805744 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 805768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805824 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 805848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 805880 + }, + { + "buffer": 0, + "byteLength": 1724, + "byteOffset": 805904 + }, + { + "buffer": 0, + "byteLength": 5172, + "byteOffset": 807628 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 812800 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 819696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 819704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 819728 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 819752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 826648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 826672 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 826696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 833592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 833616 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 833640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 840536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 840560 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 840584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 847480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 847504 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 847528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854448 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854688 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854768 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854848 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 854872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 854928 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 854952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 861848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 861872 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 861896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 868792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 868816 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 868840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 875736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 875760 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 875784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 882680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 882704 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 882728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 889624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 889648 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 889672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 896568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 896592 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 896616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903536 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 903560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903616 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 903640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 903696 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 903720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 910616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 910640 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 910664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 917560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 917584 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 917608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 924552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 924632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 924688 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 924712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 931608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 931632 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 931656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 938552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 938576 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 938600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 945544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945600 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 945624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 945680 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 945704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 952600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 952624 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 952648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 959544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 959568 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 959592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966512 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 966536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966592 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 966616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 966672 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 966696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 973592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 973616 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 973640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 980536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 980560 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 980584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987504 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 987528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987584 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 987608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 987664 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 987688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 994584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 994608 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 994632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1001528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1001552 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1001576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1008472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1008496 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1008520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015440 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015600 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015680 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015760 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015840 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1015944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1015976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016000 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016080 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016160 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016240 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016320 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016400 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016480 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016560 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016640 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016720 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016800 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016880 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1016960 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1016984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1017064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017120 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1017144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017200 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1017224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017280 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1017304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017360 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1017384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1017440 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1017464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1024360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1024384 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1024408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1031304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1031328 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1031352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1038248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1038272 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1038296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045216 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1045240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045296 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1045320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1045376 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1045400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1052296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1052320 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1052344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1059240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1059264 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1059288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1066184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1066208 + }, + { + "buffer": 0, + "byteLength": 6896, + "byteOffset": 1066232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073152 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1073176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073208 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073232 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1073256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073312 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1073336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1073368 + }, + { + "buffer": 0, + "byteLength": 324, + "byteOffset": 1073392 + }, + { + "buffer": 0, + "byteLength": 972, + "byteOffset": 1073716 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1074688 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 1075984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1075992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1076016 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1076040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1077336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1077360 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1077384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1078680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1078704 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1078728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1080024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1080048 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1080072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1081368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1081392 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1081416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082736 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1082760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082816 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1082840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082896 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1082920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1082976 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1083000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083056 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1083080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083136 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1083160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1083216 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1083240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1084536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1084560 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1084584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1085880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1085904 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1085928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1087224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1087248 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1087272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088592 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1088616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088672 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1088696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088752 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1088776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088832 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1088856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088912 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1088936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1088992 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089072 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089152 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089208 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089232 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089312 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089392 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089472 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089552 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089632 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089712 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089792 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089872 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1089952 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1089976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090032 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090112 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090272 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090352 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090432 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090512 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1090536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1090592 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1090616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1091912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1091936 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1091960 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1093256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1093280 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1093304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1094600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1094624 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1094648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1095944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1095968 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1095992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096048 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096128 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096208 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096288 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096368 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096448 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096688 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096768 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096848 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096928 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1096952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1096984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097008 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097088 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097168 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097248 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097328 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097408 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097488 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097568 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097648 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097728 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097808 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097888 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1097912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1097968 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1097992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1099288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1099312 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1099336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1100632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1100656 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1100680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1101976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1102000 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1102024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103344 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1103368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103424 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1103448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1103504 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1103528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1104824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1104848 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1104872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1106168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1106192 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1106216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1107512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1107536 + }, + { + "buffer": 0, + "byteLength": 1296, + "byteOffset": 1107560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1108856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1108880 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1108904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1108936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1108960 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1108984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1109016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1109040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1109064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1109096 + }, + { + "buffer": 0, + "byteLength": 484, + "byteOffset": 1109120 + }, + { + "buffer": 0, + "byteLength": 1452, + "byteOffset": 1109604 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1111056 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 1112992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1113000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1113024 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1113048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1114984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1115008 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1115032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1116968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1116992 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1117016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1118952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1118976 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1119000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1120936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1120960 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1120984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1122920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1122944 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1122968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123024 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1123048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123104 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1123128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123184 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1123208 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123264 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1123288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123344 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1123368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1123424 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1123448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1125384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1125408 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1125432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1127368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1127392 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1127416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1129352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1129376 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1129400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1131336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1131360 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1131384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1133320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1133344 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1133368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1135304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1135328 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1135352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137288 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137312 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1137336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137392 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1137416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1137472 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1137496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1139432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1139456 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1139480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1141416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1141440 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1141464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143424 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1143448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143504 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1143528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1143584 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1143608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1145544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1145568 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1145592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1147528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1147552 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1147576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149512 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149536 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1149560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149592 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149616 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1149640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1149696 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1149720 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1151656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1151680 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1151704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1153640 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1153664 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1153688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155648 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1155672 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155728 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1155752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1155808 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1155832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1157768 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1157792 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1157816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1159752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1159776 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1159800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161760 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1161784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161840 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1161864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1161920 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1161944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1163880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1163904 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1163928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1165864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1165888 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1165912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1167848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1167872 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1167896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1169832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1169856 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1169880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1171816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1171840 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1171864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1173800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1173824 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1173848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175808 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1175832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175888 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1175912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1175968 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1175992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1177928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1177952 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1177976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1179912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1179936 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1179960 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1181896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1181920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1181944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1181976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1182000 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1182024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1182056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1182080 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1182104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1184040 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1184064 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1184088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1186024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1186048 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1186072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188032 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1188056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188088 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188112 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1188136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1188192 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1188216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1190152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1190176 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1190200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1192136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1192160 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1192184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194144 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1194168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194224 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1194248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1194304 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1194328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1196264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1196288 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1196312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1198248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1198272 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1198296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200256 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1200280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200336 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1200360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1200416 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1200440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1202376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1202400 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1202424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1204360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1204384 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1204408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1206344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1206368 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1206392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208352 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1208376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208432 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1208456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1208512 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1208536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1210472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1210496 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1210520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1212456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1212480 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1212504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1214440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1214464 + }, + { + "buffer": 0, + "byteLength": 1936, + "byteOffset": 1214488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216448 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1216472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1216552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1216632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1216664 + }, + { + "buffer": 0, + "byteLength": 476, + "byteOffset": 1216688 + }, + { + "buffer": 0, + "byteLength": 1428, + "byteOffset": 1217164 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1218592 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 1220496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1220504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1220528 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1220552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1222456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1222480 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1222504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1224408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1224432 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1224456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1226360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1226384 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1226408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1228312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1228336 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1228360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230288 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230368 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230448 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230688 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1230712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1230768 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1230792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1232696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1232720 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1232744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1234648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1234672 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1234696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1236600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1236624 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1236648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1238552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1238576 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1238600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1240552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240608 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1240632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240688 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1240712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240768 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1240792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1240848 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1240872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1242776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1242800 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1242824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1244728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1244752 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1244776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246704 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1246728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246784 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1246808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1246864 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1246888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1248792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1248816 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1248840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1250744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1250768 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1250792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252720 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1252744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252800 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1252824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1252880 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1252904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1254808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1254832 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1254856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1256760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1256784 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1256808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258712 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258736 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1258760 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258816 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1258840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1258896 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1258920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1260824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1260848 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1260872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1262776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1262800 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1262824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264752 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1264776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264808 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264832 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1264856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1264912 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1264936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1266840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1266864 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1266888 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1268792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1268816 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1268840 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1270744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1270768 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1270792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272720 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1272744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272800 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1272824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272880 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1272904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1272960 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1272984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1273016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1273040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1273064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1273096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1273120 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1273144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1275048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1275072 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1275096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1277000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1277024 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1277048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1278952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1278976 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1279000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1279032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1279056 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1279080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1279112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1279136 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1279160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1281064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1281088 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1281112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1283016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1283040 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1283064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1284968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1284992 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1285016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1285048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1285072 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1285096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1285128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1285152 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1285176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1287080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1287104 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1287128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1289032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1289056 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1289080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1290984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1291008 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1291032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1291064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1291088 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1291112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1291144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1291168 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1291192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1293096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1293120 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1293144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1295048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1295072 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1295096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297024 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1297048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297104 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1297128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1297184 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1297208 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1299112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1299136 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1299160 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1301064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1301088 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1301112 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1303016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1303040 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1303064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1304968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1304992 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1305016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1305048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1305072 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1305096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1305128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1305152 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1305176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1307080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1307104 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1307128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1309032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1309056 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1309080 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1310984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1311008 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1311032 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1312936 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1312960 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1312984 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1313016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1313040 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1313064 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1313096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1313120 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1313144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1313176 + }, + { + "buffer": 0, + "byteLength": 456, + "byteOffset": 1313200 + }, + { + "buffer": 0, + "byteLength": 1368, + "byteOffset": 1313656 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1315024 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 1316848 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1316856 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1316880 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1316904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1318728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1318752 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1318776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1320600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1320624 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1320648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1322472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1322496 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1322520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1324344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1324368 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1324392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326240 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326320 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326400 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326480 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326536 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326560 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326640 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1326664 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1326720 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1326744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1328568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1328592 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1328616 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1330440 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1330464 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1330488 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1332312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1332336 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1332360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334208 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1334232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334264 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334288 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1334312 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334368 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1334392 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334448 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1334472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334528 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1334552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334584 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1334608 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1334632 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1336456 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1336480 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1336504 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1338328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1338352 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1338376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340224 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1340248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340304 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1340328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340360 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1340384 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1340408 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1342232 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1342256 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1342280 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1344104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1344128 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1344152 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1345976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1346000 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1346024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1346056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1346080 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1346104 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1346136 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1346160 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1346184 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1348008 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1348032 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1348056 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1349880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1349904 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1349928 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351752 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351776 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1351800 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351856 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1351880 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351912 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1351936 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1351960 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1353784 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1353808 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1353832 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1355656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1355680 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1355704 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357528 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357552 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1357576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357632 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1357656 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357688 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1357712 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1357736 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1359560 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1359584 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1359608 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1361432 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1361456 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1361480 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1363304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1363328 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1363352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365200 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1365224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365256 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365280 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1365304 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365336 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365360 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1365384 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365416 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365440 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1365464 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365520 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1365544 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365576 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1365600 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1365624 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1367448 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1367472 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1367496 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1369320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1369344 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1369368 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371192 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371216 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1371240 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371296 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1371320 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371352 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1371376 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1371400 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1373224 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1373248 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1373272 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1375096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1375120 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1375144 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1376968 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1376992 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1377016 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1377048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1377072 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1377096 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1377128 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1377152 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1377176 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1379000 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1379024 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1379048 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1380872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1380896 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1380920 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382744 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382768 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1382792 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382848 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1382872 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382904 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1382928 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1382952 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1384776 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1384800 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1384824 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1386648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1386672 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1386696 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388520 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388544 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1388568 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388624 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1388648 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388680 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1388704 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1388728 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1390552 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1390576 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1390600 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1392424 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1392448 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1392472 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1394296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1394320 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1394344 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396168 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396192 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1396216 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396272 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1396296 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396328 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1396352 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1396376 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1398200 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1398224 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1398248 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1400072 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1400096 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1400120 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1401944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1401968 + }, + { + "buffer": 0, + "byteLength": 1824, + "byteOffset": 1401992 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1403816 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1403840 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1403864 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1403896 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1403920 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1403944 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1403976 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1404000 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1404024 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1404056 + }, + { + "buffer": 0, + "byteLength": 1428, + "byteOffset": 1404080 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1405508 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1407412 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1407436 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1407460 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1409364 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1409388 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1409412 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1411316 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1411340 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1411364 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1413268 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1413292 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1413316 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1415220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1415244 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1415268 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417172 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417196 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417252 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417276 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417300 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417332 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417356 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417380 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417412 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417436 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417460 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417492 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417516 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417540 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417572 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417596 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1417620 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1417676 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1417700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1419604 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1419628 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1419652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1421556 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1421580 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1421604 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1423508 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1423532 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1423556 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1425460 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1425484 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1425508 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427412 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427436 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1427460 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427492 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427516 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1427540 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427572 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427596 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1427620 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427676 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1427700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1427756 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1427780 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1429684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1429708 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1429732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1431636 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1431660 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1431684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433588 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433612 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1433636 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433668 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433692 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1433716 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1433772 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1433796 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1435700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1435724 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1435748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1437652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1437676 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1437700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439604 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439628 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1439652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439708 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1439732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439764 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1439788 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1439812 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1441716 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1441740 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1441764 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1443668 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1443692 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1443716 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445620 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445644 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1445668 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445724 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1445748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445780 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1445804 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1445828 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1447732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1447756 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1447780 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1449684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1449708 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1449732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451636 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451660 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1451684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451716 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451740 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1451764 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451796 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1451820 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1451844 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1453748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1453772 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1453796 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1455700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1455724 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1455748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1457652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1457676 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1457700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459604 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459628 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1459652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459708 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1459732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459764 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459788 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1459812 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459844 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459868 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1459892 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1459948 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1459972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1460004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1460028 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1460052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1461956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1461980 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1462004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1463908 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1463932 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1463956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1465860 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1465884 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1465908 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1465940 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1465964 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1465988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1466020 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1466044 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1466068 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1467972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1467996 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1468020 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1469924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1469948 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1469972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1471876 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1471900 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1471924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1471956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1471980 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1472004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1472036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1472060 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1472084 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1473988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1474012 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1474036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1475940 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1475964 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1475988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1477892 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1477916 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1477940 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1477972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1477996 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1478020 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1478052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1478076 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1478100 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1480004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1480028 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1480052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1481956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1481980 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1482004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1483908 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1483932 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1483956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1483988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1484012 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1484036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1484068 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1484092 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1484116 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1486020 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1486044 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1486068 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1487972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1487996 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1488020 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1489924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1489948 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1489972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1491876 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1491900 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1491924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1491956 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1491980 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1492004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1492036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1492060 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1492084 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1493988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1494012 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1494036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1495940 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1495964 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1495988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1497892 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1497916 + }, + { + "buffer": 0, + "byteLength": 1904, + "byteOffset": 1497940 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1499844 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1499868 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1499892 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1499924 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1499948 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1499972 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1500004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1500028 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1500052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1500084 + }, + { + "buffer": 0, + "byteLength": 372, + "byteOffset": 1500108 + }, + { + "buffer": 0, + "byteLength": 1116, + "byteOffset": 1500480 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1501596 + }, + { + "buffer": 0, + "byteLength": 8, + "byteOffset": 1503084 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1503092 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1503116 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1503140 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1504628 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1504652 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1504676 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1506164 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1506188 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1506212 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1507700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1507724 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1507748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1509236 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1509260 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1509284 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510772 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510796 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1510820 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510852 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510876 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1510900 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510932 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1510956 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1510980 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511012 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511036 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1511060 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511092 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511116 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1511140 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511172 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511196 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1511220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511252 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1511276 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1511300 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1512788 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1512812 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1512836 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1514324 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1514348 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1514372 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1515860 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1515884 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1515908 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1517396 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1517420 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1517444 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1518932 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1518956 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1518980 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1520468 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1520492 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1520516 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522028 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1522052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522084 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522108 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1522132 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522164 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1522188 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1522212 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1523700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1523724 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1523748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1525236 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1525260 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1525284 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526772 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526796 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1526820 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526852 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526876 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1526900 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526932 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1526956 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1526980 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1528468 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1528492 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1528516 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1530004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1530028 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1530052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531540 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531564 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1531588 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531620 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531644 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1531668 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531700 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1531724 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1531748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1533236 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1533260 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1533284 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1534772 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1534796 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1534820 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536308 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536332 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1536356 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536388 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536412 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1536436 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536468 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1536492 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1536516 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1538004 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1538028 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1538052 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1539540 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1539564 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1539588 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541076 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541100 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1541124 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541156 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541180 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1541204 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541236 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1541260 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1541284 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1542772 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1542796 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1542820 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1544308 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1544332 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1544356 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1545844 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1545868 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1545892 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1547380 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1547404 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1547428 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1548916 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1548940 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1548964 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1550452 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1550476 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1550500 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1551988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1552012 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1552036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1552068 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1552092 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1552116 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1552148 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1552172 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1552196 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1553684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1553708 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1553732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1555220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1555244 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1555268 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556756 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556780 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1556804 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556836 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556860 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1556884 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556916 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1556940 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1556964 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1558452 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1558476 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1558500 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1559988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1560012 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1560036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561524 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561548 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1561572 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561604 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561628 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1561652 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561684 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1561708 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1561732 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1563220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1563244 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1563268 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1564756 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1564780 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1564804 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566292 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566316 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1566340 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566372 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566396 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1566420 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566452 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1566476 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1566500 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1567988 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1568012 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1568036 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1569524 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1569548 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1569572 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571060 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571084 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1571108 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571140 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571164 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1571188 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571220 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1571244 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1571268 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1572756 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1572780 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1572804 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1574292 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1574316 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1574340 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1575828 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1575852 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1575876 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577364 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577388 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1577412 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577444 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577468 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1577492 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577524 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1577548 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1577572 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1579060 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1579084 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1579108 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1580596 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1580620 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1580644 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1582132 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1582156 + }, + { + "buffer": 0, + "byteLength": 1488, + "byteOffset": 1582180 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583668 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583692 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1583716 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583748 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583772 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1583796 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583828 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583852 + }, + { + "buffer": 0, + "byteLength": 32, + "byteOffset": 1583876 + }, + { + "buffer": 0, + "byteLength": 24, + "byteOffset": 1583908 + }, + { + "buffer": 0, + "byteLength": 5248, + "byteOffset": 1583932 + } + ], + "buffers": [ + { + "uri": "animations_data.bin", + "byteLength": 1589180 + } + ] +} \ No newline at end of file diff --git a/apps/frontend/public/models/animations_data.bin b/apps/frontend/public/models/animations_data.bin new file mode 100644 index 0000000000000000000000000000000000000000..aa2c1a1541a718692d3b6565dcc2a2bb6610df81 --- /dev/null +++ b/apps/frontend/public/models/animations_data.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0935619b6f15ab9d4031484070c7fc33d6a1ab66e7f54ae552f3b53dbb0538c8 +size 1589180 diff --git a/apps/frontend/public/models/avatar.fbx b/apps/frontend/public/models/avatar.fbx new file mode 100644 index 0000000000000000000000000000000000000000..c9cae009049ef48db77031ca203729d5f2edb6fe --- /dev/null +++ b/apps/frontend/public/models/avatar.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98df5bd002cee7061474a93464c5eab7b40b37e9b813ebee76cb6d989ad2e28b +size 2297820 diff --git a/apps/frontend/public/models/avatar.glb b/apps/frontend/public/models/avatar.glb new file mode 100644 index 0000000000000000000000000000000000000000..c33ae40567930ac556d5d54439d63eee339f284e --- /dev/null +++ b/apps/frontend/public/models/avatar.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d17376b82683e5836558a9d71d6e560987a2c183549cffa8fe1d17bbce3d35 +size 1055004 diff --git a/apps/frontend/public/vite.svg b/apps/frontend/public/vite.svg new file mode 100644 index 0000000000000000000000000000000000000000..e7b8dfb1b2a60bd50538bec9f876511b9cac21e3 --- /dev/null +++ b/apps/frontend/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/frontend/src/App.jsx b/apps/frontend/src/App.jsx new file mode 100644 index 0000000000000000000000000000000000000000..04b823e11f6916fbf73ca4c5152142ace49fe102 --- /dev/null +++ b/apps/frontend/src/App.jsx @@ -0,0 +1,30 @@ +import React from "react"; +import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; +import { AuthProvider } from "./contexts/AuthContext"; +import PrivateRoute from "./components/PrivateRoute"; +import AvatarSession from "./components/AvatarSession"; +import Login from "./pages/Login"; +import Signup from "./pages/Signup"; + +function App() { + return ( + + + + + + + } + /> + } /> + } /> + + + + ); +} + +export default App; diff --git a/apps/frontend/src/components/Avatar.jsx b/apps/frontend/src/components/Avatar.jsx new file mode 100644 index 0000000000000000000000000000000000000000..a6a83f8bb15c857b4620a8f940b3bf10c8d9b8c8 --- /dev/null +++ b/apps/frontend/src/components/Avatar.jsx @@ -0,0 +1,450 @@ +import { useAnimations, useGLTF, Html } from "@react-three/drei"; +import { useFrame } from "@react-three/fiber"; +import { button, useControls } from "leva"; +import React, { useEffect, useRef, useState } from "react"; + +import * as THREE from "three"; +import { useSpeech } from "../hooks/useSpeech"; +import facialExpressions from "../constants/facialExpressions"; +import visemesMapping from "../constants/visemesMapping"; +import morphTargets from "../constants/morphTargets"; + +export function Avatar(props) { + const { nodes, materials, scene } = useGLTF("/models/avatar.glb"); + const { animations } = useGLTF("/models/animations.glb"); + + useEffect(() => { + console.log("GLTF Nodes available:", Object.keys(nodes)); + console.log("GLTF Materials available:", Object.keys(materials)); + }, [nodes, materials]); + const { message, onMessagePlayed } = useSpeech(); + const [lipsync, setLipsync] = useState(); + const [setupMode, setSetupMode] = useState(false); + + // Customize avatar to look like a doctor + if (nodes.Wolf3D_Head && nodes.Wolf3D_Head.morphTargetDictionary) { + console.log("Morph Targets available:", Object.keys(nodes.Wolf3D_Head.morphTargetDictionary)); + } + + // Customize avatar to look like a doctor - COMMENTED OUT to fix "shape changed" issue + /* + if (materials) { + // White doctor coat + if (materials.Wolf3D_Outfit_Top) { + materials.Wolf3D_Outfit_Top.color.set('#f8f9fa'); + } + // Dark professional pants + if (materials.Wolf3D_Outfit_Bottom) { + materials.Wolf3D_Outfit_Bottom.color.set('#2c3e50'); + } + // Professional shoes + if (materials.Wolf3D_Outfit_Footwear) { + materials.Wolf3D_Outfit_Footwear.color.set('#1a1a1a'); + } + } + */ + + useEffect(() => { + if (!message) { + setAnimation("Idle"); + setLipsync(null); + return; + } + + console.log("๐ŸŽต New message received:", message.text); + setAnimation("Idle"); + setFacialExpression(""); + setLipsync(message.lipsync); + + // Create and play audio + const audioBlob = new Blob([Uint8Array.from(atob(message.audio), c => c.charCodeAt(0))], { type: 'audio/mp3' }); + const audioUrl = URL.createObjectURL(audioBlob); + const audioElement = new Audio(audioUrl); + + audioElement.onloadeddata = () => { + console.log(`๐ŸŽต Audio loaded, duration: ${audioElement.duration}s`); + console.log(`๐Ÿ‘„ Lip sync cues: ${message.lipsync?.mouthCues?.length || 0}`); + + // Try to play immediately + audioElement.play().catch(err => { + console.error("โŒ Failed to play audio (Autoplay blocked?):", err); + setAudioBlocked(true); + setLastError(err.message); + }); + }; + + audioElement.onplay = () => { + console.log("โ–ถ๏ธ Audio started playing"); + }; + + audioElement.ontimeupdate = () => { + // Occasional logging to verify audio is playing + if (Math.random() < 0.05) { + console.log(`โฑ๏ธ Audio time: ${audioElement.currentTime.toFixed(2)}s / ${audioElement.duration.toFixed(2)}s`); + } + }; + + audioElement.onended = () => { + console.log("โน๏ธ Audio playback ended"); + onMessagePlayed(); + }; + + audioElement.onerror = (e) => { + console.error("โŒ Audio error:", e); + }; + + // Play the audio + audioElement.play().catch(err => { + console.error("โŒ Failed to play audio:", err); + }); + + setAudio(audioElement); + + // Cleanup + return () => { + if (audioElement) { + audioElement.pause(); + audioElement.src = ""; + } + }; + }, [message, onMessagePlayed]); + + + const group = useRef(); + const { actions, mixer } = useAnimations(animations, group); + const [animation, setAnimation] = useState(animations.find((a) => a.name === "Idle") ? "Idle" : animations[0].name); + useEffect(() => { + // Animation disabled to prevent distortion (long neck/eyes) + /* + if (actions[animation]) { + actions[animation] + .reset() + .fadeIn(mixer.stats.actions.inUse === 0 ? 0 : 0.5) + .play(); + + // FREEZE BODY MOVEMENT: Keep the pose but stop the animation (breathing, swaying) + actions[animation].timeScale = 0; + + return () => { + if (actions[animation]) { + actions[animation].fadeOut(0.5); + } + }; + } + */ + }, [animation]); + + const lerpMorphTarget = (target, value, speed = 0.1) => { + let targetFound = false; + scene.traverse((child) => { + if (child.isSkinnedMesh && child.morphTargetDictionary) { + const index = child.morphTargetDictionary[target]; + if (index === undefined || child.morphTargetInfluences[index] === undefined) { + return; + } + targetFound = true; + child.morphTargetInfluences[index] = THREE.MathUtils.lerp(child.morphTargetInfluences[index], value, speed); + } + }); + + // Debug: warn if morph target not found (only in development) + if (!targetFound && value > 0 && import.meta.env.DEV) { + console.warn(`โš ๏ธ Morph target not found: "${target}"`); + } + }; + + const [blink, setBlink] = useState(false); + const [facialExpression, setFacialExpression] = useState(""); + const [audio, setAudio] = useState(); + const [audioBlocked, setAudioBlocked] = useState(false); + const [lastError, setLastError] = useState(""); + + const handlePlayAudio = () => { + if (audio) { + audio.play().then(() => { + setAudioBlocked(false); + setLastError(""); + }).catch(err => { + console.error("Still failed to play audio:", err); + setLastError(err.message); + }); + } + }; + + useFrame(() => { + // 1. Calculate Lip Sync Targets first + const appliedMorphTargets = []; + + // Fallback mapping for avatars that lack specific visemes (using ARKit blendshapes) + // We prioritize these ARKit shapes as they usually look better/open wider + const morphTargetFallbacks = { + viseme_PP: ["mouthClose", "mouthPucker"], // P, B, M - lips together + viseme_aa: ["jawOpen", "mouthOpen"], // AA - open mouth, jaw down + viseme_O: ["mouthFunnel", "jawOpen"], // O - rounded lips + viseme_U: ["mouthPucker", "mouthFunnel"], // U - pursed lips + viseme_I: ["mouthSmile", "jawOpen"], // I - smile with slight opening + viseme_TH: ["mouthOpen", "jawOpen"], // TH - tongue between teeth + viseme_kk: ["jawOpen", "mouthOpen"], // K, G - back of throat + viseme_FF: ["mouthUpperUpLeft", "mouthUpperUpRight"], // F, V - teeth on lower lip + viseme_DD: ["jawOpen", "mouthOpen"], // D, T - tongue at teeth + viseme_nn: ["mouthClose", "jawOpen"], // N - nasal sound + viseme_RR: ["mouthOpen", "mouthFunnel"], // R - slight pucker + viseme_SS: ["mouthSmile", "mouthDimpleLeft", "mouthDimpleRight"], // S - teeth together, smile + viseme_sil: ["mouthClose"], // Silence + viseme_CH: ["mouthSmile", "mouthFunnel"], // CH, J - lips forward + viseme_E: ["mouthSmile", "jawOpen"], // E - wide smile + }; + + if (message && lipsync && audio && !audio.paused && !audio.ended) { + const currentAudioTime = audio.currentTime; + for (let i = 0; i < lipsync.mouthCues.length; i++) { + const mouthCue = lipsync.mouthCues[i]; + if (currentAudioTime >= mouthCue.start && currentAudioTime <= mouthCue.end) { + const primaryTarget = visemesMapping[mouthCue.value]; + + // Priority: Check Fallbacks (ARKit) FIRST, then Primary (Viseme) + if (primaryTarget && morphTargetFallbacks[primaryTarget]) { + for (const fallback of morphTargetFallbacks[primaryTarget]) { + if (nodes.Wolf3D_Head.morphTargetDictionary && nodes.Wolf3D_Head.morphTargetDictionary[fallback] !== undefined) { + appliedMorphTargets.push(fallback); + } + } + } + + // If no fallbacks used, check primary + if (appliedMorphTargets.length === 0 && primaryTarget && nodes.Wolf3D_Head.morphTargetDictionary && nodes.Wolf3D_Head.morphTargetDictionary[primaryTarget] !== undefined) { + appliedMorphTargets.push(primaryTarget); + } + + break; + } + } + } + + // 2. Apply Facial Expressions (but DON'T reset active lip sync targets) + !setupMode && + morphTargets.forEach((key) => { + // Skip if this key is being driven by lip sync + if (appliedMorphTargets.includes(key)) return; + + const mapping = facialExpressions[facialExpression]; + if (key === "eyeBlinkLeft" || key === "eyeBlinkRight") { + return; // eyes wink/blink are handled separately + } + if (mapping && mapping[key]) { + lerpMorphTarget(key, mapping[key], 0.1); + } else { + lerpMorphTarget(key, 0, 0.1); + } + }); + + lerpMorphTarget("eyeBlinkLeft", blink ? 1 : 0, 0.5); + lerpMorphTarget("eyeBlinkRight", blink ? 1 : 0, 0.5); + + if (setupMode) { + return; + } + + // 3. Apply Lip Sync Targets (with higher intensity) + appliedMorphTargets.forEach(target => { + lerpMorphTarget(target, 1, 0.8); // Increased speed/intensity + }); + + // Reset all other visemes to 0 + Object.values(visemesMapping).forEach((value) => { + if (appliedMorphTargets.includes(value)) { + return; + } + // We don't need to reset here because the facial expression loop above already resets everything not in appliedMorphTargets! + }); + }); + + useControls("FacialExpressions", { + animation: { + value: animation, + options: animations.map((a) => a.name), + onChange: (value) => setAnimation(value), + }, + facialExpression: { + options: Object.keys(facialExpressions), + onChange: (value) => setFacialExpression(value), + }, + setupMode: button(() => { + setSetupMode(!setupMode); + }), + logMorphTargetValues: button(() => { + const emotionValues = {}; + Object.values(nodes).forEach((node) => { + if (node.morphTargetInfluences && node.morphTargetDictionary) { + morphTargets.forEach((key) => { + if (key === "eyeBlinkLeft" || key === "eyeBlinkRight") { + return; + } + const value = node.morphTargetInfluences[node.morphTargetDictionary[key]]; + if (value > 0.01) { + emotionValues[key] = value; + } + }); + } + }); + console.log(JSON.stringify(emotionValues, null, 2)); + }), + }); + + useControls("MorphTarget", () => + Object.assign( + {}, + ...morphTargets.map((key) => { + return { + [key]: { + label: key, + value: 0, + min: 0, + max: 1, + onChange: (val) => { + lerpMorphTarget(key, val, 0.1); + }, + }, + }; + }) + ) + ); + + useEffect(() => { + // Blinking disabled + setBlink(false); + }, []); + + return ( + + {nodes.Hips && } + {nodes.EyeLeft && ( + + )} + {nodes.EyeRight && ( + + )} + {nodes.Wolf3D_Head && ( + + )} + {nodes.Wolf3D_Teeth && ( + + )} + {nodes.Wolf3D_Glasses && ( + + )} + {nodes.Wolf3D_Headwear && ( + + )} + {nodes.Wolf3D_Hair && ( + + )} + {nodes.Wolf3D_Beard && ( + + )} + {nodes.Wolf3D_Body && ( + + )} + {nodes.Wolf3D_Outfit_Bottom && ( + + )} + {nodes.Wolf3D_Outfit_Footwear && ( + + )} + {nodes.Wolf3D_Outfit_Top && ( + + )} + {audioBlocked && ( + +
+ +
+ {lastError} +
+
+ + )} +
+ ); +} + +useGLTF.preload("/models/avatar.glb"); diff --git a/apps/frontend/src/components/AvatarSession.jsx b/apps/frontend/src/components/AvatarSession.jsx new file mode 100644 index 0000000000000000000000000000000000000000..0d936e06b640e657dff80c4928c371c65e7c9d6a --- /dev/null +++ b/apps/frontend/src/components/AvatarSession.jsx @@ -0,0 +1,23 @@ +import { Loader } from "@react-three/drei"; +import { Canvas } from "@react-three/fiber"; +import { Leva } from "leva"; +import { Scenario } from "./Scenario"; +import { ChatInterface } from "./ChatInterface"; +import ErrorBoundary from "./ErrorBoundary"; + +export default function AvatarSession() { + return ( + + + + ); +} diff --git a/apps/frontend/src/components/ChatInterface.jsx b/apps/frontend/src/components/ChatInterface.jsx new file mode 100644 index 0000000000000000000000000000000000000000..8eb445dbc5d89ef609258de5e73a12f21957c7d6 --- /dev/null +++ b/apps/frontend/src/components/ChatInterface.jsx @@ -0,0 +1,100 @@ +import { useRef } from "react"; +import { useSpeech } from "../hooks/useSpeech"; +import { useAuth } from "../contexts/AuthContext"; +import { useNavigate } from "react-router-dom"; + +export const ChatInterface = ({ hidden, ...props }) => { + const input = useRef(); + const { tts, loading, message, startRecording, stopRecording, recording } = useSpeech(); + const { currentUser, logout } = useAuth(); + const navigate = useNavigate(); + + const handleLogout = async () => { + try { + await logout(); + navigate("/login"); + } catch (error) { + console.error("Failed to log out", error); + } + }; + + const sendMessage = () => { + const text = input.current.value; + const userId = currentUser ? currentUser.uid : "demo_user_123"; + + if (!loading && !message) { + tts(text, userId); + input.current.value = ""; + } + }; + + if (hidden) { + return null; + } + + return ( +
+
+
+

+ {currentUser?.displayName ? `Hello, ${currentUser.displayName} ๐Ÿ‘‹` : "Dr. HealBot ๐Ÿฉบ"} +

+

+ {loading ? "Thinking..." : "Your AI Medical Assistant"} +

+
+ +
+ +
+
+
+ + + { + if (e.key === "Enter") { + sendMessage(); + } + }} + /> + +
+
+
+ ); +}; diff --git a/apps/frontend/src/components/ErrorBoundary.jsx b/apps/frontend/src/components/ErrorBoundary.jsx new file mode 100644 index 0000000000000000000000000000000000000000..3d9984cdfec276cc19075b0d454f059e484f6f10 --- /dev/null +++ b/apps/frontend/src/components/ErrorBoundary.jsx @@ -0,0 +1,32 @@ +import React from 'react'; + +class ErrorBoundary extends React.Component { + constructor(props) { + super(props); + this.state = { hasError: false, error: null }; + } + + static getDerivedStateFromError(error) { + return { hasError: true, error }; + } + + componentDidCatch(error, errorInfo) { + console.error('Error caught by boundary:', error, errorInfo); + } + + render() { + if (this.state.hasError) { + return ( +
+

Something went wrong

+

{this.state.error?.message}

+ +
+ ); + } + + return this.props.children; + } +} + +export default ErrorBoundary; diff --git a/apps/frontend/src/components/PrivateRoute.jsx b/apps/frontend/src/components/PrivateRoute.jsx new file mode 100644 index 0000000000000000000000000000000000000000..650669e18fd724d857e7a6501623d680a0224dd6 --- /dev/null +++ b/apps/frontend/src/components/PrivateRoute.jsx @@ -0,0 +1,9 @@ +import React from "react"; +import { Navigate } from "react-router-dom"; +import { useAuth } from "../contexts/AuthContext"; + +export default function PrivateRoute({ children }) { + const { currentUser } = useAuth(); + + return currentUser ? children : ; +} diff --git a/apps/frontend/src/components/Scenario.jsx b/apps/frontend/src/components/Scenario.jsx new file mode 100644 index 0000000000000000000000000000000000000000..5b5155add603028fac781b7abf470b8948f22834 --- /dev/null +++ b/apps/frontend/src/components/Scenario.jsx @@ -0,0 +1,17 @@ +import { CameraControls, Environment } from "@react-three/drei"; +import { useEffect, useRef } from "react"; +import { Avatar } from "./Avatar"; + +export const Scenario = () => { + const cameraControls = useRef(); + useEffect(() => { + cameraControls.current.setLookAt(0, 2.2, 5, 0, 1.0, 0, true); + }, []); + return ( + <> + + + + + ); +}; diff --git a/apps/frontend/src/constants/facialExpressions.js b/apps/frontend/src/constants/facialExpressions.js new file mode 100644 index 0000000000000000000000000000000000000000..73da20dbc57efa811cdbbaa0b06f815bbf7e5871 --- /dev/null +++ b/apps/frontend/src/constants/facialExpressions.js @@ -0,0 +1,82 @@ +const facialExpressions = { + default: {}, + smile: { + browInnerUp: 0.17, + eyeSquintLeft: 0.4, + eyeSquintRight: 0.44, + noseSneerLeft: 0.1700000727403593, + noseSneerRight: 0.14000002836874015, + mouthPressLeft: 0.61, + mouthPressRight: 0.41000000000000003, + }, + funnyFace: { + jawLeft: 0.63, + mouthPucker: 0.53, + noseSneerLeft: 1, + noseSneerRight: 0.39, + mouthLeft: 1, + eyeLookUpLeft: 1, + eyeLookUpRight: 1, + cheekPuff: 0.9999924982764238, + mouthDimpleLeft: 0.414743888682652, + mouthRollLower: 0.32, + mouthSmileLeft: 0.35499733688813034, + mouthSmileRight: 0.35499733688813034, + }, + sad: { + mouthFrownLeft: 1, + mouthFrownRight: 1, + mouthShrugLower: 0.78341, + browInnerUp: 0.452, + eyeSquintLeft: 0.72, + eyeSquintRight: 0.75, + eyeLookDownLeft: 0.5, + eyeLookDownRight: 0.5, + jawForward: 1, + }, + surprised: { + eyeWideLeft: 0.5, + eyeWideRight: 0.5, + jawOpen: 0, + mouthFunnel: 0.2, + browInnerUp: 1, + }, + angry: { + browDownLeft: 1, + browDownRight: 1, + eyeSquintLeft: 1, + eyeSquintRight: 1, + jawForward: 1, + jawLeft: 1, + mouthShrugLower: 1, + noseSneerLeft: 1, + noseSneerRight: 0.42, + eyeLookDownLeft: 0.16, + eyeLookDownRight: 0.16, + cheekSquintLeft: 1, + cheekSquintRight: 1, + mouthClose: 0.23, + mouthFunnel: 0.63, + mouthDimpleRight: 1, + }, + crazy: { + browInnerUp: 0.9, + jawForward: 1, + noseSneerLeft: 0.5700000000000001, + noseSneerRight: 0.51, + eyeLookDownLeft: 0.39435766259644545, + eyeLookUpRight: 0.4039761421719682, + eyeLookInLeft: 0.9618479575523053, + eyeLookInRight: 0.9618479575523053, + jawOpen: 0.9618479575523053, + mouthDimpleLeft: 0.9618479575523053, + mouthDimpleRight: 0.9618479575523053, + mouthStretchLeft: 0.27893590769016857, + mouthStretchRight: 0.2885543872656917, + mouthSmileLeft: 0.5578718153803371, + mouthSmileRight: 0.38473918302092225, + tongueOut: 0.9618479575523053, + }, +}; + +export default facialExpressions; diff --git a/apps/frontend/src/constants/morphTargets.js b/apps/frontend/src/constants/morphTargets.js new file mode 100644 index 0000000000000000000000000000000000000000..5113420aa5048c0fc88e1d8f626a5aedc9090fb2 --- /dev/null +++ b/apps/frontend/src/constants/morphTargets.js @@ -0,0 +1,73 @@ +const morphTargets = [ + "mouthOpen", + "viseme_sil", + "viseme_PP", + "viseme_FF", + "viseme_TH", + "viseme_DD", + "viseme_kk", + "viseme_CH", + "viseme_SS", + "viseme_nn", + "viseme_RR", + "viseme_aa", + "viseme_E", + "viseme_I", + "viseme_O", + "viseme_U", + "mouthSmile", + "browDownLeft", + "browDownRight", + "browInnerUp", + "browOuterUpLeft", + "browOuterUpRight", + "eyeSquintLeft", + "eyeSquintRight", + "eyeWideLeft", + "eyeWideRight", + "jawForward", + "jawLeft", + "jawRight", + "mouthFrownLeft", + "mouthFrownRight", + "mouthPucker", + "mouthShrugLower", + "mouthShrugUpper", + "noseSneerLeft", + "noseSneerRight", + "mouthLowerDownLeft", + "mouthLowerDownRight", + "mouthLeft", + "mouthRight", + "eyeLookDownLeft", + "eyeLookDownRight", + "eyeLookUpLeft", + "eyeLookUpRight", + "eyeLookInLeft", + "eyeLookInRight", + "eyeLookOutLeft", + "eyeLookOutRight", + "cheekPuff", + "cheekSquintLeft", + "cheekSquintRight", + "jawOpen", + "mouthClose", + "mouthFunnel", + "mouthDimpleLeft", + "mouthDimpleRight", + "mouthStretchLeft", + "mouthStretchRight", + "mouthRollLower", + "mouthRollUpper", + "mouthPressLeft", + "mouthPressRight", + "mouthUpperUpLeft", + "mouthUpperUpRight", + "mouthSmileLeft", + "mouthSmileRight", + "tongueOut", + "eyeBlinkLeft", + "eyeBlinkRight", +]; + +export default morphTargets; diff --git a/apps/frontend/src/constants/visemesMapping.js b/apps/frontend/src/constants/visemesMapping.js new file mode 100644 index 0000000000000000000000000000000000000000..c57a93ed6889bd51ab069c9fdbd31b4eaede1f8e --- /dev/null +++ b/apps/frontend/src/constants/visemesMapping.js @@ -0,0 +1,15 @@ +// Rhubarb Lip Sync outputs phonemes A-H and X +// This maps them to the morph targets available on the avatar model +const visemesMapping = { + A: "viseme_PP", // Silence/closed mouth (P, B, M sounds) + B: "viseme_kk", // K, G, ng sounds + C: "viseme_I", // I, EE sounds + D: "viseme_aa", // AA, AH, AE sounds (IMPORTANT: lowercase!) + E: "viseme_O", // O, OH sounds + F: "viseme_U", // U, OO sounds + G: "viseme_FF", // F, V sounds + H: "viseme_TH", // TH sounds + X: "viseme_sil", // Rest position (silence) - using sil instead of PP for variety +}; + +export default visemesMapping; \ No newline at end of file diff --git a/apps/frontend/src/contexts/AuthContext.jsx b/apps/frontend/src/contexts/AuthContext.jsx new file mode 100644 index 0000000000000000000000000000000000000000..07d092d9b35572fa5df859cc77fad58e765611c1 --- /dev/null +++ b/apps/frontend/src/contexts/AuthContext.jsx @@ -0,0 +1,77 @@ +import React, { useContext, useState, useEffect } from "react"; +import { auth, db } from "../firebase"; +import { + createUserWithEmailAndPassword, + signInWithEmailAndPassword, + signOut, + onAuthStateChanged, + updateProfile +} from "firebase/auth"; +import { doc, setDoc } from "firebase/firestore"; + +const AuthContext = React.createContext(); + +export function useAuth() { + return useContext(AuthContext); +} + +export function AuthProvider({ children }) { + const [currentUser, setCurrentUser] = useState(); + const [loading, setLoading] = useState(true); + + async function signup(email, password, name, username) { + const userCredential = await createUserWithEmailAndPassword(auth, email, password); + const user = userCredential.user; + + // Update Profile + await updateProfile(user, { + displayName: name + }); + + // Create User Document + try { + await setDoc(doc(db, "users", user.uid), { + uid: user.uid, + name: name, + username: username, + email: email, + createdAt: new Date().toISOString() + }); + } catch (error) { + console.error("Error writing user document: ", error); + // Continue even if DB write fails, as Auth is successful + } + + return userCredential; + } + + function login(email, password) { + return signInWithEmailAndPassword(auth, email, password); + } + + function logout() { + return signOut(auth); + } + + useEffect(() => { + const unsubscribe = onAuthStateChanged(auth, (user) => { + setCurrentUser(user); + setLoading(false); + }); + + return unsubscribe; + }, []); + + const value = { + currentUser, + login, + signup, + logout + }; + + return ( + + {!loading && children} + + ); +} diff --git a/apps/frontend/src/firebase.js b/apps/frontend/src/firebase.js new file mode 100644 index 0000000000000000000000000000000000000000..e47ff7924d2b4447c26f94da6092e4463113a2d0 --- /dev/null +++ b/apps/frontend/src/firebase.js @@ -0,0 +1,20 @@ +import { initializeApp } from "firebase/app"; +import { getAnalytics } from "firebase/analytics"; +import { getAuth } from "firebase/auth"; +import { getFirestore } from "firebase/firestore"; + +const firebaseConfig = { + apiKey: "AIzaSyCpitXOIAZKZ8udAE6UreUR7vN-czFs39M", + authDomain: "healbot-36975.firebaseapp.com", + projectId: "healbot-36975", + storageBucket: "healbot-36975.firebasestorage.app", + messagingSenderId: "676007096034", + appId: "1:676007096034:web:b00240a300f1ef205638bb", + measurementId: "G-M0JKZB5BC2" +}; + +// Initialize Firebase +const app = initializeApp(firebaseConfig); +const analytics = getAnalytics(app); +export const auth = getAuth(app); +export const db = getFirestore(app); diff --git a/apps/frontend/src/hooks/useSpeech.jsx b/apps/frontend/src/hooks/useSpeech.jsx new file mode 100644 index 0000000000000000000000000000000000000000..0e65662661ff1f0efe2c18ac911fc8d03eb5d4f8 --- /dev/null +++ b/apps/frontend/src/hooks/useSpeech.jsx @@ -0,0 +1,140 @@ +import { createContext, useContext, useEffect, useRef, useState } from "react"; + +const backendUrl = import.meta.env.VITE_API_URL || "http://localhost:3000"; + +const SpeechContext = createContext(); + +export const SpeechProvider = ({ children }) => { + const [recording, setRecording] = useState(false); + const [messages, setMessages] = useState([]); + const [message, setMessage] = useState(); + const [loading, setLoading] = useState(false); + const recognitionRef = useRef(null); + const userIdRef = useRef("demo_user_123"); + + const setUserId = (id) => { + userIdRef.current = id; + }; + + // Initialize Web Speech API + useEffect(() => { + if ('webkitSpeechRecognition' in window || 'SpeechRecognition' in window) { + const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; + const recognition = new SpeechRecognition(); + + recognition.continuous = false; + recognition.interimResults = false; + recognition.lang = 'en-US'; + + recognition.onresult = async (event) => { + const transcript = event.results[0][0].transcript; + console.log('๐ŸŽค Voice input:', transcript); + + // Send the transcribed text to TTS endpoint with current user ID + await tts(transcript, userIdRef.current); + }; + + recognition.onerror = (event) => { + console.error('Speech recognition error:', event.error); + setRecording(false); + if (event.error === 'no-speech') { + alert('No speech detected. Please try again.'); + } else if (event.error === 'not-allowed') { + alert('Microphone access denied. Please allow microphone access.'); + } else { + alert(`Voice recognition error: ${event.error}`); + } + }; + + recognition.onend = () => { + setRecording(false); + }; + + recognitionRef.current = recognition; + } else { + console.warn('Web Speech API not supported in this browser'); + } + }, []); + + const startRecording = async () => { + if (!recognitionRef.current) { + alert('Voice recognition is not supported in your browser. Please use Chrome, Edge, or Safari.'); + return; + } + + try { + setRecording(true); + recognitionRef.current.start(); + console.log('๐ŸŽค Listening...'); + } catch (err) { + console.error('Error starting recognition:', err); + setRecording(false); + alert('Failed to start voice recognition. Please try again.'); + } + }; + + const stopRecording = () => { + if (recognitionRef.current && recording) { + recognitionRef.current.stop(); + setRecording(false); + } + }; + + const tts = async (message, userId) => { + const effectiveUserId = userId || userIdRef.current || "demo_user_123"; + setLoading(true); + try { + const data = await fetch(`${backendUrl}/tts`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ message, userId: effectiveUserId }), + }); + const response = (await data.json()).messages; + setMessages((messages) => [...messages, ...response]); + } catch (error) { + console.error("TTS error:", error); + alert("Failed to get response. Please try again."); + } finally { + setLoading(false); + } + }; + + const onMessagePlayed = () => { + setMessages((messages) => messages.slice(1)); + }; + + useEffect(() => { + if (messages.length > 0) { + setMessage(messages[0]); + } else { + setMessage(null); + } + }, [messages]); + + return ( + + {children} + + ); +}; + +export const useSpeech = () => { + const context = useContext(SpeechContext); + if (!context) { + throw new Error("useSpeech must be used within a SpeechProvider"); + } + return context; +}; diff --git a/apps/frontend/src/index.css b/apps/frontend/src/index.css new file mode 100644 index 0000000000000000000000000000000000000000..d4ec0a8cc3de2e313ad5290a538636c86b544691 --- /dev/null +++ b/apps/frontend/src/index.css @@ -0,0 +1,18 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + --leva-sizes-rootWidth: 340px; +} + +#root { + width: 100vw; + height: 100vh; +} + +body { + margin: 0; + background-color: #060606; + background-image: linear-gradient(19deg, #060606 0%, #ddd6f3 100%); +} diff --git a/apps/frontend/src/main.jsx b/apps/frontend/src/main.jsx new file mode 100644 index 0000000000000000000000000000000000000000..ccb229b962005ba0e5018d527e1dab1b8a8bcb27 --- /dev/null +++ b/apps/frontend/src/main.jsx @@ -0,0 +1,13 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import App from "./App"; +import { SpeechProvider } from "./hooks/useSpeech"; +import "./index.css"; + +ReactDOM.createRoot(document.getElementById("root")).render( + + + + + +); diff --git a/apps/frontend/src/pages/Login.jsx b/apps/frontend/src/pages/Login.jsx new file mode 100644 index 0000000000000000000000000000000000000000..40954936875994bb2f97d121142ac398377db4c8 --- /dev/null +++ b/apps/frontend/src/pages/Login.jsx @@ -0,0 +1,118 @@ +import React, { useRef, useState } from "react"; +import { useAuth } from "../contexts/AuthContext"; +import { Link, useNavigate } from "react-router-dom"; + +export default function Login() { + const emailRef = useRef(); + const passwordRef = useRef(); + const { login } = useAuth(); + const [error, setError] = useState(""); + const [loading, setLoading] = useState(false); + const navigate = useNavigate(); + + async function handleSubmit(e) { + e.preventDefault(); + + try { + setError(""); + setLoading(true); + await login(emailRef.current.value, passwordRef.current.value); + navigate("/"); + } catch (err) { + console.error(err); + setError("Failed to log in: " + err.message); + } + + setLoading(false); + } + + return ( +
+
+
+

+ Welcome Back +

+

+ Sign in to access your digital avatar +

+
+ + {error && ( +
+ {error} +
+ )} + +
+
+
+ + +
+
+ + +
+
+ +
+ +
+
+ +
+

+ Don't have an account?{' '} + + Sign up + +

+
+
+
+ ); +} diff --git a/apps/frontend/src/pages/Signup.jsx b/apps/frontend/src/pages/Signup.jsx new file mode 100644 index 0000000000000000000000000000000000000000..057e7054eece8d5bb145e2d222e28a9c183c1778 --- /dev/null +++ b/apps/frontend/src/pages/Signup.jsx @@ -0,0 +1,170 @@ +import React, { useRef, useState } from "react"; +import { useAuth } from "../contexts/AuthContext"; +import { Link, useNavigate } from "react-router-dom"; + +export default function Signup() { + const emailRef = useRef(); + const passwordRef = useRef(); + const passwordConfirmRef = useRef(); + const nameRef = useRef(); + const usernameRef = useRef(); + const { signup } = useAuth(); + const [error, setError] = useState(""); + const [loading, setLoading] = useState(false); + const navigate = useNavigate(); + + async function handleSubmit(e) { + e.preventDefault(); + + if (passwordRef.current.value !== passwordConfirmRef.current.value) { + return setError("Passwords do not match"); + } + + try { + setError(""); + setLoading(true); + await signup(emailRef.current.value, passwordRef.current.value, nameRef.current.value, usernameRef.current.value); + navigate("/"); + } catch (err) { + console.error(err); + setError("Failed to create an account: " + err.message); + } + + setLoading(false); + } + + return ( +
+
+
+

+ Create Account +

+

+ Join the digital health revolution +

+
+ + {error && ( +
+ {error} +
+ )} + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+
+ +
+

+ Already have an account?{' '} + + Log in + +

+
+
+
+ ); +} diff --git a/apps/frontend/tailwind.config.js b/apps/frontend/tailwind.config.js new file mode 100644 index 0000000000000000000000000000000000000000..7f3ee98de81ba7b0a73c6fc92255710a8a0c98b2 --- /dev/null +++ b/apps/frontend/tailwind.config.js @@ -0,0 +1,12 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], + theme: { + extend: { + fontFamily: { + sans: ["Inter", "sans-serif"], + }, + }, + }, + plugins: [], +}; diff --git a/apps/frontend/vite.config.js b/apps/frontend/vite.config.js new file mode 100644 index 0000000000000000000000000000000000000000..5a33944a9b41b59a9cf06ee4bb5586c77510f06b --- /dev/null +++ b/apps/frontend/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/apps/frontend/yarn.lock b/apps/frontend/yarn.lock new file mode 100644 index 0000000000000000000000000000000000000000..0c38fd7a621ae12befce53f2929ab07afea12a70 --- /dev/null +++ b/apps/frontend/yarn.lock @@ -0,0 +1,2221 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + +"@ampproject/remapping@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== + dependencies: + "@babel/highlight" "^7.23.4" + chalk "^2.4.2" + +"@babel/compat-data@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" + integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== + +"@babel/core@^7.23.5": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.7.tgz#4d8016e06a14b5f92530a13ed0561730b5c6483f" + integrity sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.23.7" + "@babel/parser" "^7.23.6" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.7" + "@babel/types" "^7.23.6" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== + dependencies: + "@babel/types" "^7.23.6" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-plugin-utils@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + +"@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + +"@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helpers@^7.23.7": + version "7.23.8" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.8.tgz#fc6b2d65b16847fd50adddbd4232c76378959e34" + integrity sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ== + dependencies: + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.23.7" + "@babel/types" "^7.23.6" + +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.22.15", "@babel/parser@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" + integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== + +"@babel/parser@^7.20.7": + version "7.21.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3" + integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ== + +"@babel/plugin-transform-react-jsx-self@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz#ed3e7dadde046cce761a8e3cf003a13d1a7972d9" + integrity sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx-source@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz#03527006bdc8775247a78643c51d4e715fe39a3e" + integrity sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/runtime@^7.11.2", "@babel/runtime@^7.17.8": + version "7.21.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" + integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/runtime@^7.13.10": + version "7.23.1" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.1.tgz#72741dc4d413338a91dcb044a86f3c0bc402646d" + integrity sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/parser" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/traverse@^7.23.7": + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.7.tgz#9a7bf285c928cb99b5ead19c3b1ce5b310c9c305" + integrity sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.23.6" + "@babel/types" "^7.23.6" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" + integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + +"@babel/types@^7.20.7": + version "7.21.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.2.tgz#92246f6e00f91755893c2876ad653db70c8310d1" + integrity sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + +"@esbuild/aix-ppc64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz#2acd20be6d4f0458bc8c784103495ff24f13b1d3" + integrity sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g== + +"@esbuild/android-arm64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz#b45d000017385c9051a4f03e17078abb935be220" + integrity sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q== + +"@esbuild/android-arm@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.11.tgz#f46f55414e1c3614ac682b29977792131238164c" + integrity sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw== + +"@esbuild/android-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.11.tgz#bfc01e91740b82011ef503c48f548950824922b2" + integrity sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg== + +"@esbuild/darwin-arm64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz#533fb7f5a08c37121d82c66198263dcc1bed29bf" + integrity sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ== + +"@esbuild/darwin-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz#62f3819eff7e4ddc656b7c6815a31cf9a1e7d98e" + integrity sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g== + +"@esbuild/freebsd-arm64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz#d478b4195aa3ca44160272dab85ef8baf4175b4a" + integrity sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA== + +"@esbuild/freebsd-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz#7bdcc1917409178257ca6a1a27fe06e797ec18a2" + integrity sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw== + +"@esbuild/linux-arm64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz#58ad4ff11685fcc735d7ff4ca759ab18fcfe4545" + integrity sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg== + +"@esbuild/linux-arm@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz#ce82246d873b5534d34de1e5c1b33026f35e60e3" + integrity sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q== + +"@esbuild/linux-ia32@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz#cbae1f313209affc74b80f4390c4c35c6ab83fa4" + integrity sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA== + +"@esbuild/linux-loong64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz#5f32aead1c3ec8f4cccdb7ed08b166224d4e9121" + integrity sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg== + +"@esbuild/linux-mips64el@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz#38eecf1cbb8c36a616261de858b3c10d03419af9" + integrity sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg== + +"@esbuild/linux-ppc64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz#9c5725a94e6ec15b93195e5a6afb821628afd912" + integrity sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA== + +"@esbuild/linux-riscv64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz#2dc4486d474a2a62bbe5870522a9a600e2acb916" + integrity sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ== + +"@esbuild/linux-s390x@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz#4ad8567df48f7dd4c71ec5b1753b6f37561a65a8" + integrity sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q== + +"@esbuild/linux-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz#b7390c4d5184f203ebe7ddaedf073df82a658766" + integrity sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA== + +"@esbuild/netbsd-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz#d633c09492a1721377f3bccedb2d821b911e813d" + integrity sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ== + +"@esbuild/openbsd-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz#17388c76e2f01125bf831a68c03a7ffccb65d1a2" + integrity sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw== + +"@esbuild/sunos-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz#e320636f00bb9f4fdf3a80e548cb743370d41767" + integrity sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ== + +"@esbuild/win32-arm64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz#c778b45a496e90b6fc373e2a2bb072f1441fe0ee" + integrity sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ== + +"@esbuild/win32-ia32@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz#481a65fee2e5cce74ec44823e6b09ecedcc5194c" + integrity sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg== + +"@esbuild/win32-x64@0.19.11": + version "0.19.11" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz#a5d300008960bb39677c46bf16f53ec70d8dee04" + integrity sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw== + +"@floating-ui/core@^1.4.2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.0.tgz#5c05c60d5ae2d05101c3021c1a2a350ddc027f8c" + integrity sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg== + dependencies: + "@floating-ui/utils" "^0.1.3" + +"@floating-ui/dom@^1.5.1": + version "1.5.3" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.5.3.tgz#54e50efcb432c06c23cd33de2b575102005436fa" + integrity sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA== + dependencies: + "@floating-ui/core" "^1.4.2" + "@floating-ui/utils" "^0.1.3" + +"@floating-ui/react-dom@^2.0.0": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.2.tgz#fab244d64db08e6bed7be4b5fcce65315ef44d20" + integrity sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ== + dependencies: + "@floating-ui/dom" "^1.5.1" + +"@floating-ui/utils@^0.1.3": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9" + integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A== + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@mediapipe/tasks-vision@0.10.8": + version "0.10.8" + resolved "https://registry.yarnpkg.com/@mediapipe/tasks-vision/-/tasks-vision-0.10.8.tgz#a78e137018a19933b7a1d0e887d553d4ab833d10" + integrity sha512-Rp7ll8BHrKB3wXaRFKhrltwZl1CiXGdibPxuWXvqGnKTnv8fqa/nvftYNuSbf+pbJWKYCXdBtYTITdAUTGGh0Q== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@radix-ui/primitive@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.0.1.tgz#e46f9958b35d10e9f6dc71c497305c22e3e55dbd" + integrity sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-arrow@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz#c24f7968996ed934d57fe6cde5d6ec7266e1d25d" + integrity sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + +"@radix-ui/react-compose-refs@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz#7ed868b66946aa6030e580b1ffca386dd4d21989" + integrity sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-context@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.0.1.tgz#fe46e67c96b240de59187dcb7a1a50ce3e2ec00c" + integrity sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-dismissable-layer@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz#3f98425b82b9068dfbab5db5fff3df6ebf48b9d4" + integrity sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-escape-keydown" "1.0.3" + +"@radix-ui/react-id@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.0.1.tgz#73cdc181f650e4df24f0b6a5b7aa426b912c88c0" + integrity sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-layout-effect" "1.0.1" + +"@radix-ui/react-popper@1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.1.3.tgz#24c03f527e7ac348fabf18c89795d85d21b00b42" + integrity sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w== + dependencies: + "@babel/runtime" "^7.13.10" + "@floating-ui/react-dom" "^2.0.0" + "@radix-ui/react-arrow" "1.0.3" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-use-callback-ref" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" + "@radix-ui/react-use-rect" "1.0.1" + "@radix-ui/react-use-size" "1.0.1" + "@radix-ui/rect" "1.0.1" + +"@radix-ui/react-portal@1.0.4", "@radix-ui/react-portal@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.0.4.tgz#df4bfd353db3b1e84e639e9c63a5f2565fb00e15" + integrity sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + +"@radix-ui/react-presence@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.0.1.tgz#491990ba913b8e2a5db1b06b203cb24b5cdef9ba" + integrity sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-use-layout-effect" "1.0.1" + +"@radix-ui/react-primitive@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz#d49ea0f3f0b2fe3ab1cb5667eb03e8b843b914d0" + integrity sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-slot" "1.0.2" + +"@radix-ui/react-slot@1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.2.tgz#a9ff4423eade67f501ffb32ec22064bc9d3099ab" + integrity sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "1.0.1" + +"@radix-ui/react-tooltip@^1.0.5": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz#8f55070f852e7e7450cc1d9210b793d2e5a7686e" + integrity sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "1.0.1" + "@radix-ui/react-compose-refs" "1.0.1" + "@radix-ui/react-context" "1.0.1" + "@radix-ui/react-dismissable-layer" "1.0.5" + "@radix-ui/react-id" "1.0.1" + "@radix-ui/react-popper" "1.1.3" + "@radix-ui/react-portal" "1.0.4" + "@radix-ui/react-presence" "1.0.1" + "@radix-ui/react-primitive" "1.0.3" + "@radix-ui/react-slot" "1.0.2" + "@radix-ui/react-use-controllable-state" "1.0.1" + "@radix-ui/react-visually-hidden" "1.0.3" + +"@radix-ui/react-use-callback-ref@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz#f4bb1f27f2023c984e6534317ebc411fc181107a" + integrity sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-controllable-state@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz#ecd2ced34e6330caf89a82854aa2f77e07440286" + integrity sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "1.0.1" + +"@radix-ui/react-use-escape-keydown@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz#217b840c250541609c66f67ed7bab2b733620755" + integrity sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "1.0.1" + +"@radix-ui/react-use-layout-effect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz#be8c7bc809b0c8934acf6657b577daf948a75399" + integrity sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-rect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz#fde50b3bb9fd08f4a1cd204572e5943c244fcec2" + integrity sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/rect" "1.0.1" + +"@radix-ui/react-use-size@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz#1c5f5fea940a7d7ade77694bb98116fb49f870b2" + integrity sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-layout-effect" "1.0.1" + +"@radix-ui/react-visually-hidden@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz#51aed9dd0fe5abcad7dee2a234ad36106a6984ac" + integrity sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "1.0.3" + +"@radix-ui/rect@1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.0.1.tgz#bf8e7d947671996da2e30f4904ece343bc4a883f" + integrity sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ== + dependencies: + "@babel/runtime" "^7.13.10" + +"@react-spring/animated@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/animated/-/animated-9.6.1.tgz#ccc626d847cbe346f5f8815d0928183c647eb425" + integrity sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ== + dependencies: + "@react-spring/shared" "~9.6.1" + "@react-spring/types" "~9.6.1" + +"@react-spring/core@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/core/-/core-9.6.1.tgz#ebe07c20682b360b06af116ea24e2b609e778c10" + integrity sha512-3HAAinAyCPessyQNNXe5W0OHzRfa8Yo5P748paPcmMowZ/4sMfaZ2ZB6e5x5khQI8NusOHj8nquoutd6FRY5WQ== + dependencies: + "@react-spring/animated" "~9.6.1" + "@react-spring/rafz" "~9.6.1" + "@react-spring/shared" "~9.6.1" + "@react-spring/types" "~9.6.1" + +"@react-spring/rafz@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/rafz/-/rafz-9.6.1.tgz#d71aafb92b78b24e4ff84639f52745afc285c38d" + integrity sha512-v6qbgNRpztJFFfSE3e2W1Uz+g8KnIBs6SmzCzcVVF61GdGfGOuBrbjIcp+nUz301awVmREKi4eMQb2Ab2gGgyQ== + +"@react-spring/shared@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/shared/-/shared-9.6.1.tgz#4e2e4296910656c02bd9fd54c559702bc836ac4e" + integrity sha512-PBFBXabxFEuF8enNLkVqMC9h5uLRBo6GQhRMQT/nRTnemVENimgRd+0ZT4yFnAQ0AxWNiJfX3qux+bW2LbG6Bw== + dependencies: + "@react-spring/rafz" "~9.6.1" + "@react-spring/types" "~9.6.1" + +"@react-spring/three@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/three/-/three-9.6.1.tgz#095fcd1dc6509127c33c14486d88289b89baeb9d" + integrity sha512-Tyw2YhZPKJAX3t2FcqvpLRb71CyTe1GvT3V+i+xJzfALgpk10uPGdGaQQ5Xrzmok1340DAeg2pR/MCfaW7b8AA== + dependencies: + "@react-spring/animated" "~9.6.1" + "@react-spring/core" "~9.6.1" + "@react-spring/shared" "~9.6.1" + "@react-spring/types" "~9.6.1" + +"@react-spring/types@~9.6.1": + version "9.6.1" + resolved "https://registry.yarnpkg.com/@react-spring/types/-/types-9.6.1.tgz#913d3a68c5cbc1124fdb18eff919432f7b6abdde" + integrity sha512-POu8Mk0hIU3lRXB3bGIGe4VHIwwDsQyoD1F394OK7STTiX9w4dG3cTLljjYswkQN+hDSHRrj4O36kuVa7KPU8Q== + +"@react-three/drei@9.93.0": + version "9.93.0" + resolved "https://registry.yarnpkg.com/@react-three/drei/-/drei-9.93.0.tgz#85d352340fecb00017f3e4720f9e823947337723" + integrity sha512-G59IZqPzpIZPvVLmzdCITXJQB+mnKMtFv7FvSRFogeelLzOFkyfnkED9QiY0WQCBMFOFLnSx6vb5xzmbQjHyQA== + dependencies: + "@babel/runtime" "^7.11.2" + "@mediapipe/tasks-vision" "0.10.8" + "@react-spring/three" "~9.6.1" + "@use-gesture/react" "^10.2.24" + camera-controls "^2.4.2" + cross-env "^7.0.3" + detect-gpu "^5.0.28" + glsl-noise "^0.0.0" + lodash.clamp "^4.0.3" + lodash.omit "^4.5.0" + lodash.pick "^4.4.0" + maath "^0.10.7" + meshline "^3.1.6" + react-composer "^5.0.3" + react-merge-refs "^1.1.0" + stats-gl "^2.0.0" + stats.js "^0.17.0" + suspend-react "^0.1.3" + three-mesh-bvh "^0.6.7" + three-stdlib "^2.28.0" + troika-three-text "^0.47.2" + utility-types "^3.10.0" + uuid "^9.0.1" + zustand "^3.5.13" + +"@react-three/fiber@8.15.13": + version "8.15.13" + resolved "https://registry.yarnpkg.com/@react-three/fiber/-/fiber-8.15.13.tgz#f9a8746badc561912e9da52b9a1e0e82df7bb3f2" + integrity sha512-FS6F/k69q2KEf7nxdce1Rzd5qyp6VHtTgjouTMfiotWNiNwlhfQQeAxfcnDg0i2XVaOUGkLaD9BK8LBVnpfzUA== + dependencies: + "@babel/runtime" "^7.17.8" + "@types/react-reconciler" "^0.26.7" + "@types/webxr" "*" + base64-js "^1.5.1" + buffer "^6.0.3" + its-fine "^1.0.6" + react-reconciler "^0.27.0" + react-use-measure "^2.1.1" + scheduler "^0.21.0" + suspend-react "^0.1.3" + zustand "^3.7.1" + +"@react-three/xr@^5.7.1": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@react-three/xr/-/xr-5.7.1.tgz#ebba10f08047691f1ee18aa4bfbc1106cfebf811" + integrity sha512-GaRUSA+lE8VJF/NrXq7QQByZ4UGHbQQ4rs3QCphZs9fVidK86hGrMOQ0kL79gZc5pa3V5uFGlOhNcUdsTYE3Bg== + dependencies: + "@types/webxr" "*" + three-stdlib "^2.21.1" + zustand "^3.7.1" + +"@rollup/rollup-android-arm-eabi@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.5.tgz#b752b6c88a14ccfcbdf3f48c577ccc3a7f0e66b9" + integrity sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA== + +"@rollup/rollup-android-arm64@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.5.tgz#33757c3a448b9ef77b6f6292d8b0ec45c87e9c1a" + integrity sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg== + +"@rollup/rollup-darwin-arm64@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.5.tgz#5234ba62665a3f443143bc8bcea9df2cc58f55fb" + integrity sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w== + +"@rollup/rollup-darwin-x64@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.5.tgz#981256c054d3247b83313724938d606798a919d1" + integrity sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA== + +"@rollup/rollup-linux-arm-gnueabihf@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.5.tgz#120678a5a2b3a283a548dbb4d337f9187a793560" + integrity sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g== + +"@rollup/rollup-linux-arm64-gnu@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.5.tgz#c99d857e2372ece544b6f60b85058ad259f64114" + integrity sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA== + +"@rollup/rollup-linux-arm64-musl@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.5.tgz#3064060f568a5718c2a06858cd6e6d24f2ff8632" + integrity sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ== + +"@rollup/rollup-linux-riscv64-gnu@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.5.tgz#987d30b5d2b992fff07d055015991a57ff55fbad" + integrity sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA== + +"@rollup/rollup-linux-x64-gnu@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.5.tgz#85946ee4d068bd12197aeeec2c6f679c94978a49" + integrity sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA== + +"@rollup/rollup-linux-x64-musl@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.5.tgz#fe0b20f9749a60eb1df43d20effa96c756ddcbd4" + integrity sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg== + +"@rollup/rollup-win32-arm64-msvc@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.5.tgz#422661ef0e16699a234465d15b2c1089ef963b2a" + integrity sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ== + +"@rollup/rollup-win32-ia32-msvc@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.5.tgz#7b73a145891c202fbcc08759248983667a035d85" + integrity sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA== + +"@rollup/rollup-win32-x64-msvc@4.9.5": + version "4.9.5" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.5.tgz#10491ccf4f63c814d4149e0316541476ea603602" + integrity sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ== + +"@stitches/react@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.8.tgz#954f8008be8d9c65c4e58efa0937f32388ce3a38" + integrity sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA== + +"@types/babel__core@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd" + integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== + dependencies: + "@babel/types" "^7.20.7" + +"@types/draco3d@^1.4.0": + version "1.4.6" + resolved "https://registry.yarnpkg.com/@types/draco3d/-/draco3d-1.4.6.tgz#7214bf6c67afbc8637a57c49f2daa52b5d4c3268" + integrity sha512-tAyEGmnz6qcPqSWoHtO3tTobQCDW0tW36gVdDKyN0jkT2S2w6LABe0+DdVkfVDwNzTwR7cE7LQGiGJiAsdSNKg== + +"@types/estree@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + +"@types/offscreencanvas@^2019.6.4": + version "2019.7.0" + resolved "https://registry.yarnpkg.com/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz#e4a932069db47bb3eabeb0b305502d01586fa90d" + integrity sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/react-dom@^18.2.18": + version "18.2.18" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.18.tgz#16946e6cd43971256d874bc3d0a72074bb8571dd" + integrity sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw== + dependencies: + "@types/react" "*" + +"@types/react-reconciler@^0.26.7": + version "0.26.7" + resolved "https://registry.yarnpkg.com/@types/react-reconciler/-/react-reconciler-0.26.7.tgz#0c4643f30821ae057e401b0d9037e03e8e9b2a36" + integrity sha512-mBDYl8x+oyPX/VBb3E638N0B7xG+SPk/EAMcVPeexqus/5aTpTphQi0curhhshOqRrc9t6OPoJfEUkbymse/lQ== + dependencies: + "@types/react" "*" + +"@types/react-reconciler@^0.28.0": + version "0.28.2" + resolved "https://registry.yarnpkg.com/@types/react-reconciler/-/react-reconciler-0.28.2.tgz#f16b0e8cc4748af70ca975eaaace0d79582c71fa" + integrity sha512-8tu6lHzEgYPlfDf/J6GOQdIc+gs+S2yAqlby3zTsB3SP2svlqTYe5fwZNtZyfactP74ShooP2vvi1BOp9ZemWw== + dependencies: + "@types/react" "*" + +"@types/react@*": + version "18.0.28" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.28.tgz#accaeb8b86f4908057ad629a26635fe641480065" + integrity sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/react@^18.2.47": + version "18.2.47" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.47.tgz#85074b27ab563df01fbc3f68dc64bf7050b0af40" + integrity sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + +"@types/stats.js@*": + version "0.17.1" + resolved "https://registry.yarnpkg.com/@types/stats.js/-/stats.js-0.17.1.tgz#3066e95031f013b0e01d723fb7207c79fd75e6a0" + integrity sha512-OgfYE1x2w1jRUXzzKABX+kOdwz2y9PE0uSwnZabkWfJTWOzm7Pvfm4JI2xqRE0q2nwUe2jZLWcrcnhd9lQU63w== + +"@types/three@0.160.0": + version "0.160.0" + resolved "https://registry.yarnpkg.com/@types/three/-/three-0.160.0.tgz#7915a97e0a14ccaa9ccbb9f190c5730b04a23075" + integrity sha512-jWlbUBovicUKaOYxzgkLlhkiEQJkhCVvg4W2IYD2trqD2om3VK4DGLpHH5zQHNr7RweZK/5re/4IVhbhvxbV9w== + dependencies: + "@types/stats.js" "*" + "@types/webxr" "*" + fflate "~0.6.10" + meshoptimizer "~0.18.1" + +"@types/webxr@*", "@types/webxr@^0.5.2": + version "0.5.5" + resolved "https://registry.yarnpkg.com/@types/webxr/-/webxr-0.5.5.tgz#9e0a27e809c8f76cc1ef525d9f96b8fd94ef9c42" + integrity sha512-HVOsSRTQYx3zpVl0c0FBmmmcY/60BkQLzVnpE9M1aG4f2Z0aKlBWfj4XZ2zr++XNBfkQWYcwhGlmuu44RJPDqg== + +"@use-gesture/core@10.2.27": + version "10.2.27" + resolved "https://registry.yarnpkg.com/@use-gesture/core/-/core-10.2.27.tgz#0f24b17c036cd828ba07e3451ff45e2df959c6f5" + integrity sha512-V4XV7hn9GAD2MYu8yBBVi5iuWBsAMfjPRMsEVzoTNGYH72tf0kFP+OKqGKc8YJFQIJx6yj+AOqxmEHOmx2/MEA== + +"@use-gesture/core@10.3.0": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@use-gesture/core/-/core-10.3.0.tgz#9afd3777a45b2a08990a5dcfcf8d9ddd55b00db9" + integrity sha512-rh+6MND31zfHcy9VU3dOZCqGY511lvGcfyJenN4cWZe0u1BH6brBpBddLVXhF2r4BMqWbvxfsbL7D287thJU2A== + +"@use-gesture/react@^10.2.24": + version "10.2.27" + resolved "https://registry.yarnpkg.com/@use-gesture/react/-/react-10.2.27.tgz#7fbd50d14449ec5bc49c9b6cfef8a2845f5e0608" + integrity sha512-7E5vnWCxeslWlxwZ8uKIcnUZVMTRMZ8cvSnLLKF1NkyNb3PnNiAzoXM4G1vTKJKRhgOTeI6wK1YsEpwo9ABV5w== + dependencies: + "@use-gesture/core" "10.2.27" + +"@use-gesture/react@^10.2.5": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@use-gesture/react/-/react-10.3.0.tgz#180534c821fd635c2853cbcfa813f92c94f27e3f" + integrity sha512-3zc+Ve99z4usVP6l9knYVbVnZgfqhKah7sIG+PS2w+vpig2v2OLct05vs+ZXMzwxdNCMka8B+8WlOo0z6Pn6DA== + dependencies: + "@use-gesture/core" "10.3.0" + +"@vitejs/plugin-react@^4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz#744d8e4fcb120fc3dbaa471dadd3483f5a304bb9" + integrity sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ== + dependencies: + "@babel/core" "^7.23.5" + "@babel/plugin-transform-react-jsx-self" "^7.23.3" + "@babel/plugin-transform-react-jsx-source" "^7.23.3" + "@types/babel__core" "^7.20.5" + react-refresh "^0.14.0" + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + +attr-accept@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.2.tgz#646613809660110749e92f2c10833b70968d929b" + integrity sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg== + +autoprefixer@^10.4.16: + version "10.4.16" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8" + integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== + dependencies: + browserslist "^4.21.10" + caniuse-lite "^1.0.30001538" + fraction.js "^4.3.6" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bidi-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bidi-js/-/bidi-js-1.0.2.tgz#1a497a762c2ddea377429d2649c9ce0f8a91527f" + integrity sha512-rzSy/k7WdX5zOyeHHCOixGXbCHkyogkxPKL2r8QtzHmVQDiWCXUWa18bLdMWT9CYMLOYTjWpTHawuev2ouYJVw== + dependencies: + require-from-string "^2.0.2" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.21.10: + version "4.22.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" + integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== + dependencies: + caniuse-lite "^1.0.30001541" + electron-to-chromium "^1.4.535" + node-releases "^2.0.13" + update-browserslist-db "^1.0.13" + +browserslist@^4.22.2: + version "4.22.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" + integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== + dependencies: + caniuse-lite "^1.0.30001565" + electron-to-chromium "^1.4.601" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" + +buffer@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + +camera-controls@^2.4.2: + version "2.7.2" + resolved "https://registry.yarnpkg.com/camera-controls/-/camera-controls-2.7.2.tgz#19a8b5d10e650088e41fe4ee59bafc35df524961" + integrity sha512-6+gaZFK3LYbWaXC94EN0BYLlvpo9xfUqwp59vsU3nV7WXIU05q4wyP5TOgyG1tqTHReuBofb20vKfZNBNjMtzw== + +caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: + version "1.0.30001547" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001547.tgz#d4f92efc488aab3c7f92c738d3977c2a3180472b" + integrity sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA== + +caniuse-lite@^1.0.30001565: + version "1.0.30001576" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz#893be772cf8ee6056d6c1e2d07df365b9ec0a5c4" + integrity sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +colord@^2.9.2: + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cross-env@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" + integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== + dependencies: + cross-spawn "^7.0.1" + +cross-spawn@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +csstype@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + +debounce@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + +debug@^4.1.0, debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +dequal@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +detect-gpu@^5.0.28: + version "5.0.37" + resolved "https://registry.yarnpkg.com/detect-gpu/-/detect-gpu-5.0.37.tgz#27febe44d478ef4d35cd38007355da795ba075d5" + integrity sha512-EraWs84faI4iskB4qvE39bevMIazEvd1RpoyGLOBesRLbiz6eMeJqqRPHjEFClfRByYZzi9IzU35rBXIO76oDw== + dependencies: + webgl-constants "^1.1.1" + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +draco3d@^1.4.1: + version "1.5.6" + resolved "https://registry.yarnpkg.com/draco3d/-/draco3d-1.5.6.tgz#0d570a9792e3a3a9fafbfea065b692940441c626" + integrity sha512-+3NaRjWktb5r61ZFoDejlykPEFKT5N/LkbXsaddlw6xNSXBanUYpFc2AXXpbJDilPHazcSreU/DpQIaxfX0NfQ== + +electron-to-chromium@^1.4.535: + version "1.4.549" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.549.tgz#ab223f5d85c55a9def358db163bc8cacba72df69" + integrity sha512-gpXfJslSi4hYDkA0mTLEpYKRv9siAgSUgZ+UWyk+J5Cttpd1ThCVwdclzIwQSclz3hYn049+M2fgrP1WpvF8xg== + +electron-to-chromium@^1.4.601: + version "1.4.629" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.629.tgz#9cbffe1b08a5627b6a25118360f7fd3965416caf" + integrity sha512-5UUkr3k3CZ/k+9Sw7vaaIMyOzMC0XbPyprKI3n0tbKDqkzTDOjK4izm7DxlkueRMim6ZZQ1ja9F7hoFVplHihA== + +esbuild@^0.19.3: + version "0.19.11" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.11.tgz#4a02dca031e768b5556606e1b468fe72e3325d96" + integrity sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA== + optionalDependencies: + "@esbuild/aix-ppc64" "0.19.11" + "@esbuild/android-arm" "0.19.11" + "@esbuild/android-arm64" "0.19.11" + "@esbuild/android-x64" "0.19.11" + "@esbuild/darwin-arm64" "0.19.11" + "@esbuild/darwin-x64" "0.19.11" + "@esbuild/freebsd-arm64" "0.19.11" + "@esbuild/freebsd-x64" "0.19.11" + "@esbuild/linux-arm" "0.19.11" + "@esbuild/linux-arm64" "0.19.11" + "@esbuild/linux-ia32" "0.19.11" + "@esbuild/linux-loong64" "0.19.11" + "@esbuild/linux-mips64el" "0.19.11" + "@esbuild/linux-ppc64" "0.19.11" + "@esbuild/linux-riscv64" "0.19.11" + "@esbuild/linux-s390x" "0.19.11" + "@esbuild/linux-x64" "0.19.11" + "@esbuild/netbsd-x64" "0.19.11" + "@esbuild/openbsd-x64" "0.19.11" + "@esbuild/sunos-x64" "0.19.11" + "@esbuild/win32-arm64" "0.19.11" + "@esbuild/win32-ia32" "0.19.11" + "@esbuild/win32-x64" "0.19.11" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +fflate@^0.6.9, fflate@~0.6.10: + version "0.6.10" + resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.6.10.tgz#5f40f9659205936a2d18abf88b2e7781662b6d43" + integrity sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg== + +file-selector@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/file-selector/-/file-selector-0.5.0.tgz#21c7126dc9728b31a2742d91cab20d55e67e4fb4" + integrity sha512-s8KNnmIDTBoD0p9uJ9uD0XY38SCeBOtj0UMXyQSLg1Ypfrfj8+dAvwsLjYQkQ2GjhVtp2HrnF5cJzMhBjfD8HA== + dependencies: + tslib "^2.0.3" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + +fraction.js@^4.3.6: + version "4.3.6" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.6.tgz#e9e3acec6c9a28cf7bc36cbe35eea4ceb2c5c92d" + integrity sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +glsl-noise@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/glsl-noise/-/glsl-noise-0.0.0.tgz#367745f3a33382c0eeec4cb54b7e99cfc1d7670b" + integrity sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-core-module@^2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + dependencies: + has "^1.0.3" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extendable@^1.0.0, is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +its-fine@^1.0.6: + version "1.1.1" + resolved "https://registry.yarnpkg.com/its-fine/-/its-fine-1.1.1.tgz#e74b93fddd487441f978a50f64f0f5af4d2fc38e" + integrity sha512-v1Ia1xl20KbuSGlwoaGsW0oxsw8Be+TrXweidxD9oT/1lAh6O3K3/GIM95Tt6WCiv6W+h2M7RB1TwdoAjQyyKw== + dependencies: + "@types/react-reconciler" "^0.28.0" + +jiti@^1.19.1: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +leva@^0.9.35: + version "0.9.35" + resolved "https://registry.yarnpkg.com/leva/-/leva-0.9.35.tgz#0d44c0954ba28434b50636906e389c61dd2cbfd9" + integrity sha512-sp/ZbHGrrzM+eq+wIAc9X7C5qFagNERYkwaulKI/xy0XrDPV67jLUSSqTCFSoSc0Uk96j3oephYoO/6I8mZNuw== + dependencies: + "@radix-ui/react-portal" "^1.0.2" + "@radix-ui/react-tooltip" "^1.0.5" + "@stitches/react" "^1.2.8" + "@use-gesture/react" "^10.2.5" + colord "^2.9.2" + dequal "^2.0.2" + merge-value "^1.0.0" + react-colorful "^5.5.1" + react-dropzone "^12.0.0" + v8n "^1.3.3" + zustand "^3.6.9" + +lilconfig@^2.0.5, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +lodash.clamp@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/lodash.clamp/-/lodash.clamp-4.0.3.tgz#5c24bedeeeef0753560dc2b4cb4671f90a6ddfaa" + integrity sha512-HvzRFWjtcguTW7yd8NJBshuNaCa8aqNFtnswdT7f/cMd/1YKy5Zzoq4W/Oxvnx9l7aeY258uSdDfM793+eLsVg== + +lodash.omit@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" + integrity sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg== + +lodash.pick@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +maath@^0.10.7: + version "0.10.7" + resolved "https://registry.yarnpkg.com/maath/-/maath-0.10.7.tgz#9289b42a5db8ac5b26407b3bfca4e3bebefe50b4" + integrity sha512-zQ2xd7dNOIVTjAS+hj22fyj1EFYmOJX6tzKjZ92r6WDoq8hyFxjuGA2q950tmR4iC/EKXoMQdSipkaJVuUHDTg== + +merge-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/merge-value/-/merge-value-1.0.0.tgz#d28f8d41c0b37426e032d1059a0d0343302de502" + integrity sha512-fJMmvat4NeKz63Uv9iHWcPDjCWcCkoiRoajRTEO8hlhUC6rwaHg0QCF9hBOTjZmm4JuglPckPSTtcuJL5kp0TQ== + dependencies: + get-value "^2.0.6" + is-extendable "^1.0.0" + mixin-deep "^1.2.0" + set-value "^2.0.0" + +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +meshline@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/meshline/-/meshline-3.1.6.tgz#eee67d9b0fd9841652cc1dc2d3833093ae8e68ca" + integrity sha512-8JZJOdaL5oz3PI/upG8JvP/5FfzYUOhrkJ8np/WKvXzl0/PZ2V9pqTvCIjSKv+w9ccg2xb+yyBhXAwt6ier3ug== + +meshoptimizer@~0.18.1: + version "0.18.1" + resolved "https://registry.yarnpkg.com/meshoptimizer/-/meshoptimizer-0.18.1.tgz#cdb90907f30a7b5b1190facd3b7ee6b7087797d8" + integrity sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw== + +micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +minimatch@^3.0.4: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.6: + version "3.3.6" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" + integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +object-assign@^4.0.1, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + +postcss-selector-parser@^6.0.11: + version "6.0.13" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^8.4.23: + version "8.4.31" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" + integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@^8.4.32, postcss@^8.4.33: + version "8.4.33" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.33.tgz#1378e859c9f69bf6f638b990a0212f43e2aaa742" + integrity sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +potpack@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.2.tgz#23b99e64eb74f5741ffe7656b5b5c4ddce8dfc14" + integrity sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ== + +prop-types@^15.6.0, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +react-colorful@^5.5.1: + version "5.6.1" + resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.6.1.tgz#7dc2aed2d7c72fac89694e834d179e32f3da563b" + integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== + +react-composer@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/react-composer/-/react-composer-5.0.3.tgz#7beb9513da5e8687f4f434ea1333ef36a4f3091b" + integrity sha512-1uWd07EME6XZvMfapwZmc7NgCZqDemcvicRi3wMJzXsQLvZ3L7fTHVyPy1bZdnWXM4iPjYuNE+uJ41MLKeTtnA== + dependencies: + prop-types "^15.6.0" + +react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-dropzone@^12.0.0: + version "12.1.0" + resolved "https://registry.yarnpkg.com/react-dropzone/-/react-dropzone-12.1.0.tgz#e097b37e9da6f9e324efc757b7434ebc6f3dc2cb" + integrity sha512-iBYHA1rbopIvtzokEX4QubO6qk5IF/x3BtKGu74rF2JkQDXnwC4uO/lHKpaw4PJIV6iIAYOlwLv2FpiGyqHNog== + dependencies: + attr-accept "^2.2.2" + file-selector "^0.5.0" + prop-types "^15.8.1" + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-merge-refs@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/react-merge-refs/-/react-merge-refs-1.1.0.tgz#73d88b892c6c68cbb7a66e0800faa374f4c38b06" + integrity sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ== + +react-reconciler@^0.27.0: + version "0.27.0" + resolved "https://registry.yarnpkg.com/react-reconciler/-/react-reconciler-0.27.0.tgz#360124fdf2d76447c7491ee5f0e04503ed9acf5b" + integrity sha512-HmMDKciQjYmBRGuuhIaKA1ba/7a+UsM5FzOZsMO2JYHt9Jh8reCb7j1eDC95NOyUlKM9KRyvdx0flBuDvYSBoA== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.21.0" + +react-refresh@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" + integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== + +react-use-measure@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/react-use-measure/-/react-use-measure-2.1.1.tgz#5824537f4ee01c9469c45d5f7a8446177c6cc4ba" + integrity sha512-nocZhN26cproIiIduswYpV5y5lQpSQS1y/4KuvUCjSKmw7ZWIS/+g3aFnX3WdBkyuGUtTLif3UTqnLLhbDoQig== + dependencies: + debounce "^1.2.1" + +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-runtime@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" + integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve@^1.1.7, resolve@^1.22.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rollup@^4.2.0: + version "4.9.5" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.9.5.tgz#62999462c90f4c8b5d7c38fc7161e63b29101b05" + integrity sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ== + dependencies: + "@types/estree" "1.0.5" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.9.5" + "@rollup/rollup-android-arm64" "4.9.5" + "@rollup/rollup-darwin-arm64" "4.9.5" + "@rollup/rollup-darwin-x64" "4.9.5" + "@rollup/rollup-linux-arm-gnueabihf" "4.9.5" + "@rollup/rollup-linux-arm64-gnu" "4.9.5" + "@rollup/rollup-linux-arm64-musl" "4.9.5" + "@rollup/rollup-linux-riscv64-gnu" "4.9.5" + "@rollup/rollup-linux-x64-gnu" "4.9.5" + "@rollup/rollup-linux-x64-musl" "4.9.5" + "@rollup/rollup-win32-arm64-msvc" "4.9.5" + "@rollup/rollup-win32-ia32-msvc" "4.9.5" + "@rollup/rollup-win32-x64-msvc" "4.9.5" + fsevents "~2.3.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +scheduler@^0.21.0: + version "0.21.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820" + integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ== + dependencies: + loose-envify "^1.1.0" + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +set-value@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +split-string@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +stats-gl@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stats-gl/-/stats-gl-2.0.1.tgz#4626a1575af00f0c5daba41ebc8f8e29a0a1998a" + integrity sha512-EhFm1AxoSBK3MflkFawZ4jmOX1dWu0nBAtCpvGxGsondEvCpsohbpRpM8pi8UAcxG5eRsDsCiRcxdH20j3Rp9A== + +stats.js@^0.17.0: + version "0.17.0" + resolved "https://registry.yarnpkg.com/stats.js/-/stats.js-0.17.0.tgz#b1c3dc46d94498b578b7fd3985b81ace7131cc7d" + integrity sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw== + +sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "7.1.6" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +suspend-react@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/suspend-react/-/suspend-react-0.1.3.tgz#a52f49d21cfae9a2fb70bd0c68413d3f9d90768e" + integrity sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ== + +tailwindcss@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" + integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.19.1" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +three-mesh-bvh@^0.6.7: + version "0.6.8" + resolved "https://registry.yarnpkg.com/three-mesh-bvh/-/three-mesh-bvh-0.6.8.tgz#f27d18ca75bdc59316dff0f561af8fb316621a54" + integrity sha512-EGebF9DZx1S8+7OZYNNTT80GXJZVf+UYXD/HyTg/e2kR/ApofIFfUS4ZzIHNnUVIadpnLSzM4n96wX+l7GMbnQ== + +three-stdlib@^2.21.1: + version "2.27.1" + resolved "https://registry.yarnpkg.com/three-stdlib/-/three-stdlib-2.27.1.tgz#201629bde7e31323545c98a9add18ed47a30817a" + integrity sha512-KmYNLaWhTfGX+GhALE2jPLb73gL5o8a5p2sGsabRshUE00L8JvTwECMg/6e1InuDOYLGinxmrCR2DdRKlzlBXg== + dependencies: + "@types/draco3d" "^1.4.0" + "@types/offscreencanvas" "^2019.6.4" + "@types/webxr" "^0.5.2" + draco3d "^1.4.1" + fflate "^0.6.9" + potpack "^1.0.1" + +three-stdlib@^2.28.0: + version "2.29.1" + resolved "https://registry.yarnpkg.com/three-stdlib/-/three-stdlib-2.29.1.tgz#10a5d6087b69db3a3909054b03c8e55269a1b71f" + integrity sha512-s1MkrrYglkzgTasY/pNHH/QiUFt5TeEn5MIlzyq7BTGAXLDAy93WKBeHPcoxURtEFItMzK9IM1na6NV7W+Xhnw== + dependencies: + "@types/draco3d" "^1.4.0" + "@types/offscreencanvas" "^2019.6.4" + "@types/webxr" "^0.5.2" + draco3d "^1.4.1" + fflate "^0.6.9" + potpack "^1.0.1" + +three@0.160.0: + version "0.160.0" + resolved "https://registry.yarnpkg.com/three/-/three-0.160.0.tgz#cd1e4dbd01aee0719280a9086d75545db52b7a8f" + integrity sha512-DLU8lc0zNIPkM7rH5/e1Ks1Z8tWCGRq6g8mPowdDJpw1CFBJMU7UoJjC6PefXW7z//SSl0b2+GCw14LB+uDhng== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +troika-three-text@^0.47.2: + version "0.47.2" + resolved "https://registry.yarnpkg.com/troika-three-text/-/troika-three-text-0.47.2.tgz#fdf89059c010563bb829262b20c41f69ca79b712" + integrity sha512-qylT0F+U7xGs+/PEf3ujBdJMYWbn0Qci0kLqI5BJG2kW1wdg4T1XSxneypnF05DxFqJhEzuaOR9S2SjiyknMng== + dependencies: + bidi-js "^1.0.2" + troika-three-utils "^0.47.2" + troika-worker-utils "^0.47.2" + webgl-sdf-generator "1.1.1" + +troika-three-utils@^0.47.2: + version "0.47.2" + resolved "https://registry.yarnpkg.com/troika-three-utils/-/troika-three-utils-0.47.2.tgz#af49ca694245dce631963d5fefe4e8e1b8af9044" + integrity sha512-/28plhCxfKtH7MSxEGx8e3b/OXU5A0xlwl+Sbdp0H8FXUHKZDoksduEKmjQayXYtxAyuUiCRunYIv/8Vi7aiyg== + +troika-worker-utils@^0.47.2: + version "0.47.2" + resolved "https://registry.yarnpkg.com/troika-worker-utils/-/troika-worker-utils-0.47.2.tgz#e7c5de5f37d56c072b13fa8112bb844e048ff46c" + integrity sha512-mzss4MeyzUkYBppn4x5cdAqrhBHFEuVmMMgLMTyFV23x6GvQMyo+/R5E5Lsbrt7WSt5RfvewjcwD1DChRTA9lA== + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tslib@^2.0.3: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utility-types@^3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.10.0.tgz#ea4148f9a741015f05ed74fd615e1d20e6bed82b" + integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg== + +uuid@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== + +v8n@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/v8n/-/v8n-1.5.1.tgz#aecfeb9d298a8ce8be443cd7ad0d46e30203165a" + integrity sha512-LdabyT4OffkyXFCe9UT+uMkxNBs5rcTVuZClvxQr08D5TUgo1OFKkoT65qYRCsiKBl/usHjpXvP4hHMzzDRj3A== + +vite@^5.0.11: + version "5.0.11" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.0.11.tgz#31562e41e004cb68e1d51f5d2c641ab313b289e4" + integrity sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA== + dependencies: + esbuild "^0.19.3" + postcss "^8.4.32" + rollup "^4.2.0" + optionalDependencies: + fsevents "~2.3.3" + +webgl-constants@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/webgl-constants/-/webgl-constants-1.1.1.tgz#f9633ee87fea56647a60b9ce735cbdfb891c6855" + integrity sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg== + +webgl-sdf-generator@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz#3e1b422b3d87cd3cc77f2602c9db63bc0f6accbd" + integrity sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA== + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yaml@^2.1.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.2.tgz#f522db4313c671a0ca963a75670f1c12ea909144" + integrity sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg== + +zustand@^3.5.13, zustand@^3.6.9, zustand@^3.7.1: + version "3.7.2" + resolved "https://registry.yarnpkg.com/zustand/-/zustand-3.7.2.tgz#7b44c4f4a5bfd7a8296a3957b13e1c346f42514d" + integrity sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA== diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000000000000000000000000000000000000..6e58ec9168525a04bdf1fcb03fe6c2c8fd16d8a8 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,11 @@ +[phases.setup] +nixPkgs = ["nodejs", "python3", "python3Packages.pip"] + +[phases.install] +cmds = ["cd apps/backend && npm install"] + +[phases.build] +cmds = ["cd apps/backend && pip install edge-tts"] + +[start] +cmd = "cd apps/backend && node server.js" diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..b0f45a98fa9f179e2c884b9337530d83c3d73459 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9205 @@ +{ + "name": "digital-human", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "digital-human", + "version": "1.0.0", + "license": "MIT", + "workspaces": [ + "apps/*" + ], + "devDependencies": { + "nodemon": "^3.0.3", + "npm-run-all": "^4.1.5" + } + }, + "apps/backend": { + "name": "digital-human-backend", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@langchain/openai": "^0.0.12", + "cors": "^2.8.5", + "dotenv": "^16.3.1", + "express": "^4.18.2", + "form-data": "^4.0.5", + "langchain": "^0.1.4", + "node-fetch": "^3.3.2", + "openai": "^4.11.1", + "zod": "^3.22.4" + }, + "devDependencies": { + "nodemon": "^3.0.1" + } + }, + "apps/backend/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "license": "MIT", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "apps/frontend": { + "name": "digital-human-frontend", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@react-three/drei": "9.93.0", + "@react-three/fiber": "8.15.13", + "@react-three/xr": "^5.7.1", + "@types/three": "0.160.0", + "firebase": "^12.6.0", + "leva": "^0.9.35", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-router-dom": "^7.9.6", + "three": "0.160.0" + }, + "devDependencies": { + "@types/react": "^18.2.47", + "@types/react-dom": "^18.2.18", + "@vitejs/plugin-react": "^4.2.1", + "autoprefixer": "^10.4.16", + "postcss": "^8.4.33", + "tailwindcss": "^3.4.1", + "vite": "^5.0.11" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@anthropic-ai/sdk": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.9.1.tgz", + "integrity": "sha512-wa1meQ2WSfoY8Uor3EdrJq0jTiZJoKoSii2ZVWRY1oN4Tlr5s59pADg9T79FTbPe1/se5c3pBeZgJL63wmuoBA==", + "license": "MIT", + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "digest-fetch": "^1.3.0", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "dev": true, + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz", + "integrity": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz", + "integrity": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@firebase/ai": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@firebase/ai/-/ai-2.6.0.tgz", + "integrity": "sha512-NGyE7NQDFznOv683Xk4+WoUv39iipa9lEfrwvvPz33ChzVbCCiB69FJQTK2BI/11pRtzYGbHo1/xMz7gxWWhJw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check-interop-types": "0.3.3", + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/analytics": { + "version": "0.10.19", + "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.10.19.tgz", + "integrity": "sha512-3wU676fh60gaiVYQEEXsbGS4HbF2XsiBphyvvqDbtC1U4/dO4coshbYktcCHq+HFaGIK07iHOh4pME0hEq1fcg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/installations": "0.6.19", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/analytics-compat": { + "version": "0.2.25", + "resolved": "https://registry.npmjs.org/@firebase/analytics-compat/-/analytics-compat-0.2.25.tgz", + "integrity": "sha512-fdzoaG0BEKbqksRDhmf4JoyZf16Wosrl0Y7tbZtJyVDOOwziE0vrFjmZuTdviL0yhak+Nco6rMsUUbkbD+qb6Q==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/analytics": "0.10.19", + "@firebase/analytics-types": "0.8.3", + "@firebase/component": "0.7.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/analytics-types": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.8.3.tgz", + "integrity": "sha512-VrIp/d8iq2g501qO46uGz3hjbDb8xzYMrbu8Tp0ovzIzrvJZ2fvmj649gTjge/b7cCCcjT0H37g1gVtlNhnkbg==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app": { + "version": "0.14.6", + "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.14.6.tgz", + "integrity": "sha512-4uyt8BOrBsSq6i4yiOV/gG6BnnrvTeyymlNcaN/dKvyU1GoolxAafvIvaNP1RCGPlNab3OuE4MKUQuv2lH+PLQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "idb": "7.1.1", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/app-check": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.11.0.tgz", + "integrity": "sha512-XAvALQayUMBJo58U/rxW02IhsesaxxfWVmVkauZvGEz3vOAjMEQnzFlyblqkc2iAaO82uJ2ZVyZv9XzPfxjJ6w==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/app-check-compat": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@firebase/app-check-compat/-/app-check-compat-0.4.0.tgz", + "integrity": "sha512-UfK2Q8RJNjYM/8MFORltZRG9lJj11k0nW84rrffiKvcJxLf1jf6IEjCIkCamykHE73C6BwqhVfhIBs69GXQV0g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check": "0.11.0", + "@firebase/app-check-types": "0.5.3", + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/app-check-interop-types": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@firebase/app-check-interop-types/-/app-check-interop-types-0.3.3.tgz", + "integrity": "sha512-gAlxfPLT2j8bTI/qfe3ahl2I2YcBQ8cFIBdhAQA4I2f3TndcO+22YizyGYuttLHPQEpWkhmpFW60VCFEPg4g5A==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app-check-types": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@firebase/app-check-types/-/app-check-types-0.5.3.tgz", + "integrity": "sha512-hyl5rKSj0QmwPdsAxrI5x1otDlByQ7bvNvVt8G/XPO2CSwE++rmSVf3VEhaeOR4J8ZFaF0Z0NDSmLejPweZ3ng==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/app-compat": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.5.6.tgz", + "integrity": "sha512-YYGARbutghQY4zZUWMYia0ib0Y/rb52y72/N0z3vglRHL7ii/AaK9SA7S/dzScVOlCdnbHXz+sc5Dq+r8fwFAg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app": "0.14.6", + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/app-types": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.9.3.tgz", + "integrity": "sha512-kRVpIl4vVGJ4baogMDINbyrIOtOxqhkZQg4jTq3l8Lw6WSk0xfpEYzezFu+Kl4ve4fbPl79dvwRtaFqAC/ucCw==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/auth-compat": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@firebase/auth-compat/-/auth-compat-0.6.1.tgz", + "integrity": "sha512-I0o2ZiZMnMTOQfqT22ur+zcGDVSAfdNZBHo26/Tfi8EllfR1BO7aTVo2rt/ts8o/FWsK8pOALLeVBGhZt8w/vg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/auth": "1.11.1", + "@firebase/auth-types": "0.13.0", + "@firebase/component": "0.7.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/auth-compat/node_modules/@firebase/auth": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.11.1.tgz", + "integrity": "sha512-Mea0G/BwC1D0voSG+60Ylu3KZchXAFilXQ/hJXWCw3gebAu+RDINZA0dJMNeym7HFxBaBaByX8jSa7ys5+F2VA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@react-native-async-storage/async-storage": "^1.18.1" + }, + "peerDependenciesMeta": { + "@react-native-async-storage/async-storage": { + "optional": true + } + } + }, + "node_modules/@firebase/auth-interop-types": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.2.4.tgz", + "integrity": "sha512-JPgcXKCuO+CWqGDnigBtvo09HeBs5u/Ktc2GaFj2m01hLarbxthLNm7Fk8iOP1aqAtXV+fnnGj7U28xmk7IwVA==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/auth-types": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.13.0.tgz", + "integrity": "sha512-S/PuIjni0AQRLF+l9ck0YpsMOdE8GO2KU6ubmBB7P+7TJUCQDa3R1dlgYm9UzGbbePMZsp0xzB93f2b/CgxMOg==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/component": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.7.0.tgz", + "integrity": "sha512-wR9En2A+WESUHexjmRHkqtaVH94WLNKt6rmeqZhSLBybg4Wyf0Umk04SZsS6sBq4102ZsDBFwoqMqJYj2IoDSg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/data-connect": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@firebase/data-connect/-/data-connect-0.3.12.tgz", + "integrity": "sha512-baPddcoNLj/+vYo+HSJidJUdr5W4OkhT109c5qhR8T1dJoZcyJpkv/dFpYlw/VJ3dV66vI8GHQFrmAZw/xUS4g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/auth-interop-types": "0.2.4", + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/database": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@firebase/database/-/database-1.1.0.tgz", + "integrity": "sha512-gM6MJFae3pTyNLoc9VcJNuaUDej0ctdjn3cVtILo3D5lpp0dmUHHLFN/pUKe7ImyeB1KAvRlEYxvIHNF04Filg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check-interop-types": "0.3.3", + "@firebase/auth-interop-types": "0.2.4", + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "faye-websocket": "0.11.4", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/database-compat": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-2.1.0.tgz", + "integrity": "sha512-8nYc43RqxScsePVd1qe1xxvWNf0OBnbwHxmXJ7MHSuuTVYFO3eLyLW3PiCKJ9fHnmIz4p4LbieXwz+qtr9PZDg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/database": "1.1.0", + "@firebase/database-types": "1.0.16", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/database-types": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-1.0.16.tgz", + "integrity": "sha512-xkQLQfU5De7+SPhEGAXFBnDryUWhhlFXelEg2YeZOQMCdoe7dL64DDAd77SQsR+6uoXIZY5MB4y/inCs4GTfcw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-types": "0.9.3", + "@firebase/util": "1.13.0" + } + }, + "node_modules/@firebase/firestore": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-4.9.2.tgz", + "integrity": "sha512-iuA5+nVr/IV/Thm0Luoqf2mERUvK9g791FZpUJV1ZGXO6RL2/i/WFJUj5ZTVXy5pRjpWYO+ZzPcReNrlilmztA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "@firebase/webchannel-wrapper": "1.0.5", + "@grpc/grpc-js": "~1.9.0", + "@grpc/proto-loader": "^0.7.8", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/firestore-compat": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@firebase/firestore-compat/-/firestore-compat-0.4.2.tgz", + "integrity": "sha512-cy7ov6SpFBx+PHwFdOOjbI7kH00uNKmIFurAn560WiPCZXy9EMnil1SOG7VF4hHZKdenC+AHtL4r3fNpirpm0w==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/firestore": "4.9.2", + "@firebase/firestore-types": "3.0.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/firestore-types": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-3.0.3.tgz", + "integrity": "sha512-hD2jGdiWRxB/eZWF89xcK9gF8wvENDJkzpVFb4aGkzfEaKxVRD1kjz1t1Wj8VZEp2LCB53Yx1zD8mrhQu87R6Q==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/functions": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.13.1.tgz", + "integrity": "sha512-sUeWSb0rw5T+6wuV2o9XNmh9yHxjFI9zVGFnjFi+n7drTEWpl7ZTz1nROgGrSu472r+LAaj+2YaSicD4R8wfbw==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/app-check-interop-types": "0.3.3", + "@firebase/auth-interop-types": "0.2.4", + "@firebase/component": "0.7.0", + "@firebase/messaging-interop-types": "0.2.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/functions-compat": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@firebase/functions-compat/-/functions-compat-0.4.1.tgz", + "integrity": "sha512-AxxUBXKuPrWaVNQ8o1cG1GaCAtXT8a0eaTDfqgS5VsRYLAR0ALcfqDLwo/QyijZj1w8Qf8n3Qrfy/+Im245hOQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/functions": "0.13.1", + "@firebase/functions-types": "0.6.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/functions-types": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.6.3.tgz", + "integrity": "sha512-EZoDKQLUHFKNx6VLipQwrSMh01A1SaL3Wg6Hpi//x6/fJ6Ee4hrAeswK99I5Ht8roiniKHw4iO0B1Oxj5I4plg==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/installations": { + "version": "0.6.19", + "resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.6.19.tgz", + "integrity": "sha512-nGDmiwKLI1lerhwfwSHvMR9RZuIH5/8E3kgUWnVRqqL7kGVSktjLTWEMva7oh5yxQ3zXfIlIwJwMcaM5bK5j8Q==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/util": "1.13.0", + "idb": "7.1.1", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/installations-compat": { + "version": "0.2.19", + "resolved": "https://registry.npmjs.org/@firebase/installations-compat/-/installations-compat-0.2.19.tgz", + "integrity": "sha512-khfzIY3EI5LePePo7vT19/VEIH1E3iYsHknI/6ek9T8QCozAZshWT9CjlwOzZrKvTHMeNcbpo/VSOSIWDSjWdQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/installations": "0.6.19", + "@firebase/installations-types": "0.5.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/installations-types": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.5.3.tgz", + "integrity": "sha512-2FJI7gkLqIE0iYsNQ1P751lO3hER+Umykel+TkLwHj6plzWVxqvfclPUZhcKFVQObqloEBTmpi2Ozn7EkCABAA==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x" + } + }, + "node_modules/@firebase/logger": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.5.0.tgz", + "integrity": "sha512-cGskaAvkrnh42b3BA3doDWeBmuHFO/Mx5A83rbRDYakPjO9bJtRL3dX7javzc2Rr/JHZf4HlterTW2lUkfeN4g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/messaging": { + "version": "0.12.23", + "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.12.23.tgz", + "integrity": "sha512-cfuzv47XxqW4HH/OcR5rM+AlQd1xL/VhuaeW/wzMW1LFrsFcTn0GND/hak1vkQc2th8UisBcrkVcQAnOnKwYxg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/installations": "0.6.19", + "@firebase/messaging-interop-types": "0.2.3", + "@firebase/util": "1.13.0", + "idb": "7.1.1", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/messaging-compat": { + "version": "0.2.23", + "resolved": "https://registry.npmjs.org/@firebase/messaging-compat/-/messaging-compat-0.2.23.tgz", + "integrity": "sha512-SN857v/kBUvlQ9X/UjAqBoQ2FEaL1ZozpnmL1ByTe57iXkmnVVFm9KqAsTfmf+OEwWI4kJJe9NObtN/w22lUgg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/messaging": "0.12.23", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/messaging-interop-types": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@firebase/messaging-interop-types/-/messaging-interop-types-0.2.3.tgz", + "integrity": "sha512-xfzFaJpzcmtDjycpDeCUj0Ge10ATFi/VHVIvEEjDNc3hodVBQADZ7BWQU7CuFpjSHE+eLuBI13z5F/9xOoGX8Q==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/performance": { + "version": "0.7.9", + "resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.7.9.tgz", + "integrity": "sha512-UzybENl1EdM2I1sjYm74xGt/0JzRnU/0VmfMAKo2LSpHJzaj77FCLZXmYQ4oOuE+Pxtt8Wy2BVJEENiZkaZAzQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/installations": "0.6.19", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0", + "web-vitals": "^4.2.4" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/performance-compat": { + "version": "0.2.22", + "resolved": "https://registry.npmjs.org/@firebase/performance-compat/-/performance-compat-0.2.22.tgz", + "integrity": "sha512-xLKxaSAl/FVi10wDX/CHIYEUP13jXUjinL+UaNXT9ByIvxII5Ne5150mx6IgM8G6Q3V+sPiw9C8/kygkyHUVxg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/performance": "0.7.9", + "@firebase/performance-types": "0.2.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/performance-types": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.2.3.tgz", + "integrity": "sha512-IgkyTz6QZVPAq8GSkLYJvwSLr3LS9+V6vNPQr0x4YozZJiLF5jYixj0amDtATf1X0EtYHqoPO48a9ija8GocxQ==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/remote-config": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.7.0.tgz", + "integrity": "sha512-dX95X6WlW7QlgNd7aaGdjAIZUiQkgWgNS+aKNu4Wv92H1T8Ue/NDUjZHd9xb8fHxLXIHNZeco9/qbZzr500MjQ==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/installations": "0.6.19", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/remote-config-compat": { + "version": "0.2.20", + "resolved": "https://registry.npmjs.org/@firebase/remote-config-compat/-/remote-config-compat-0.2.20.tgz", + "integrity": "sha512-P/ULS9vU35EL9maG7xp66uljkZgcPMQOxLj3Zx2F289baTKSInE6+YIkgHEi1TwHoddC/AFePXPpshPlEFkbgg==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/remote-config": "0.7.0", + "@firebase/remote-config-types": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/remote-config-types": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.5.0.tgz", + "integrity": "sha512-vI3bqLoF14L/GchtgayMiFpZJF+Ao3uR8WCde0XpYNkSokDpAKca2DxvcfeZv7lZUqkUwQPL2wD83d3vQ4vvrg==", + "license": "Apache-2.0" + }, + "node_modules/@firebase/storage": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.14.0.tgz", + "integrity": "sha512-xWWbb15o6/pWEw8H01UQ1dC5U3rf8QTAzOChYyCpafV6Xki7KVp3Yaw2nSklUwHEziSWE9KoZJS7iYeyqWnYFA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x" + } + }, + "node_modules/@firebase/storage-compat": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@firebase/storage-compat/-/storage-compat-0.4.0.tgz", + "integrity": "sha512-vDzhgGczr1OfcOy285YAPur5pWDEvD67w4thyeCUh6Ys0izN9fNYtA1MJERmNBfqjqu0lg0FM5GLbw0Il21M+g==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/storage": "0.14.0", + "@firebase/storage-types": "0.8.3", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app-compat": "0.x" + } + }, + "node_modules/@firebase/storage-types": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.8.3.tgz", + "integrity": "sha512-+Muk7g9uwngTpd8xn9OdF/D48uiQ7I1Fae7ULsWPuKoCH3HU7bfFPhxtJYzyhjdniowhuDpQcfPmuNRAqZEfvg==", + "license": "Apache-2.0", + "peerDependencies": { + "@firebase/app-types": "0.x", + "@firebase/util": "1.x" + } + }, + "node_modules/@firebase/util": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@firebase/util/-/util-1.13.0.tgz", + "integrity": "sha512-0AZUyYUfpMNcztR5l09izHwXkZpghLgCUaAGjtMwXnCg3bj4ml5VgiwqOMOxJ+Nw4qN/zJAaOQBcJ7KGkWStqQ==", + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@firebase/webchannel-wrapper": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-1.0.5.tgz", + "integrity": "sha512-+uGNN7rkfn41HLO0vekTFhTxk61eKa8mTpRGLO0QSqlQdKvIoGAvLp3ppdVIWbTGYJWM6Kp0iN+PjMIOcnVqTw==", + "license": "Apache-2.0" + }, + "node_modules/@floating-ui/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.1" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", + "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz", + "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.6.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", + "license": "MIT" + }, + "node_modules/@grpc/grpc-js": { + "version": "1.9.15", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.9.15.tgz", + "integrity": "sha512-nqE7Hc0AzI+euzUwDAy0aY5hCp10r734gMGRdU+qOPX0XSceI2ULrcXB5U2xSc5VkWwalCj4M7GzCAygZl2KoQ==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.8", + "@types/node": ">=12.12.47" + }, + "engines": { + "node": "^8.13.0 || >=10.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz", + "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@langchain/community": { + "version": "0.0.28", + "resolved": "https://registry.npmjs.org/@langchain/community/-/community-0.0.28.tgz", + "integrity": "sha512-fR96wYtQPZ+iw3g5byp05ekGdQ5p+a+xR/RU9BpqW19Jk6g//szmp8Sagl3cTbTuzNlADaYw9IbYBLzd9W/Bhw==", + "license": "MIT", + "dependencies": { + "@langchain/core": "~0.1.28", + "@langchain/openai": "~0.0.14", + "flat": "^5.0.2", + "langsmith": "~0.0.48", + "uuid": "^9.0.0", + "zod": "^3.22.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@aws-crypto/sha256-js": "^5.0.0", + "@aws-sdk/client-bedrock-agent-runtime": "^3.485.0", + "@aws-sdk/client-bedrock-runtime": "^3.422.0", + "@aws-sdk/client-dynamodb": "^3.310.0", + "@aws-sdk/client-kendra": "^3.352.0", + "@aws-sdk/client-lambda": "^3.310.0", + "@aws-sdk/client-sagemaker-runtime": "^3.310.0", + "@aws-sdk/client-sfn": "^3.310.0", + "@aws-sdk/credential-provider-node": "^3.388.0", + "@azure/search-documents": "^12.0.0", + "@clickhouse/client": "^0.2.5", + "@cloudflare/ai": "*", + "@datastax/astra-db-ts": "^0.1.4", + "@elastic/elasticsearch": "^8.4.0", + "@getmetal/metal-sdk": "*", + "@getzep/zep-js": "^0.9.0", + "@gomomento/sdk": "^1.51.1", + "@gomomento/sdk-core": "^1.51.1", + "@google-ai/generativelanguage": "^0.2.1", + "@gradientai/nodejs-sdk": "^1.2.0", + "@huggingface/inference": "^2.6.4", + "@mozilla/readability": "*", + "@opensearch-project/opensearch": "*", + "@pinecone-database/pinecone": "*", + "@planetscale/database": "^1.8.0", + "@qdrant/js-client-rest": "^1.2.0", + "@raycast/api": "^1.55.2", + "@rockset/client": "^0.9.1", + "@smithy/eventstream-codec": "^2.0.5", + "@smithy/protocol-http": "^3.0.6", + "@smithy/signature-v4": "^2.0.10", + "@smithy/util-utf8": "^2.0.0", + "@supabase/postgrest-js": "^1.1.1", + "@supabase/supabase-js": "^2.10.0", + "@tensorflow-models/universal-sentence-encoder": "*", + "@tensorflow/tfjs-converter": "*", + "@tensorflow/tfjs-core": "*", + "@upstash/redis": "^1.20.6", + "@upstash/vector": "^1.0.2", + "@vercel/kv": "^0.2.3", + "@vercel/postgres": "^0.5.0", + "@writerai/writer-sdk": "^0.40.2", + "@xata.io/client": "^0.28.0", + "@xenova/transformers": "^2.5.4", + "@zilliz/milvus2-sdk-node": ">=2.2.7", + "better-sqlite3": "^9.4.0", + "cassandra-driver": "^4.7.2", + "chromadb": "*", + "closevector-common": "0.1.3", + "closevector-node": "0.1.6", + "closevector-web": "0.1.6", + "cohere-ai": "*", + "convex": "^1.3.1", + "discord.js": "^14.14.1", + "dria": "^0.0.3", + "faiss-node": "^0.5.1", + "firebase-admin": "^11.9.0 || ^12.0.0", + "google-auth-library": "^8.9.0", + "googleapis": "^126.0.1", + "hnswlib-node": "^1.4.2", + "html-to-text": "^9.0.5", + "ioredis": "^5.3.2", + "jsdom": "*", + "llmonitor": "^0.5.9", + "lodash": "^4.17.21", + "lunary": "^0.6.11", + "mongodb": "^5.2.0", + "mysql2": "^3.3.3", + "neo4j-driver": "*", + "node-llama-cpp": "*", + "pg": "^8.11.0", + "pg-copy-streams": "^6.0.5", + "pickleparser": "^0.2.1", + "portkey-ai": "^0.1.11", + "redis": "*", + "replicate": "^0.18.0", + "typeorm": "^0.3.12", + "typesense": "^1.5.3", + "usearch": "^1.1.1", + "vectordb": "^0.1.4", + "voy-search": "0.6.2", + "weaviate-ts-client": "*", + "web-auth-library": "^1.0.3", + "ws": "^8.14.2" + }, + "peerDependenciesMeta": { + "@aws-crypto/sha256-js": { + "optional": true + }, + "@aws-sdk/client-bedrock-agent-runtime": { + "optional": true + }, + "@aws-sdk/client-bedrock-runtime": { + "optional": true + }, + "@aws-sdk/client-dynamodb": { + "optional": true + }, + "@aws-sdk/client-kendra": { + "optional": true + }, + "@aws-sdk/client-lambda": { + "optional": true + }, + "@aws-sdk/client-sagemaker-runtime": { + "optional": true + }, + "@aws-sdk/client-sfn": { + "optional": true + }, + "@aws-sdk/credential-provider-node": { + "optional": true + }, + "@azure/search-documents": { + "optional": true + }, + "@clickhouse/client": { + "optional": true + }, + "@cloudflare/ai": { + "optional": true + }, + "@datastax/astra-db-ts": { + "optional": true + }, + "@elastic/elasticsearch": { + "optional": true + }, + "@getmetal/metal-sdk": { + "optional": true + }, + "@getzep/zep-js": { + "optional": true + }, + "@gomomento/sdk": { + "optional": true + }, + "@gomomento/sdk-core": { + "optional": true + }, + "@google-ai/generativelanguage": { + "optional": true + }, + "@gradientai/nodejs-sdk": { + "optional": true + }, + "@huggingface/inference": { + "optional": true + }, + "@mozilla/readability": { + "optional": true + }, + "@opensearch-project/opensearch": { + "optional": true + }, + "@pinecone-database/pinecone": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@qdrant/js-client-rest": { + "optional": true + }, + "@raycast/api": { + "optional": true + }, + "@rockset/client": { + "optional": true + }, + "@smithy/eventstream-codec": { + "optional": true + }, + "@smithy/protocol-http": { + "optional": true + }, + "@smithy/signature-v4": { + "optional": true + }, + "@smithy/util-utf8": { + "optional": true + }, + "@supabase/postgrest-js": { + "optional": true + }, + "@supabase/supabase-js": { + "optional": true + }, + "@tensorflow-models/universal-sentence-encoder": { + "optional": true + }, + "@tensorflow/tfjs-converter": { + "optional": true + }, + "@tensorflow/tfjs-core": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@upstash/vector": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "@vercel/postgres": { + "optional": true + }, + "@writerai/writer-sdk": { + "optional": true + }, + "@xata.io/client": { + "optional": true + }, + "@xenova/transformers": { + "optional": true + }, + "@zilliz/milvus2-sdk-node": { + "optional": true + }, + "better-sqlite3": { + "optional": true + }, + "cassandra-driver": { + "optional": true + }, + "chromadb": { + "optional": true + }, + "closevector-common": { + "optional": true + }, + "closevector-node": { + "optional": true + }, + "closevector-web": { + "optional": true + }, + "cohere-ai": { + "optional": true + }, + "convex": { + "optional": true + }, + "discord.js": { + "optional": true + }, + "dria": { + "optional": true + }, + "faiss-node": { + "optional": true + }, + "firebase-admin": { + "optional": true + }, + "google-auth-library": { + "optional": true + }, + "googleapis": { + "optional": true + }, + "hnswlib-node": { + "optional": true + }, + "html-to-text": { + "optional": true + }, + "ioredis": { + "optional": true + }, + "jsdom": { + "optional": true + }, + "llmonitor": { + "optional": true + }, + "lodash": { + "optional": true + }, + "lunary": { + "optional": true + }, + "mongodb": { + "optional": true + }, + "mysql2": { + "optional": true + }, + "neo4j-driver": { + "optional": true + }, + "node-llama-cpp": { + "optional": true + }, + "pg": { + "optional": true + }, + "pg-copy-streams": { + "optional": true + }, + "pickleparser": { + "optional": true + }, + "portkey-ai": { + "optional": true + }, + "redis": { + "optional": true + }, + "replicate": { + "optional": true + }, + "typeorm": { + "optional": true + }, + "typesense": { + "optional": true + }, + "usearch": { + "optional": true + }, + "vectordb": { + "optional": true + }, + "voy-search": { + "optional": true + }, + "weaviate-ts-client": { + "optional": true + }, + "web-auth-library": { + "optional": true + }, + "ws": { + "optional": true + } + } + }, + "node_modules/@langchain/community/node_modules/@langchain/openai": { + "version": "0.0.14", + "resolved": "https://registry.npmjs.org/@langchain/openai/-/openai-0.0.14.tgz", + "integrity": "sha512-co6nRylPrLGY/C3JYxhHt6cxLq07P086O7K3QaZH7SFFErIN9wSzJonpvhZR07DEUq6eK6wKgh2ORxA/NcjSRQ==", + "license": "MIT", + "dependencies": { + "@langchain/core": "~0.1.13", + "js-tiktoken": "^1.0.7", + "openai": "^4.26.0", + "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@langchain/community/node_modules/zod-to-json-schema": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.22.4.tgz", + "integrity": "sha512-2Ed5dJ+n/O3cU383xSY28cuVi0BCQhF8nYqWU5paEpl7fVdqdAmiLdqLyfblbNdfOFwFfi/mqU4O1pwc60iBhQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.22.4" + } + }, + "node_modules/@langchain/core": { + "version": "0.1.28", + "resolved": "https://registry.npmjs.org/@langchain/core/-/core-0.1.28.tgz", + "integrity": "sha512-8f4VUCO2cIoGQGLc9SiiGyb4JsIAVKs1b/qtOj1WvxD3Z8W93lYFsuSEpFdyppkimx8N+MpDdWG+Nd/9RJ3Xyg==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^5.0.0", + "camelcase": "6", + "decamelize": "1.2.0", + "js-tiktoken": "^1.0.8", + "langsmith": "~0.0.48", + "ml-distance": "^4.0.0", + "p-queue": "^6.6.2", + "p-retry": "4", + "uuid": "^9.0.0", + "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@langchain/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@langchain/core/node_modules/zod-to-json-schema": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.22.4.tgz", + "integrity": "sha512-2Ed5dJ+n/O3cU383xSY28cuVi0BCQhF8nYqWU5paEpl7fVdqdAmiLdqLyfblbNdfOFwFfi/mqU4O1pwc60iBhQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.22.4" + } + }, + "node_modules/@langchain/openai": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/@langchain/openai/-/openai-0.0.12.tgz", + "integrity": "sha512-MR9x1xRXwJpdYlVx9Tga89q/MvxPrSTYyA5vy9tQ8dfQHNWnlgmI4gB/hDIsWUu1ooScagD4wW+aTnohTX+g+g==", + "license": "MIT", + "dependencies": { + "@langchain/core": "~0.1.13", + "js-tiktoken": "^1.0.7", + "openai": "^4.24.2", + "zod": "^3.22.3", + "zod-to-json-schema": "3.20.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@mediapipe/tasks-vision": { + "version": "0.10.8", + "resolved": "https://registry.npmjs.org/@mediapipe/tasks-vision/-/tasks-vision-0.10.8.tgz", + "integrity": "sha512-Rp7ll8BHrKB3wXaRFKhrltwZl1CiXGdibPxuWXvqGnKTnv8fqa/nvftYNuSbf+pbJWKYCXdBtYTITdAUTGGh0Q==", + "license": "Apache-2.0" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@radix-ui/primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", + "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/@radix-ui/react-arrow": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", + "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-context": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz", + "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-escape-keydown": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-id": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", + "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popper": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.3.tgz", + "integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-rect": "1.0.1", + "@radix-ui/react-use-size": "1.0.1", + "@radix-ui/rect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-portal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz", + "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-presence": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz", + "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-primitive": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", + "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-tooltip": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz", + "integrity": "sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.3", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-presence": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", + "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/rect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-size": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", + "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", + "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/@react-spring/animated": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/animated/-/animated-9.6.1.tgz", + "integrity": "sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ==", + "license": "MIT", + "dependencies": { + "@react-spring/shared": "~9.6.1", + "@react-spring/types": "~9.6.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@react-spring/core": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/core/-/core-9.6.1.tgz", + "integrity": "sha512-3HAAinAyCPessyQNNXe5W0OHzRfa8Yo5P748paPcmMowZ/4sMfaZ2ZB6e5x5khQI8NusOHj8nquoutd6FRY5WQ==", + "license": "MIT", + "dependencies": { + "@react-spring/animated": "~9.6.1", + "@react-spring/rafz": "~9.6.1", + "@react-spring/shared": "~9.6.1", + "@react-spring/types": "~9.6.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-spring/donate" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@react-spring/rafz": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/rafz/-/rafz-9.6.1.tgz", + "integrity": "sha512-v6qbgNRpztJFFfSE3e2W1Uz+g8KnIBs6SmzCzcVVF61GdGfGOuBrbjIcp+nUz301awVmREKi4eMQb2Ab2gGgyQ==", + "license": "MIT" + }, + "node_modules/@react-spring/shared": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/shared/-/shared-9.6.1.tgz", + "integrity": "sha512-PBFBXabxFEuF8enNLkVqMC9h5uLRBo6GQhRMQT/nRTnemVENimgRd+0ZT4yFnAQ0AxWNiJfX3qux+bW2LbG6Bw==", + "license": "MIT", + "dependencies": { + "@react-spring/rafz": "~9.6.1", + "@react-spring/types": "~9.6.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@react-spring/three": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/three/-/three-9.6.1.tgz", + "integrity": "sha512-Tyw2YhZPKJAX3t2FcqvpLRb71CyTe1GvT3V+i+xJzfALgpk10uPGdGaQQ5Xrzmok1340DAeg2pR/MCfaW7b8AA==", + "license": "MIT", + "dependencies": { + "@react-spring/animated": "~9.6.1", + "@react-spring/core": "~9.6.1", + "@react-spring/shared": "~9.6.1", + "@react-spring/types": "~9.6.1" + }, + "peerDependencies": { + "@react-three/fiber": ">=6.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "three": ">=0.126" + } + }, + "node_modules/@react-spring/types": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@react-spring/types/-/types-9.6.1.tgz", + "integrity": "sha512-POu8Mk0hIU3lRXB3bGIGe4VHIwwDsQyoD1F394OK7STTiX9w4dG3cTLljjYswkQN+hDSHRrj4O36kuVa7KPU8Q==", + "license": "MIT" + }, + "node_modules/@react-three/drei": { + "version": "9.93.0", + "resolved": "https://registry.npmjs.org/@react-three/drei/-/drei-9.93.0.tgz", + "integrity": "sha512-G59IZqPzpIZPvVLmzdCITXJQB+mnKMtFv7FvSRFogeelLzOFkyfnkED9QiY0WQCBMFOFLnSx6vb5xzmbQjHyQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.2", + "@mediapipe/tasks-vision": "0.10.8", + "@react-spring/three": "~9.6.1", + "@use-gesture/react": "^10.2.24", + "camera-controls": "^2.4.2", + "cross-env": "^7.0.3", + "detect-gpu": "^5.0.28", + "glsl-noise": "^0.0.0", + "lodash.clamp": "^4.0.3", + "lodash.omit": "^4.5.0", + "lodash.pick": "^4.4.0", + "maath": "^0.10.7", + "meshline": "^3.1.6", + "react-composer": "^5.0.3", + "react-merge-refs": "^1.1.0", + "stats-gl": "^2.0.0", + "stats.js": "^0.17.0", + "suspend-react": "^0.1.3", + "three-mesh-bvh": "^0.6.7", + "three-stdlib": "^2.28.0", + "troika-three-text": "^0.47.2", + "utility-types": "^3.10.0", + "uuid": "^9.0.1", + "zustand": "^3.5.13" + }, + "peerDependencies": { + "@react-three/fiber": ">=8.0", + "react": ">=18.0", + "react-dom": ">=18.0", + "three": ">=0.137" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/@react-three/fiber": { + "version": "8.15.13", + "resolved": "https://registry.npmjs.org/@react-three/fiber/-/fiber-8.15.13.tgz", + "integrity": "sha512-FS6F/k69q2KEf7nxdce1Rzd5qyp6VHtTgjouTMfiotWNiNwlhfQQeAxfcnDg0i2XVaOUGkLaD9BK8LBVnpfzUA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.17.8", + "@types/react-reconciler": "^0.26.7", + "@types/webxr": "*", + "base64-js": "^1.5.1", + "buffer": "^6.0.3", + "its-fine": "^1.0.6", + "react-reconciler": "^0.27.0", + "react-use-measure": "^2.1.1", + "scheduler": "^0.21.0", + "suspend-react": "^0.1.3", + "zustand": "^3.7.1" + }, + "peerDependencies": { + "expo": ">=43.0", + "expo-asset": ">=8.4", + "expo-file-system": ">=11.0", + "expo-gl": ">=11.0", + "react": ">=18.0", + "react-dom": ">=18.0", + "react-native": ">=0.64", + "three": ">=0.133" + }, + "peerDependenciesMeta": { + "expo": { + "optional": true + }, + "expo-asset": { + "optional": true + }, + "expo-file-system": { + "optional": true + }, + "expo-gl": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/@react-three/xr": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@react-three/xr/-/xr-5.7.1.tgz", + "integrity": "sha512-GaRUSA+lE8VJF/NrXq7QQByZ4UGHbQQ4rs3QCphZs9fVidK86hGrMOQ0kL79gZc5pa3V5uFGlOhNcUdsTYE3Bg==", + "license": "MIT", + "dependencies": { + "@types/webxr": "*", + "three-stdlib": "^2.21.1", + "zustand": "^3.7.1" + }, + "peerDependencies": { + "@react-three/fiber": ">=8.0.0", + "react": ">=18.0", + "three": ">=0.141" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.10.0.tgz", + "integrity": "sha512-/MeDQmcD96nVoRumKUljsYOLqfv1YFJps+0pTrb2Z9Nl/w5qNUysMaWQsrd1mvAlNT4yza1iVyIu4Q4AgF6V3A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.10.0.tgz", + "integrity": "sha512-lvu0jK97mZDJdpZKDnZI93I0Om8lSDaiPx3OiCk0RXn3E8CMPJNS/wxjAvSJJzhhZpfjXsjLWL8LnS6qET4VNQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.10.0.tgz", + "integrity": "sha512-uFpayx8I8tyOvDkD7X6n0PriDRWxcqEjqgtlxnUA/G9oS93ur9aZ8c8BEpzFmsed1TH5WZNG5IONB8IiW90TQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.10.0.tgz", + "integrity": "sha512-nIdCX03qFKoR/MwQegQBK+qZoSpO3LESurVAC6s6jazLA1Mpmgzo3Nj3H1vydXp/JM29bkCiuF7tDuToj4+U9Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.10.0.tgz", + "integrity": "sha512-Fz7a+y5sYhYZMQFRkOyCs4PLhICAnxRX/GnWYReaAoruUzuRtcf+Qnw+T0CoAWbHCuz2gBUwmWnUgQ67fb3FYw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.10.0.tgz", + "integrity": "sha512-yPtF9jIix88orwfTi0lJiqINnlWo6p93MtZEoaehZnmCzEmLL0eqjA3eGVeyQhMtxdV+Mlsgfwhh0+M/k1/V7Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.10.0.tgz", + "integrity": "sha512-9GW9yA30ib+vfFiwjX+N7PnjTnCMiUffhWj4vkG4ukYv1kJ4T9gHNg8zw+ChsOccM27G9yXrEtMScf1LaCuoWQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.10.0.tgz", + "integrity": "sha512-X1ES+V4bMq2ws5fF4zHornxebNxMXye0ZZjUrzOrf7UMx1d6wMQtfcchZ8SqUnQPPHdOyOLW6fTcUiFgHFadRA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.10.0.tgz", + "integrity": "sha512-w/5OpT2EnI/Xvypw4FIhV34jmNqU5PZjZue2l2Y3ty1Ootm3SqhI+AmfhlUYGBTd9JnpneZCDnt3uNOiOBkMyw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.10.0.tgz", + "integrity": "sha512-q/meftEe3QlwQiGYxD9rWwB21DoKQ9Q8wA40of/of6yGHhZuGfZO0c3WYkN9dNlopHlNT3mf5BPsUSxoPuVQaw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.10.0.tgz", + "integrity": "sha512-NrR6667wlUfP0BHaEIKgYM/2va+Oj+RjZSASbBMnszM9k+1AmliRjHc3lJIiOehtSSjqYiO7R6KLNrWOX+YNSQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.10.0.tgz", + "integrity": "sha512-FV0Tpt84LPYDduIDcXvEC7HKtyXxdvhdAOvOeWMWbQNulxViH2O07QXkT/FffX4FqEI02jEbCJbr+YcuKdyyMg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.10.0.tgz", + "integrity": "sha512-OZoJd+o5TaTSQeFFQ6WjFCiltiYVjIdsXxwu/XZ8qRpsvMQr4UsVrE5UyT9RIvsnuF47DqkJKhhVZ2Q9YW9IpQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@stitches/react": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@stitches/react/-/react-1.2.8.tgz", + "integrity": "sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==", + "license": "MIT", + "peerDependencies": { + "react": ">= 16.3.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/draco3d": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/@types/draco3d/-/draco3d-1.4.9.tgz", + "integrity": "sha512-4MMUjMQb4yA5fJ4osXx+QxGHt0/ZSy4spT6jL1HM7Tn8OJEC35siqdnpOo+HxPhYjqEFumKfGVF9hJfdyKBIBA==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "18.19.15", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.15.tgz", + "integrity": "sha512-AMZ2UWx+woHNfM11PyAEQmfSxi05jm9OlkxczuHeEqmvwPkYj6MWv44gbzDPefYOLysTOFyI3ziiy2ONmUZfpA==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/offscreencanvas": { + "version": "2019.7.3", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz", + "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.55", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz", + "integrity": "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.19", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz", + "integrity": "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-reconciler": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.26.7.tgz", + "integrity": "sha512-mBDYl8x+oyPX/VBb3E638N0B7xG+SPk/EAMcVPeexqus/5aTpTphQi0curhhshOqRrc9t6OPoJfEUkbymse/lQ==", + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "license": "MIT" + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "license": "MIT" + }, + "node_modules/@types/stats.js": { + "version": "0.17.3", + "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.3.tgz", + "integrity": "sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==", + "license": "MIT" + }, + "node_modules/@types/three": { + "version": "0.160.0", + "resolved": "https://registry.npmjs.org/@types/three/-/three-0.160.0.tgz", + "integrity": "sha512-jWlbUBovicUKaOYxzgkLlhkiEQJkhCVvg4W2IYD2trqD2om3VK4DGLpHH5zQHNr7RweZK/5re/4IVhbhvxbV9w==", + "license": "MIT", + "dependencies": { + "@types/stats.js": "*", + "@types/webxr": "*", + "fflate": "~0.6.10", + "meshoptimizer": "~0.18.1" + } + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "license": "MIT" + }, + "node_modules/@types/webxr": { + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.14.tgz", + "integrity": "sha512-UEMMm/Xn3DtEa+gpzUrOcDj+SJS1tk5YodjwOxcqStNhCfPcwgyC5Srg2ToVKyg2Fhq16Ffpb0UWUQHqoT9AMA==", + "license": "MIT" + }, + "node_modules/@use-gesture/core": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@use-gesture/core/-/core-10.3.0.tgz", + "integrity": "sha512-rh+6MND31zfHcy9VU3dOZCqGY511lvGcfyJenN4cWZe0u1BH6brBpBddLVXhF2r4BMqWbvxfsbL7D287thJU2A==", + "license": "MIT" + }, + "node_modules/@use-gesture/react": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@use-gesture/react/-/react-10.3.0.tgz", + "integrity": "sha512-3zc+Ve99z4usVP6l9knYVbVnZgfqhKah7sIG+PS2w+vpig2v2OLct05vs+ZXMzwxdNCMka8B+8WlOo0z6Pn6DA==", + "license": "MIT", + "dependencies": { + "@use-gesture/core": "10.3.0" + }, + "peerDependencies": { + "react": ">= 16.8.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz", + "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.23.5", + "@babel/plugin-transform-react-jsx-self": "^7.23.3", + "@babel/plugin-transform-react-jsx-source": "^7.23.3", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0" + } + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true, + "license": "ISC" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "license": "MIT", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/attr-accept": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.2.tgz", + "integrity": "sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", + "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "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, + "license": "MIT" + }, + "node_modules/base-64": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz", + "integrity": "sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bidi-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", + "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", + "license": "MIT", + "dependencies": { + "require-from-string": "^2.0.2" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==", + "license": "CC0-1.0" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "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, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/camera-controls": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/camera-controls/-/camera-controls-2.8.1.tgz", + "integrity": "sha512-mpbaMzsUzifcWuXLXSTgtynOF+qcX+id0gOAtPRsbtivUv9yGdmR0Kukm1DR1sfeFe9T/sPO6SEBEK93m03i/A==", + "license": "MIT", + "peerDependencies": { + "three": ">=0.126.1" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001587", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz", + "integrity": "sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/cliui/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "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==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-env/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-env/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cross-env/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cross-env/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cross-env/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-spawn/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, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", + "license": "MIT" + }, + "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, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-gpu": { + "version": "5.0.38", + "resolved": "https://registry.npmjs.org/detect-gpu/-/detect-gpu-5.0.38.tgz", + "integrity": "sha512-36QeGHSXYcJ/RfrnPEScR8GDprbXFG4ZhXsfVNVHztZr38+fRxgHnJl3CjYXXjbeRUhu3ZZBJh6Lg0A9v0Qd8A==", + "license": "MIT", + "dependencies": { + "webgl-constants": "^1.1.1" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/digest-fetch": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/digest-fetch/-/digest-fetch-1.3.0.tgz", + "integrity": "sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==", + "license": "ISC", + "dependencies": { + "base-64": "^0.1.0", + "md5": "^2.3.0" + } + }, + "node_modules/digital-human-backend": { + "resolved": "apps/backend", + "link": true + }, + "node_modules/digital-human-frontend": { + "resolved": "apps/frontend", + "link": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/dotenv": { + "version": "16.4.4", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.4.tgz", + "integrity": "sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/draco3d": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.7.tgz", + "integrity": "sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==", + "license": "Apache-2.0" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.668", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.668.tgz", + "integrity": "sha512-ZOBocMYCehr9W31+GpMclR+KBaDZOoAEabLdhpZ8oU1JFDwIaFY0UDbpXVEUFc0BIP2O2Qn3rkfCjQmMR4T/bQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz", + "integrity": "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.7", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.1", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.0", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.1", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "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": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "license": "MIT" + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/fflate": { + "version": "0.6.10", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.6.10.tgz", + "integrity": "sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==", + "license": "MIT" + }, + "node_modules/file-selector": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-0.5.0.tgz", + "integrity": "sha512-s8KNnmIDTBoD0p9uJ9uD0XY38SCeBOtj0UMXyQSLg1Ypfrfj8+dAvwsLjYQkQ2GjhVtp2HrnF5cJzMhBjfD8HA==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/firebase": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-12.6.0.tgz", + "integrity": "sha512-8ZD1Gcv916Qp8/nsFH2+QMIrfX/76ti6cJwxQUENLXXnKlOX/IJZaU2Y3bdYf5r1mbownrQKfnWtrt+MVgdwLA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/ai": "2.6.0", + "@firebase/analytics": "0.10.19", + "@firebase/analytics-compat": "0.2.25", + "@firebase/app": "0.14.6", + "@firebase/app-check": "0.11.0", + "@firebase/app-check-compat": "0.4.0", + "@firebase/app-compat": "0.5.6", + "@firebase/app-types": "0.9.3", + "@firebase/auth": "1.11.1", + "@firebase/auth-compat": "0.6.1", + "@firebase/data-connect": "0.3.12", + "@firebase/database": "1.1.0", + "@firebase/database-compat": "2.1.0", + "@firebase/firestore": "4.9.2", + "@firebase/firestore-compat": "0.4.2", + "@firebase/functions": "0.13.1", + "@firebase/functions-compat": "0.4.1", + "@firebase/installations": "0.6.19", + "@firebase/installations-compat": "0.2.19", + "@firebase/messaging": "0.12.23", + "@firebase/messaging-compat": "0.2.23", + "@firebase/performance": "0.7.9", + "@firebase/performance-compat": "0.2.22", + "@firebase/remote-config": "0.7.0", + "@firebase/remote-config-compat": "0.2.20", + "@firebase/storage": "0.14.0", + "@firebase/storage-compat": "0.4.0", + "@firebase/util": "1.13.0" + } + }, + "node_modules/firebase/node_modules/@firebase/auth": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.11.1.tgz", + "integrity": "sha512-Mea0G/BwC1D0voSG+60Ylu3KZchXAFilXQ/hJXWCw3gebAu+RDINZA0dJMNeym7HFxBaBaByX8jSa7ys5+F2VA==", + "license": "Apache-2.0", + "dependencies": { + "@firebase/component": "0.7.0", + "@firebase/logger": "0.5.0", + "@firebase/util": "1.13.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@firebase/app": "0.x", + "@react-native-async-storage/async-storage": "^1.18.1" + }, + "peerDependenciesMeta": { + "@react-native-async-storage/async-storage": { + "optional": true + } + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/foreground-child/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/form-data-encoder": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", + "license": "MIT" + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "license": "MIT", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "license": "MIT", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glsl-noise": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/glsl-noise/-/glsl-noise-0.0.0.tgz", + "integrity": "sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w==", + "license": "MIT" + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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, + "license": "ISC" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", + "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==", + "license": "MIT" + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "license": "ISC" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-any-array": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz", + "integrity": "sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==", + "license": "MIT" + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/its-fine": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/its-fine/-/its-fine-1.1.1.tgz", + "integrity": "sha512-v1Ia1xl20KbuSGlwoaGsW0oxsw8Be+TrXweidxD9oT/1lAh6O3K3/GIM95Tt6WCiv6W+h2M7RB1TwdoAjQyyKw==", + "license": "MIT", + "dependencies": { + "@types/react-reconciler": "^0.28.0" + }, + "peerDependencies": { + "react": ">=18.0" + } + }, + "node_modules/its-fine/node_modules/@types/react-reconciler": { + "version": "0.28.8", + "resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.28.8.tgz", + "integrity": "sha512-SN9c4kxXZonFhbX4hJrZy37yw9e7EIxcpHCxQv5JUS18wDE5ovkQKlqQEkufdJCCMfuI9BnjUJvhYeJ9x5Ra7g==", + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tiktoken": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.10.tgz", + "integrity": "sha512-ZoSxbGjvGyMT13x6ACo9ebhDha/0FHdKA+OsQcMOWcm1Zs7r90Rhk5lhERLzji+3rA7EKpXCgwXcM5fF3DMpdA==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.5.1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/langchain": { + "version": "0.1.18", + "resolved": "https://registry.npmjs.org/langchain/-/langchain-0.1.18.tgz", + "integrity": "sha512-+jCS6g8OpOHyrKYPc4z46sIVnPPtZEodwVtfVfDiiX4fF6p8spotPka4nHi4w+lS6NnXYH2RSDqY6JxPH7Xrdw==", + "license": "MIT", + "dependencies": { + "@anthropic-ai/sdk": "^0.9.1", + "@langchain/community": "~0.0.28", + "@langchain/core": "~0.1.28", + "@langchain/openai": "~0.0.14", + "binary-extensions": "^2.2.0", + "expr-eval": "^2.0.2", + "js-tiktoken": "^1.0.7", + "js-yaml": "^4.1.0", + "jsonpointer": "^5.0.1", + "langchainhub": "~0.0.8", + "langsmith": "~0.0.59", + "ml-distance": "^4.0.0", + "openapi-types": "^12.1.3", + "p-retry": "4", + "uuid": "^9.0.0", + "yaml": "^2.2.1", + "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@aws-sdk/client-s3": "^3.310.0", + "@aws-sdk/client-sagemaker-runtime": "^3.310.0", + "@aws-sdk/client-sfn": "^3.310.0", + "@aws-sdk/credential-provider-node": "^3.388.0", + "@azure/storage-blob": "^12.15.0", + "@gomomento/sdk": "^1.51.1", + "@gomomento/sdk-core": "^1.51.1", + "@gomomento/sdk-web": "^1.51.1", + "@google-ai/generativelanguage": "^0.2.1", + "@google-cloud/storage": "^6.10.1", + "@notionhq/client": "^2.2.10", + "@pinecone-database/pinecone": "*", + "@supabase/supabase-js": "^2.10.0", + "@vercel/kv": "^0.2.3", + "@xata.io/client": "^0.28.0", + "apify-client": "^2.7.1", + "assemblyai": "^4.0.0", + "axios": "*", + "cheerio": "^1.0.0-rc.12", + "chromadb": "*", + "convex": "^1.3.1", + "d3-dsv": "^2.0.0", + "epub2": "^3.0.1", + "fast-xml-parser": "^4.2.7", + "google-auth-library": "^8.9.0", + "handlebars": "^4.7.8", + "html-to-text": "^9.0.5", + "ignore": "^5.2.0", + "ioredis": "^5.3.2", + "jsdom": "*", + "mammoth": "^1.6.0", + "mongodb": "^5.2.0", + "node-llama-cpp": "*", + "notion-to-md": "^3.1.0", + "officeparser": "^4.0.4", + "pdf-parse": "1.1.1", + "peggy": "^3.0.2", + "playwright": "^1.32.1", + "puppeteer": "^19.7.2", + "pyodide": "^0.24.1", + "redis": "^4.6.4", + "sonix-speech-recognition": "^2.1.1", + "srt-parser-2": "^1.2.3", + "typeorm": "^0.3.12", + "vectordb": "^0.1.4", + "weaviate-ts-client": "^1.4.0", + "web-auth-library": "^1.0.3", + "ws": "^8.14.2", + "youtube-transcript": "^1.0.6", + "youtubei.js": "^5.8.0" + }, + "peerDependenciesMeta": { + "@aws-sdk/client-s3": { + "optional": true + }, + "@aws-sdk/client-sagemaker-runtime": { + "optional": true + }, + "@aws-sdk/client-sfn": { + "optional": true + }, + "@aws-sdk/credential-provider-node": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@gomomento/sdk": { + "optional": true + }, + "@gomomento/sdk-core": { + "optional": true + }, + "@gomomento/sdk-web": { + "optional": true + }, + "@google-ai/generativelanguage": { + "optional": true + }, + "@google-cloud/storage": { + "optional": true + }, + "@notionhq/client": { + "optional": true + }, + "@pinecone-database/pinecone": { + "optional": true + }, + "@supabase/supabase-js": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "@xata.io/client": { + "optional": true + }, + "apify-client": { + "optional": true + }, + "assemblyai": { + "optional": true + }, + "axios": { + "optional": true + }, + "cheerio": { + "optional": true + }, + "chromadb": { + "optional": true + }, + "convex": { + "optional": true + }, + "d3-dsv": { + "optional": true + }, + "epub2": { + "optional": true + }, + "faiss-node": { + "optional": true + }, + "fast-xml-parser": { + "optional": true + }, + "google-auth-library": { + "optional": true + }, + "handlebars": { + "optional": true + }, + "html-to-text": { + "optional": true + }, + "ignore": { + "optional": true + }, + "ioredis": { + "optional": true + }, + "jsdom": { + "optional": true + }, + "mammoth": { + "optional": true + }, + "mongodb": { + "optional": true + }, + "node-llama-cpp": { + "optional": true + }, + "notion-to-md": { + "optional": true + }, + "officeparser": { + "optional": true + }, + "pdf-parse": { + "optional": true + }, + "peggy": { + "optional": true + }, + "playwright": { + "optional": true + }, + "puppeteer": { + "optional": true + }, + "pyodide": { + "optional": true + }, + "redis": { + "optional": true + }, + "sonix-speech-recognition": { + "optional": true + }, + "srt-parser-2": { + "optional": true + }, + "typeorm": { + "optional": true + }, + "vectordb": { + "optional": true + }, + "weaviate-ts-client": { + "optional": true + }, + "web-auth-library": { + "optional": true + }, + "ws": { + "optional": true + }, + "youtube-transcript": { + "optional": true + }, + "youtubei.js": { + "optional": true + } + } + }, + "node_modules/langchain/node_modules/@langchain/openai": { + "version": "0.0.14", + "resolved": "https://registry.npmjs.org/@langchain/openai/-/openai-0.0.14.tgz", + "integrity": "sha512-co6nRylPrLGY/C3JYxhHt6cxLq07P086O7K3QaZH7SFFErIN9wSzJonpvhZR07DEUq6eK6wKgh2ORxA/NcjSRQ==", + "license": "MIT", + "dependencies": { + "@langchain/core": "~0.1.13", + "js-tiktoken": "^1.0.7", + "openai": "^4.26.0", + "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/langchain/node_modules/zod-to-json-schema": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.22.4.tgz", + "integrity": "sha512-2Ed5dJ+n/O3cU383xSY28cuVi0BCQhF8nYqWU5paEpl7fVdqdAmiLdqLyfblbNdfOFwFfi/mqU4O1pwc60iBhQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.22.4" + } + }, + "node_modules/langchainhub": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/langchainhub/-/langchainhub-0.0.8.tgz", + "integrity": "sha512-Woyb8YDHgqqTOZvWIbm2CaFDGfZ4NTSyXV687AG4vXEfoNo7cGQp7nhl7wL3ehenKWmNEmcxCLgOZzW8jE6lOQ==", + "license": "MIT" + }, + "node_modules/langsmith": { + "version": "0.0.68", + "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.0.68.tgz", + "integrity": "sha512-bxaJndEhUFDfv5soWKxONrLMZaVZfS+G4smJl3WYQlsEph8ierG3QbJfx1PEwl40TD0aFBjzq62usUX1UOCjuA==", + "license": "MIT", + "dependencies": { + "@types/uuid": "^9.0.1", + "commander": "^10.0.1", + "p-queue": "^6.6.2", + "p-retry": "4", + "uuid": "^9.0.0" + }, + "bin": { + "langsmith": "dist/cli/main.cjs" + } + }, + "node_modules/leva": { + "version": "0.9.35", + "resolved": "https://registry.npmjs.org/leva/-/leva-0.9.35.tgz", + "integrity": "sha512-sp/ZbHGrrzM+eq+wIAc9X7C5qFagNERYkwaulKI/xy0XrDPV67jLUSSqTCFSoSc0Uk96j3oephYoO/6I8mZNuw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-portal": "^1.0.2", + "@radix-ui/react-tooltip": "^1.0.5", + "@stitches/react": "^1.2.8", + "@use-gesture/react": "^10.2.5", + "colord": "^2.9.2", + "dequal": "^2.0.2", + "merge-value": "^1.0.0", + "react-colorful": "^5.5.1", + "react-dropzone": "^12.0.0", + "v8n": "^1.3.3", + "zustand": "^3.6.9" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.clamp": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/lodash.clamp/-/lodash.clamp-4.0.3.tgz", + "integrity": "sha512-HvzRFWjtcguTW7yd8NJBshuNaCa8aqNFtnswdT7f/cMd/1YKy5Zzoq4W/Oxvnx9l7aeY258uSdDfM793+eLsVg==", + "license": "MIT" + }, + "node_modules/lodash.omit": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", + "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==", + "deprecated": "This package is deprecated. Use destructuring assignment syntax instead.", + "license": "MIT" + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", + "deprecated": "This package is deprecated. Use destructuring assignment syntax instead.", + "license": "MIT" + }, + "node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/maath": { + "version": "0.10.7", + "resolved": "https://registry.npmjs.org/maath/-/maath-0.10.7.tgz", + "integrity": "sha512-zQ2xd7dNOIVTjAS+hj22fyj1EFYmOJX6tzKjZ92r6WDoq8hyFxjuGA2q950tmR4iC/EKXoMQdSipkaJVuUHDTg==", + "license": "MIT", + "peerDependencies": { + "@types/three": ">=0.144.0", + "three": ">=0.144.0" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "license": "MIT" + }, + "node_modules/merge-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/merge-value/-/merge-value-1.0.0.tgz", + "integrity": "sha512-fJMmvat4NeKz63Uv9iHWcPDjCWcCkoiRoajRTEO8hlhUC6rwaHg0QCF9hBOTjZmm4JuglPckPSTtcuJL5kp0TQ==", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "is-extendable": "^1.0.0", + "mixin-deep": "^1.2.0", + "set-value": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/meshline": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/meshline/-/meshline-3.2.0.tgz", + "integrity": "sha512-ZaJkC967GTuef7UBdO0rGPX544oIWaNo7tYedVHSoR2lje6RR16fX8IsgMxgxoYYERtjqsRWIYBSPBxG4QR84Q==", + "license": "MIT", + "peerDependencies": { + "three": ">=0.137" + } + }, + "node_modules/meshoptimizer": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.18.1.tgz", + "integrity": "sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==", + "license": "MIT" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "license": "MIT", + "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==", + "license": "MIT", + "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, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "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==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ml-array-mean": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/ml-array-mean/-/ml-array-mean-1.1.6.tgz", + "integrity": "sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==", + "license": "MIT", + "dependencies": { + "ml-array-sum": "^1.1.6" + } + }, + "node_modules/ml-array-sum": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/ml-array-sum/-/ml-array-sum-1.1.6.tgz", + "integrity": "sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==", + "license": "MIT", + "dependencies": { + "is-any-array": "^2.0.0" + } + }, + "node_modules/ml-distance": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/ml-distance/-/ml-distance-4.0.1.tgz", + "integrity": "sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==", + "license": "MIT", + "dependencies": { + "ml-array-mean": "^1.1.6", + "ml-distance-euclidean": "^2.0.0", + "ml-tree-similarity": "^1.0.0" + } + }, + "node_modules/ml-distance-euclidean": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ml-distance-euclidean/-/ml-distance-euclidean-2.0.0.tgz", + "integrity": "sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==", + "license": "MIT" + }, + "node_modules/ml-tree-similarity": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ml-tree-similarity/-/ml-tree-similarity-1.0.0.tgz", + "integrity": "sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==", + "license": "MIT", + "dependencies": { + "binary-search": "^1.3.5", + "num-sort": "^2.0.0" + } + }, + "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==", + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "deprecated": "Use your platform's native DOMException instead", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nodemon": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.0.3.tgz", + "integrity": "sha512-7jH/NXbFPxVaMwmBCC2B9F/V6X1VkEdNgx3iu9jji8WxWcvhMWkmhNWhI5077zknOnZnBzba9hZP6bCPJLSReQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nopt": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "*" + } + }, + "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, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/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, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/num-sort": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz", + "integrity": "sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/openai": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/openai/-/openai-4.28.0.tgz", + "integrity": "sha512-JM8fhcpmpGN0vrUwGquYIzdcEQHtFuom6sRCbbCM6CfzZXNuRk33G7KfeRAIfnaCxSpzrP5iHtwJzIm6biUZ2Q==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "digest-fetch": "^1.3.0", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7", + "web-streams-polyfill": "^3.2.1" + }, + "bin": { + "openai": "bin/cli" + } + }, + "node_modules/openapi-types": { + "version": "12.1.3", + "resolved": "https://registry.npmjs.org/openapi-types/-/openapi-types-12.1.3.tgz", + "integrity": "sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==", + "license": "MIT" + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-queue": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "license": "MIT", + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "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, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "license": "ISC", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", + "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==", + "license": "ISC" + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/protobufjs": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz", + "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true, + "license": "MIT" + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-colorful": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/react-composer": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/react-composer/-/react-composer-5.0.3.tgz", + "integrity": "sha512-1uWd07EME6XZvMfapwZmc7NgCZqDemcvicRi3wMJzXsQLvZ3L7fTHVyPy1bZdnWXM4iPjYuNE+uJ41MLKeTtnA==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-dom/node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/react-dropzone": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-12.1.0.tgz", + "integrity": "sha512-iBYHA1rbopIvtzokEX4QubO6qk5IF/x3BtKGu74rF2JkQDXnwC4uO/lHKpaw4PJIV6iIAYOlwLv2FpiGyqHNog==", + "license": "MIT", + "dependencies": { + "attr-accept": "^2.2.2", + "file-selector": "^0.5.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "react": ">= 16.8" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-merge-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/react-merge-refs/-/react-merge-refs-1.1.0.tgz", + "integrity": "sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/react-reconciler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.27.0.tgz", + "integrity": "sha512-HmMDKciQjYmBRGuuhIaKA1ba/7a+UsM5FzOZsMO2JYHt9Jh8reCb7j1eDC95NOyUlKM9KRyvdx0flBuDvYSBoA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.21.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "react": "^18.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "7.9.6", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.9.6.tgz", + "integrity": "sha512-Y1tUp8clYRXpfPITyuifmSoE2vncSME18uVLgaqyxh9H35JWpIfzHo+9y3Fzh5odk/jxPW29IgLgzcdwxGqyNA==", + "license": "MIT", + "dependencies": { + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.9.6", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.9.6.tgz", + "integrity": "sha512-2MkC2XSXq6HjGcihnx1s0DBWQETI4mlis4Ux7YTLvP67xnGxCvq+BcCQSO81qQHVUTM1V53tl4iVVaY5sReCOA==", + "license": "MIT", + "dependencies": { + "react-router": "7.9.6" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/react-router/node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/react-use-measure": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-use-measure/-/react-use-measure-2.1.1.tgz", + "integrity": "sha512-nocZhN26cproIiIduswYpV5y5lQpSQS1y/4KuvUCjSKmw7ZWIS/+g3aFnX3WdBkyuGUtTLif3UTqnLLhbDoQig==", + "license": "MIT", + "dependencies": { + "debounce": "^1.2.1" + }, + "peerDependencies": { + "react": ">=16.13", + "react-dom": ">=16.13" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-cache/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "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" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.10.0.tgz", + "integrity": "sha512-t2v9G2AKxcQ8yrG+WGxctBes1AomT0M4ND7jTFBCVPXQ/WFTvNSefIrNSmLKhIKBrvN8SG+CZslimJcT3W2u2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.10.0", + "@rollup/rollup-android-arm64": "4.10.0", + "@rollup/rollup-darwin-arm64": "4.10.0", + "@rollup/rollup-darwin-x64": "4.10.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.10.0", + "@rollup/rollup-linux-arm64-gnu": "4.10.0", + "@rollup/rollup-linux-arm64-musl": "4.10.0", + "@rollup/rollup-linux-riscv64-gnu": "4.10.0", + "@rollup/rollup-linux-x64-gnu": "4.10.0", + "@rollup/rollup-linux-x64-musl": "4.10.0", + "@rollup/rollup-win32-arm64-msvc": "4.10.0", + "@rollup/rollup-win32-ia32-msvc": "4.10.0", + "@rollup/rollup-win32-x64-msvc": "4.10.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.21.0.tgz", + "integrity": "sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", + "license": "MIT" + }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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==", + "license": "MIT", + "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-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "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, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true, + "license": "CC-BY-3.0" + }, + "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, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true, + "license": "CC0-1.0" + }, + "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==", + "license": "MIT", + "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==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stats-gl": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stats-gl/-/stats-gl-2.0.1.tgz", + "integrity": "sha512-EhFm1AxoSBK3MflkFawZ4jmOX1dWu0nBAtCpvGxGsondEvCpsohbpRpM8pi8UAcxG5eRsDsCiRcxdH20j3Rp9A==", + "license": "MIT" + }, + "node_modules/stats.js": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/stats.js/-/stats.js-0.17.0.tgz", + "integrity": "sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw==", + "license": "MIT" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", + "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/suspend-react": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/suspend-react/-/suspend-react-0.1.3.tgz", + "integrity": "sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=17.0" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/three": { + "version": "0.160.0", + "resolved": "https://registry.npmjs.org/three/-/three-0.160.0.tgz", + "integrity": "sha512-DLU8lc0zNIPkM7rH5/e1Ks1Z8tWCGRq6g8mPowdDJpw1CFBJMU7UoJjC6PefXW7z//SSl0b2+GCw14LB+uDhng==", + "license": "MIT" + }, + "node_modules/three-mesh-bvh": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/three-mesh-bvh/-/three-mesh-bvh-0.6.8.tgz", + "integrity": "sha512-EGebF9DZx1S8+7OZYNNTT80GXJZVf+UYXD/HyTg/e2kR/ApofIFfUS4ZzIHNnUVIadpnLSzM4n96wX+l7GMbnQ==", + "license": "MIT", + "peerDependencies": { + "three": ">= 0.151.0" + } + }, + "node_modules/three-stdlib": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/three-stdlib/-/three-stdlib-2.29.4.tgz", + "integrity": "sha512-XNzGCrz/uAk9XoLwd35eN7dQyI4ggXZTeqjcN034YdYBpBlNO9kmLHehl/0Nw9jCelblB7jla+unHAOIyLyV6Q==", + "license": "MIT", + "dependencies": { + "@types/draco3d": "^1.4.0", + "@types/offscreencanvas": "^2019.6.4", + "@types/webxr": "^0.5.2", + "draco3d": "^1.4.1", + "fflate": "^0.6.9", + "potpack": "^1.0.1" + }, + "peerDependencies": { + "three": ">=0.128.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/touch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", + "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "dev": true, + "license": "ISC", + "dependencies": { + "nopt": "~1.0.10" + }, + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/troika-three-text": { + "version": "0.47.2", + "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.47.2.tgz", + "integrity": "sha512-qylT0F+U7xGs+/PEf3ujBdJMYWbn0Qci0kLqI5BJG2kW1wdg4T1XSxneypnF05DxFqJhEzuaOR9S2SjiyknMng==", + "license": "MIT", + "dependencies": { + "bidi-js": "^1.0.2", + "troika-three-utils": "^0.47.2", + "troika-worker-utils": "^0.47.2", + "webgl-sdf-generator": "1.1.1" + }, + "peerDependencies": { + "three": ">=0.125.0" + } + }, + "node_modules/troika-three-utils": { + "version": "0.47.2", + "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.47.2.tgz", + "integrity": "sha512-/28plhCxfKtH7MSxEGx8e3b/OXU5A0xlwl+Sbdp0H8FXUHKZDoksduEKmjQayXYtxAyuUiCRunYIv/8Vi7aiyg==", + "license": "MIT", + "peerDependencies": { + "three": ">=0.125.0" + } + }, + "node_modules/troika-worker-utils": { + "version": "0.47.2", + "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.47.2.tgz", + "integrity": "sha512-mzss4MeyzUkYBppn4x5cdAqrhBHFEuVmMMgLMTyFV23x6GvQMyo+/R5E5Lsbrt7WSt5RfvewjcwD1DChRTA9lA==", + "license": "MIT" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "license": "0BSD" + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", + "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/utility-types": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz", + "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8n": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/v8n/-/v8n-1.5.1.tgz", + "integrity": "sha512-LdabyT4OffkyXFCe9UT+uMkxNBs5rcTVuZClvxQr08D5TUgo1OFKkoT65qYRCsiKBl/usHjpXvP4hHMzzDRj3A==", + "license": "MIT" + }, + "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, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.2.tgz", + "integrity": "sha512-uwiFebQbTWRIGbCaTEBVAfKqgqKNKMJ2uPXsXeLIZxM8MVMjoS3j0cG8NrPxdDIadaWnPSjrkLWffLSC+uiP3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.19.3", + "postcss": "^8.4.35", + "rollup": "^4.2.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", + "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/web-vitals": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-4.2.4.tgz", + "integrity": "sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==", + "license": "Apache-2.0" + }, + "node_modules/webgl-constants": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/webgl-constants/-/webgl-constants-1.1.1.tgz", + "integrity": "sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg==" + }, + "node_modules/webgl-sdf-generator": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz", + "integrity": "sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA==", + "license": "MIT" + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "license": "ISC", + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/zod": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", + "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.20.3", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.20.3.tgz", + "integrity": "sha512-/Q3wnyxAfCt94ZcrGiXXoiAfRqasxl9CX64LZ9fj+4dKH68zulUtU0uk1WMxQPfAxQ0ZI70dKzcoW7hHj+DwSQ==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.20.0" + } + }, + "node_modules/zustand": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-3.7.2.tgz", + "integrity": "sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==", + "license": "MIT", + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000000000000000000000000000000000000..a0d42e12310b8b6404e9c990556c1d4506361a8f --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "digital-human", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "private": true, + "workspaces": [ + "apps/*" + ], + "scripts": { + "client": "npm run dev --prefix apps/frontend", + "server": "npm run dev --prefix apps/backend", + "dev": "npm-run-all --parallel client server" + }, + "devDependencies": { + "nodemon": "^3.0.3", + "npm-run-all": "^4.1.5" + } +} \ No newline at end of file diff --git a/railway.toml b/railway.toml new file mode 100644 index 0000000000000000000000000000000000000000..545feb8757b2e4be31f3d58ae345574702f471f4 --- /dev/null +++ b/railway.toml @@ -0,0 +1,12 @@ +# Railway Deployment Configuration +# This file tells Railway how to build and deploy your backend + +[build] +builder = "NIXPACKS" + +[deploy] +startCommand = "cd apps/backend && node server.js" +healthcheckPath = "/health" +healthcheckTimeout = 100 +restartPolicyType = "ON_FAILURE" +restartPolicyMaxRetries = 10 diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000000000000000000000000000000000000..e386f3874203d794af095b9a75f32e6c4f9690a1 --- /dev/null +++ b/vercel.json @@ -0,0 +1,21 @@ +{ + "version": 2, + "builds": [ + { + "src": "apps/frontend/package.json", + "use": "@vercel/static-build", + "config": { + "distDir": "dist" + } + } + ], + "routes": [ + { + "src": "/(.*)", + "dest": "/apps/frontend/$1" + } + ], + "env": { + "VITE_API_URL": "@vite_api_url" + } +} \ No newline at end of file