diff --git a/.agent/skills/managers.md b/.agent/skills/managers.md index 37c004c..ed8722d 100644 --- a/.agent/skills/managers.md +++ b/.agent/skills/managers.md @@ -15,12 +15,9 @@ export class SomeManager { return SomeManager._instance; } - private constructor() { - // init logic - } + private constructor() {} destroy(): void { - // cleanup logic SomeManager._instance = null; } } @@ -28,43 +25,12 @@ export class SomeManager { ## Managers in this project -| Manager | File | Role | -| -------------------- | ------------------------------------ | ----------------------------------------------------------------------------- | -| `AudioManager` | `src/managers/AudioManager.ts` | Music and SFX playback. | -| `InteractionManager` | `src/managers/InteractionManager.ts` | Focus, nearby, trigger, grab, and hand-grab interaction state. | -| `GameManager` | target-state only | Future single source of truth for phase, zone, mission, input lock, dialogue. | -| `CinematicManager` | target-state only | Future GSAP timeline orchestrator. | -| `ZoneManager` | target-state only | Future zone entry/exit detection and LOD triggers. | +| Manager | File | Role | +| -------------------- | ------------------------------------ | -------------------------------------------------------------- | +| `AudioManager` | `src/managers/AudioManager.ts` | Music and SFX playback. | +| `InteractionManager` | `src/managers/InteractionManager.ts` | Focus, nearby, trigger, grab, and hand-grab interaction state. | -## Target-State GameManager - -`GameManager` does not exist in the current implementation. The following pattern is target-state guidance only and should not be applied until the manager exists in code. - -```ts -export class GameManager { - cinematic!: CinematicManager; - audio!: AudioManager; - zone!: ZoneManager; - - private constructor() { - this.cinematic = CinematicManager.getInstance(); - this.audio = AudioManager.getInstance(); - this.zone = ZoneManager.getInstance(); - } -} -``` - -When a `GameManager` exists, components and hooks should access other managers through it: - -```ts -// Correct -GameManager.getInstance().cinematic.play("intro"); - -// Wrong — never import sub-managers directly in components -CinematicManager.getInstance().play("intro"); -``` - -## Target-State Subscribe Pattern +## Subscribe Pattern ```ts private listeners = new Set<() => void>() @@ -79,28 +45,26 @@ private emit(): void { } ``` -In that target-state manager, every `set*()` method calls `this.emit()` to notify subscribers. +Managers that expose state to React call `this.emit()` from every `set*()` method that changes subscribed state. -## Target-State React Bridge Hook +## React Bridge Hook ```ts -// hooks/useGameState.ts -export function useGameState() { - const game = GameManager.getInstance(); - const [state, setState] = useState(game.getState()); +// hooks/interaction/useInteraction.ts +const manager = InteractionManager.getInstance(); - useEffect(() => { - return game.subscribe(() => setState({ ...game.getState() })); - }, [game]); - - return state; +export function useInteraction(): InteractionSnapshot { + return useSyncExternalStore( + manager.subscribe.bind(manager), + manager.getState.bind(manager), + ); } ``` ## Rules - Do not add a `GameManager` unless the feature requires a real shared gameplay state owner. -- Current managers may be imported directly until the target-state orchestrator exists. +- Current managers may be imported directly. - Keep singleton managers limited to side-effect services or shared interaction state. - Always call `destroy()` on cleanup when a manager owns external resources. - Never create manager instances with `new` — always use `.getInstance()`. diff --git a/.gitattributes b/.gitattributes index 3ae4da4..33614d9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -23,3 +23,6 @@ # Video (cinematics) *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text + +# ML models +*.task filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 6759cea..51c41ae 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -69,16 +69,21 @@ jobs: - name: 📥 Install run: npm ci + - name: 🧹 Lint + run: npm run lint + + - name: 🎨 Format check + run: npm run format:check + - name: 📦 Build run: npm run build - name: 📏 Check bundle size run: | - # Check generated app assets only; public/ model files are runtime assets copied to dist. - SIZE=$(du -k dist/assets | cut -f1) + # Check generated JS/CSS bundles only; public runtime assets are copied to dist/assets too. + SIZE=$(node -e "const fs=require('fs');const path=require('path');function walk(dir){return fs.readdirSync(dir,{withFileTypes:true}).flatMap((entry)=>{const file=path.join(dir,entry.name);return entry.isDirectory()?walk(file):file;});}const bytes=walk('dist/assets').filter((file)=>/\.(js|css)$/.test(file)).reduce((sum,file)=>sum+fs.statSync(file).size,0);console.log(Math.ceil(bytes/1024));") echo "Bundle size: ${SIZE}KB" - # Threshold: 5000KB (configurable) THRESHOLD=5000 if [ "$SIZE" -gt "$THRESHOLD" ]; then diff --git a/.github/workflows/weekly-branch-promotions.yml b/.github/workflows/weekly-branch-promotions.yml index 7b1a8c4..c53a349 100644 --- a/.github/workflows/weekly-branch-promotions.yml +++ b/.github/workflows/weekly-branch-promotions.yml @@ -1,59 +1,58 @@ -name: 🔁 Weekly Branch Promotions +name: 🔁 Branch Promotions on: schedule: - - cron: "0 6 * * 1" + - cron: "0 6 * * 1,4" # Lundi et Jeudi à 6h UTC (design → develop) + - cron: "0 6 * * 1" # Lundi à 6h UTC (develop → main) workflow_dispatch: + inputs: + promotion: + description: "Which promotion to run" + required: true + type: choice + options: + - design-to-develop + - develop-to-main + - both permissions: contents: read pull-requests: write concurrency: - group: weekly-branch-promotions + group: branch-promotions cancel-in-progress: false jobs: - open-promotion-pr: - name: Open ${{ matrix.head }} → ${{ matrix.base }} + design-to-develop: + name: Open design → develop runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - include: - - head: develop - base: design - title: "chore: merge develop into design" - - head: design - base: main - title: "chore: merge design into main" - + if: | + (github.event_name == 'schedule') || + (github.event_name == 'workflow_dispatch' && (github.event.inputs.promotion == 'design-to-develop' || github.event.inputs.promotion == 'both')) steps: - name: ⬇️ Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: 🔁 Open promotion PR env: GH_TOKEN: ${{ github.token }} - BASE_BRANCH: ${{ matrix.base }} - HEAD_BRANCH: ${{ matrix.head }} - PR_TITLE: ${{ matrix.title }} run: | set -euo pipefail - git fetch origin "$BASE_BRANCH" "$HEAD_BRANCH" + git fetch origin develop design - if git merge-base --is-ancestor "origin/$HEAD_BRANCH" "origin/$BASE_BRANCH"; then - echo "No promotion needed: $BASE_BRANCH already contains $HEAD_BRANCH." + if git merge-base --is-ancestor origin/design origin/develop; then + echo "No promotion needed: develop already contains design." exit 0 fi existing_pr="$(gh pr list \ --state open \ - --base "$BASE_BRANCH" \ - --head "$GITHUB_REPOSITORY_OWNER:$HEAD_BRANCH" \ + --base develop \ + --head "$GITHUB_REPOSITORY_OWNER:design" \ --json number \ --jq '.[0].number // empty')" @@ -63,7 +62,50 @@ jobs: fi gh pr create \ - --base "$BASE_BRANCH" \ - --head "$HEAD_BRANCH" \ - --title "$PR_TITLE" \ - --body "Automated weekly promotion PR from \`$HEAD_BRANCH\` to \`$BASE_BRANCH\`." + --base develop \ + --head design \ + --title "chore: merge design into develop" \ + --body "Automated promotion PR from \`design\` to \`develop\`." + + develop-to-main: + name: Open develop → main + runs-on: ubuntu-latest + if: | + (github.event_name == 'schedule' && github.event.schedule == '0 6 * * 1') || + (github.event_name == 'workflow_dispatch' && (github.event.inputs.promotion == 'develop-to-main' || github.event.inputs.promotion == 'both')) + steps: + - name: ⬇️ Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: 🔁 Open promotion PR + env: + GH_TOKEN: ${{ github.token }} + run: | + set -euo pipefail + + git fetch origin main develop + + if git merge-base --is-ancestor origin/develop origin/main; then + echo "No promotion needed: main already contains develop." + exit 0 + fi + + existing_pr="$(gh pr list \ + --state open \ + --base main \ + --head "$GITHUB_REPOSITORY_OWNER:develop" \ + --json number \ + --jq '.[0].number // empty')" + + if [ -n "$existing_pr" ]; then + echo "Promotion PR already open: #$existing_pr." + exit 0 + fi + + gh pr create \ + --base main \ + --head develop \ + --title "chore: merge develop into main" \ + --body "Automated weekly promotion PR from \`develop\` to \`main\`." diff --git a/GAME_FLOW.md b/GAME_FLOW.md deleted file mode 100644 index ed68f79..0000000 --- a/GAME_FLOW.md +++ /dev/null @@ -1,187 +0,0 @@ -# Game Flow - La Fabrik - -## Étapes du jeu - -``` -intro → start-intro → naming → bienvenue → star-move → mission2 → searching_problem → preparation → outOfFabrik -``` - ---- - -## Détail des étapes - -### 1. `intro` (initial) - -- État initial au chargement du jeu -- Aucune action, juste une étape de départ -- Transition automatique vers `start-intro` - -### 2. `start-intro` - -- **Déclenchement** : Auto-transition depuis `intro` quand la scène est chargée -- **Action** : Joue l'audio d'intro (`intro`) -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `naming` quand l'audio se termine - -### 3. `naming` - -- **Déclenchement** : Quand l'audio d'intro se termine -- **Action** : Affiche un input pour demander le prénom du joueur -- **Attente** : L'utilisateur entre son prénom et valide -- **Transition** : Vers `bienvenue` quand l'utilisateur valide - -### 4. `bienvenue` - -- **Déclenchement** : Quand l'utilisateur valide son prénom -- **Actions** : - - Affiche "Bienvenue {prénom} !" à l'écran - - Joue l'audio de bienvenue -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `star-move` quand l'audio se termine - -### 5. `star-move` - -- **Déclenchement** : Quand l'audio de bienvenue se termine -- **Action** : Active le mouvement du joueur (`setCanMove(true)`) -- **État** : Le joueur peut maintenant se déplacer librement -- **Zone** : La détection de zone devient active (ZoneDetection) - -### 6. `mission2` - -- **Déclenchement** : Quand le joueur entre dans la zone `fabrikExit` (position: `[-5, 25, -15]`) -- **Actions** : - - Stocke `activityCity: false` dans le store Zustand - - Joue l'audio `alertCentral` -- **État** : Les objets avec hook `useActivityCity()` détectent le changement et jouent leurs animations -- **Attente** : Le joueur atteint la zone de trigger pour `searching_problem` - -### 7. `searching_problem` - -- **Déclenchement** : Quand le joueur entre dans la zone `searchingProblemZone` (position: `[-5, 25, -30]`) -- **Actions** : - - Joue l'audio `searchingProblem` - - Affiche l'objet "central" (position: `[1, 15, -45]`) -- **Attente** : Le joueur interagit avec l'objet "central" - -### 8. `preparation` - -- **Déclenchement** : Quand le joueur interagit avec l'objet "central" -- **Actions** : - - Bloque le mouvement (`setCanMove(false)`) - - Cache l'objet "central" - -### 9. `outOfFabrik` - -- **Déclenchement** : (non implémenté pour le moment) -- **Action** : Transition vers l'étape finale - ---- - -## Fichiers clés - -| Fichier | Rôle | -| --------------------------------------- | --------------------------------------------------------- | -| `src/stores/gameStore.ts` | Store Zustand pour l'état global du jeu | -| `src/stateManager/GameStepManager.ts` | Synchronise avec le store Zustand | -| `src/components/game/GameFlow.tsx` | Gère les transitions automatiques et la lecture audio | -| `src/components/ui/IntroUI.tsx` | Affiche l'input pour le prénom et le message de bienvenue | -| `src/components/zone/ZoneDetection.tsx` | Détecte quand le joueur entre dans une zone | -| `src/components/3d/CentralObject.tsx` | Objet interactif "central" pour la mission 2 | -| `src/data/audioConfig.ts` | Chemins des fichiers audio | -| `src/data/zones.ts` | Configuration des zones de transition | -| `src/hooks/useActivityCity.ts` | Hook pour détecter le changement d'activité de la ville | - ---- - -## Configuration audio - -```typescript -// src/data/audioConfig.ts -export const AUDIO_PATHS = { - intro: "/sounds/fa.mp3", - bienvenue: "/sounds/fa.mp3", - alertCentral: "/sounds/fa.mp3", - searchingProblem: "/sounds/fa.mp3", -}; -``` - ---- - -## Configuration des zones - -```typescript -// src/data/zones.ts -export const ZONES: Zone[] = [ - { - id: "fabrikExit", - position: [-5, 25, -15], - radius: 10, - height: 20, - targetStep: "mission2", - }, - { - id: "searchingProblemZone", - position: [-5, 25, -30], - radius: 10, - height: 20, - targetStep: "searching_problem", - }, -]; -``` - ---- - -## Store Zustand - -```typescript -// src/stores/gameStore.ts -interface GameState { - step: GameStep; - activityCity: boolean; - playerName: string; - canMove: boolean; - setStep: (step: GameStep) => void; - setActivityCity: (value: boolean) => void; - setPlayerName: (name: string) => void; - setCanMove: (canMove: boolean) => void; -} -``` - ---- - -## Hooks personnalisés - -### useActivityCity - -Permet aux objets 3D de réagir au changement d'activité de la ville : - -```typescript -import { useActivityCity } from "@/hooks/useActivityCity"; - -function MyAnimatedObject() { - const activityCity = useActivityCity(); // true par défaut, false en mission2 - - // L'animation se déclenche quand activityCity change à false - // Utiliser useEffect pour réagir au changement -} -``` - ---- - -## Debug - -En mode debug (`?debug` dans l'URL), on peut voir : - -- **Game Step** : L'étape actuelle dans le panneau lil-gui -- **Player Position** : Position X, Y, Z du joueur en temps réel -- **Zone Visualization** : Anneaux visuels au sol pour les zones + cylindres transparents - ---- - -## Notes techniques - -- Le mouvement du joueur est bloqué tant que `canMove` est `false` -- Le store Zustand (`useGameStore`) est la source principale de vérité -- `GameStepManager` synchronise automatiquement avec le store Zustand lors des transitions -- Les transitions via les zones utilisent `GameStepManager.transitionTo()` qui met à jour le store -- L'audio utilise un callback `onEnded` pour déclencher les transitions automatiques diff --git a/README.md b/README.md index 9c56a97..00be744 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The current prototype puts the player in a repair-oriented world where they prog - Production map loaded from `public/map.json` - Progressive map/model/collision/stage loading overlay - Player controller with pointer lock, `ZQSD` movement, jump, octree collision, trigger input, and grab input -- Reusable repair-game flow for `bike`, `pylone`, and `ferme` +- Reusable repair-game flow for `ebike`, `pylon`, and `farm` - Repair case animation, exploded model scan, broken-part markers, grabbable replacements, snap-to-placeholder placement, install validation, reassembly, and completion - Shared interaction system for trigger and grab objects - Rapier physics for gameplay objects while the player keeps a Three.js octree collision controller @@ -18,7 +18,7 @@ The current prototype puts the player in a repair-oriented world where they prog - Category-based audio manager for music, SFX, and dialogue - Dialogue manifest, SRT subtitles, subtitle overlay, and dialogue queueing - Cinematic manifest with GSAP camera keyframes and optional dialogue cues -- In-game settings menu for volumes, subtitles, subtitle language, and the currently staged repair-runtime toggle +- In-game settings menu for volumes, subtitles, and subtitle language - Debug mode with `?debug`, lil-gui controls, game-state panel, hand-tracking panel, debug camera, physics playground, and R3F perf - `/editor` route for map transforms, SRT editing, dialogue manifest editing, cinematic manifest editing, preview, validation, export, and dev-server saves - `/docs` route that renders the repository documentation inside the app @@ -112,9 +112,15 @@ npm run format:check npm run build ``` +Regenerate runtime map data after editing `public/map_raw.json`: + +```bash +npm run map:transform +``` + ## Optional Hand-Tracking Backend -The app can use browser-side MediaPipe, but the default debug source is the local backend. +The app can use the local Python backend, but the default debug source is browser-side MediaPipe. ```bash python3.11 -m venv backend/.venv @@ -145,6 +151,7 @@ WS ws://localhost:8000/ws | `docs/technical/hand-tracking.md` | Webcam, backend/browser MediaPipe, glove, and gesture flow | | `docs/technical/zustand.md` | Game, settings, and subtitle stores | | `docs/technical/three-debugging.md` | DevTools workflow for stepping into Three.js internals | +| `docs/technical/map-performance.md` | Map draw-call bottlenecks and optimization notes | | `docs/technical/editor.md` | Editor implementation details | | `docs/technical/animation.md` | Animated, explodable, and reusable 3D model components | | `docs/user/features.md` | Implemented feature inventory | @@ -156,8 +163,7 @@ WS ws://localhost:8000/ws ## Current Caveats - This is still a prototype, not a complete game runtime. -- The repair-runtime toggle is stored in settings and displayed in the UI, but the repair game currently still runs locally in React/Three. -- `useRepairMovementLocked()` currently returns `false`, so the movement-lock rule and indicator are present but disabled on `develop`. +- `useRepairMovementLocked()` locks player movement during focused repair steps and drives the repair movement indicator. - Production editor persistence does not exist. Save endpoints in `vite.config.ts` are local Vite dev-server helpers. - The player uses octree collision while gameplay objects use Rapier. Keep that boundary deliberate unless the whole player controller is migrated. diff --git a/backend/connection_manager.py b/backend/connection_manager.py index db62611..064db72 100644 --- a/backend/connection_manager.py +++ b/backend/connection_manager.py @@ -1,6 +1,6 @@ from __future__ import annotations -from dataclasses import dataclass, field +from dataclasses import dataclass from typing import Any from uuid import uuid4 @@ -13,7 +13,6 @@ class ClientConnection: websocket: WebSocket is_processing: bool = False last_frame_at: float = 0.0 - metadata: dict[str, Any] = field(default_factory=dict) class ConnectionManager: diff --git a/docs/code-review-preparation.md b/docs/code-review-preparation.md index 5df223e..2f0abf3 100644 --- a/docs/code-review-preparation.md +++ b/docs/code-review-preparation.md @@ -19,7 +19,7 @@ La-Fabrik est une expérience web 3D en React, Vite, Three.js et React Three Fib Le joueur est dans un monde 3D et avance dans une progression de réparation : ```txt -intro -> bike -> pylone -> ferme -> outro +intro -> ebike -> pylon -> farm -> outro ``` Les trois piliers à connaître pour la review : @@ -62,7 +62,7 @@ HomePage -> World -> GameMap -> GameStageContent - -> RepairGame bike/pylone/ferme + -> RepairGame ebike/pylon/farm -> GameMusic -> GameDialogues -> Player @@ -121,7 +121,7 @@ Phrase à retenir : Piège à connaître : -`useRepairMovementLocked()` retourne actuellement `false`. Le lock de mouvement est prévu dans le code et l'UI, mais il est désactivé sur `develop`. +`useRepairMovementLocked()` lit maintenant l'étape de mission active et verrouille le déplacement pendant les phases de réparation qui doivent immobiliser le joueur. ### Interaction @@ -324,7 +324,7 @@ Ouvrir dans cet ordre : `RepairGame` reçoit une mission : ```tsx - + ``` Puis il vérifie : @@ -347,7 +347,7 @@ Les variations mission sont dans `repairMissions.ts` : ### Pourquoi c'est bien - Un seul flow réutilisable. -- Moins de duplication entre `bike`, `pylone`, `ferme`. +- Moins de duplication entre `ebike`, `pylon`, `farm`. - Les règles générales restent dans les composants. - Les variations restent dans la data. - Le debug panel peut tester les mêmes steps que le vrai jeu. @@ -471,9 +471,9 @@ Main states : ```txt intro -bike -pylone -ferme +ebike +pylon +farm outro ``` @@ -509,12 +509,7 @@ Gère : - menu ouvert/fermé ; - volumes ; - sous-titres ; -- langue ; -- `repairRuntime`. - -Piège : - -`repairRuntime` est stocké et affiché, mais pas encore utilisé par `RepairGame`. +- langue. ### Subtitle store @@ -531,16 +526,15 @@ Phrase simple : Si on te pose une question précise, réponds vrai. -| Sujet | Réponse honnête | -| ------------------------- | ------------------------------------------------------------------------ | -| Lock mouvement réparation | Le hook existe mais retourne `false`, donc pas actif actuellement. | -| `repairRuntime` JS/Python | Le choix est stocké dans settings, mais pas consommé par le repair game. | -| Old debug flags | `noMusic`, `noMap`, `noDialogues`, etc. ne sont plus branchés. | -| Player physics | Le joueur n'est pas Rapier, il utilise capsule + octree. | -| Collision map | L'octree vient de nodes dédiés, actuellement `terrain`. | -| Editor save | Ce sont des endpoints Vite dev, pas une API de prod. | -| Cinematics | `GameCinematics` est monté seulement pendant `outro` dans `World`. | -| Hand tracking depth | Le `z` MediaPipe est relatif, pas une vraie profondeur monde stable. | +| Sujet | Réponse honnête | +| ------------------------- | -------------------------------------------------------------------- | +| Lock mouvement réparation | Les étapes repair actives bloquent le déplacement via le hook dédié. | +| Old debug flags | `noMusic`, `noMap`, `noDialogues`, etc. ne sont plus branchés. | +| Player physics | Le joueur n'est pas Rapier, il utilise capsule + octree. | +| Collision map | L'octree vient de nodes dédiés, actuellement `terrain`. | +| Editor save | Ce sont des endpoints Vite dev, pas une API de prod. | +| Cinematics | `GameCinematics` est monté seulement pendant `outro` dans `World`. | +| Hand tracking depth | Le `z` MediaPipe est relatif, pas une vraie profondeur monde stable. | ## Si l'évaluateur ouvre un fichier au hasard @@ -833,8 +827,6 @@ Pour réutiliser le même flow sur plusieurs missions et garder les variations d ### Qu'est-ce qui est incomplet ? - pas de vrai `GameManager` global ; -- lock mouvement réparation désactivé ; -- `repairRuntime` pas consommé ; - editor save uniquement en dev ; - hand tracking encore approximatif sur profondeur et smoothing. @@ -869,8 +861,7 @@ Fichiers à avoir en tête : Réponses pièges à réviser : -- lock mouvement repair désactivé actuellement ; -- `repairRuntime` pas consommé ; +- lock mouvement repair actif sur les étapes dédiées ; - player pas Rapier ; - save editor pas production ; - old boot flags non branchés. diff --git a/docs/technical/animation.md b/docs/technical/animation.md index f926129..70a563d 100644 --- a/docs/technical/animation.md +++ b/docs/technical/animation.md @@ -46,13 +46,11 @@ It supports: The debug physics scene currently uses it to preview: ```txt -public/models/electricienne_animated/model.gltf +public/models/electricienne-animated/model.gltf ``` with the `Dance` animation. -`src/hooks/animation/useCharacterAnimation.ts` is a hook-level alternative for components that need to own their group ref and animation controls directly. - ## GLTF Reuse Use `useClonedObject` when a GLTF scene is reused by a component instance. It memoizes `scene.clone(true)` and keeps clone creation out of render churn. diff --git a/docs/technical/architecture.md b/docs/technical/architecture.md index d406164..9d6e006 100644 --- a/docs/technical/architecture.md +++ b/docs/technical/architecture.md @@ -107,7 +107,7 @@ It owns: - `mainState` - intro state -- `bike`, `pylone`, and `ferme` mission state +- `ebike`, `pylon`, and `farm` mission state - outro state - `isCinematicPlaying` - progression actions @@ -297,8 +297,7 @@ public/models/{name}/model.gltf - The repository is still a prototype. - There is no central production `GameManager`. - The repair game is implemented, but broader mission orchestration is still light. -- `useRepairMovementLocked()` currently returns `false`, so repair movement lock is disabled even though the rule and UI component exist. -- The repair-runtime setting is stored in settings but not consumed by the repair-game implementation. +- `useRepairMovementLocked()` locks player movement during focused repair steps. - Player collision and Rapier gameplay physics are separate systems. - Editor persistence is local development tooling only. - Debug systems are still part of active scene composition and should remain easy to identify. diff --git a/docs/technical/editor.md b/docs/technical/editor.md index 688c46b..2b13851 100644 --- a/docs/technical/editor.md +++ b/docs/technical/editor.md @@ -4,7 +4,7 @@ This document describes the map editor that exists in the current codebase. ## Purpose -The editor is a React route used to inspect and adjust the `public/map.json` scene data from inside the La-Fabrik app. It shares the same `MapNode` data format as the game scene and uses React Three Fiber for rendering. +The editor is a React route used to inspect and adjust the current hierarchical `public/map.json` scene data from inside the La-Fabrik app. It exposes editable object nodes as a flat list for UI selection, while preserving and saving the full map tree. ## Routing @@ -52,7 +52,7 @@ src/ ## Responsibilities -`src/pages/editor/page.tsx` is the route-level composition component. It owns route-specific state such as selected object, hovered object, transform mode, selection lock, player-mode toggle, cinematic preview requests, and editor scene loading state. +`src/pages/editor/page.tsx` is the route-level composition component. It owns route-specific state such as primary selected object, selected object indexes, hovered object, transform mode, selection lock, player-mode toggle, cinematic preview requests, and editor scene loading state. `src/hooks/editor/useEditorSceneData.ts` loads the default map data and handles folder uploads. @@ -60,7 +60,7 @@ src/ `src/components/editor/scene/EditorScene.tsx` composes the editor canvas scene, camera controls, lights, keyboard shortcuts, and `EditorMap`. -`src/components/editor/scene/EditorMap.tsx` renders map nodes, fallback cubes, selection highlighting, and transform controls. +`src/components/editor/scene/EditorMap.tsx` renders map nodes, fallback cubes, selection highlighting, and transform controls. For multi-selection, it attaches `TransformControls` to a temporary group centered on the selected nodes, then decomposes the group delta back into each selected node transform. `src/components/editor/EditorControls.tsx` renders the HTML control panel outside the canvas. The panel is organized into top-level `details` groups: `Editor`, `Cinematics`, `Dialogues`, and `SRT`. @@ -72,7 +72,7 @@ src/ `src/controls/editor/FlyController.tsx` provides editor movement controls for player-style navigation. -`src/utils/map/loadMapSceneData.ts` is shared by the game map and editor. It loads `/map.json` and resolves available `public/models/{name}/model.glb` files first, then falls back to `public/models/{name}/model.gltf`. +`src/utils/map/loadMapSceneData.ts` is shared by the game map and editor. It loads `/map.json`, validates the hierarchical payload, exposes editable nodes with their `sourcePath` back to the tree, and resolves available `public/models/{name}/model.glb` files first, then falls back to `public/models/{name}/model.gltf`. `src/utils/editor/loadEditorScene.ts` contains editor-only upload handling for user-selected folders. @@ -87,22 +87,13 @@ interface MapNode { position: [number, number, number]; rotation: [number, number, number]; scale: [number, number, number]; + sourcePath?: number[]; } ``` -`public/map.json` is expected to be a `MapNode[]`. +`public/map.json` may be hierarchical. The editor keeps the hierarchy in `SceneData.mapTree` and stores editable entries in `SceneData.mapNodes` with a `sourcePath` back to the real tree node. -```json -[ - { - "name": "pylone", - "type": "Mesh", - "position": [0, 5, 0], - "rotation": [0, 1.57, 0], - "scale": [1, 1, 1] - } -] -``` +Group nodes use `role: "group"`; editable nodes keep `name`, `type`, `position`, `rotation`, and `scale`. Each node `name` maps to a model folder: @@ -122,20 +113,26 @@ If `model.glb` and `model.gltf` are both missing, the editor renders a fallback 2. `useEditorSceneData` calls `loadMapSceneData()`. 3. `loadMapSceneData()` loads `/map.json` and available model URLs. 4. If `/map.json` is missing, the page displays a folder-upload flow. -5. `EditorSceneLoadingTracker` uses drei `useProgress()` to update the fullscreen editor loading overlay while models load. +5. The route-level loading overlay reports map JSON loading, then hands off to the editor scene once the map payload is ready. 6. `EditorScene` renders the grid, lights, camera controls, and map nodes inside `Suspense`. -7. `EditorControls` exposes transform mode, history actions, export, save, JSON preview, selection lock, and the cinematic/dialogue/SRT editors. +7. `EditorControls` exposes transform mode, terrain snap, terrain-selection lock, add/delete node, precise scale inputs, history actions, camera focus/reset, export, save, JSON preview, selection lock, multi-selection status, and the cinematic/dialogue/SRT editors. ## Controls - Click: select a node. +- `Shift` + right click: add or remove a node from the multi-selection. - `Esc`: clear selection. -- Click empty space: clear selection. -- Selection lock button: prevent object clicks, empty-space clicks, and `Esc` from changing the current selection. +- Selection lock button: prevent object clicks and `Esc` from changing the current selection. - Selection clear button: intentionally clear the current selection even when the lock is active. - `T`: translate mode. - `R`: rotate mode. - `S`: scale mode. +- Snap terrain on move: enabled by default and applied while translating an object. +- Multi-selection transforms use a temporary centered group and write the resulting position, rotation, and scale back to every selected map node. +- Lock terrain: enabled by default so terrain remains visible but ignores selection clicks. +- Camera action: centers on the selected object or resets to the editor home view. +- Add node: creates a fallback cube under `blocking` using the requested model folder name. +- Delete selected node: removes the editable node from the preserved map tree. - `Ctrl+Z` or `Cmd+Z`: undo. - `Ctrl+Y` or `Cmd+Y`: redo. - `WASD`, `ZQSD`, or arrow keys: move in player-controller mode. @@ -146,21 +143,20 @@ If `model.glb` and `model.gltf` are both missing, the editor renders a fallback The editor supports two output paths: -- Export JSON downloads the current `MapNode[]` as `map.json`. -- Save to Server posts the current `MapNode[]` to `/api/save-map`. +- Export JSON downloads the current hierarchical map tree as `map.json`. +- Save to Server posts the current hierarchical map tree to `/api/save-map`. -The dev-only `/api/save-map` endpoint is implemented by the Vite plugin in `vite.config.ts`. It writes to `public/map.json` and enforces a maximum payload size. +The dev-only `/api/save-map` endpoint is implemented by the Vite plugin in `vite.config.ts`. It validates the payload through the shared map parser, writes to `public/map.json`, and enforces a maximum payload size. ## Editor Loading Overlay -The editor uses `SceneLoadingOverlay` like the runtime scene. `EditorSceneLoadingTracker` lives in `src/pages/editor/page.tsx` and reads drei `useProgress()` inside the canvas. +The editor uses `SceneLoadingOverlay` like the runtime scene for the route-level map JSON loading phase. -The route tracks two loading phases: +The route tracks the map JSON loading phase: - map JSON loading through `useEditorSceneData()` -- model loading through `useProgress()` -The overlay is rendered outside the canvas so it remains visible while the R3F scene mounts. The scene itself is wrapped in `Suspense` with a `null` fallback; the visual feedback is handled by the overlay instead of by the canvas fallback. +The overlay is rendered outside the canvas so it remains visible while the editor route mounts. Model loading is left to R3F `Suspense` boundaries to avoid progress updates during model render. ## Panel Groups @@ -192,9 +188,9 @@ The state is passed to: - `EditorControls`, to render the lock/unlock button - `EditorScene`, to block `Esc` deselection when locked -- `EditorMap`, to block object selection and empty-space deselection when locked +- `EditorMap`, to block object selection when locked -The clear button calls `onClearSelection` directly from `EditorControls`. This is intentionally separate from scene click behavior so the user always has an explicit way to clear the selection. +The clear button calls `onClearSelection` directly from `EditorControls`. Clicking empty canvas space does not clear the current selection; use `Esc` or the explicit clear button instead. ## Dialogue SRT Editing diff --git a/docs/technical/game-flow.md b/docs/technical/game-flow.md deleted file mode 100644 index ed68f79..0000000 --- a/docs/technical/game-flow.md +++ /dev/null @@ -1,187 +0,0 @@ -# Game Flow - La Fabrik - -## Étapes du jeu - -``` -intro → start-intro → naming → bienvenue → star-move → mission2 → searching_problem → preparation → outOfFabrik -``` - ---- - -## Détail des étapes - -### 1. `intro` (initial) - -- État initial au chargement du jeu -- Aucune action, juste une étape de départ -- Transition automatique vers `start-intro` - -### 2. `start-intro` - -- **Déclenchement** : Auto-transition depuis `intro` quand la scène est chargée -- **Action** : Joue l'audio d'intro (`intro`) -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `naming` quand l'audio se termine - -### 3. `naming` - -- **Déclenchement** : Quand l'audio d'intro se termine -- **Action** : Affiche un input pour demander le prénom du joueur -- **Attente** : L'utilisateur entre son prénom et valide -- **Transition** : Vers `bienvenue` quand l'utilisateur valide - -### 4. `bienvenue` - -- **Déclenchement** : Quand l'utilisateur valide son prénom -- **Actions** : - - Affiche "Bienvenue {prénom} !" à l'écran - - Joue l'audio de bienvenue -- **Attente** : Attend que l'audio se termine -- **Transition** : Vers `star-move` quand l'audio se termine - -### 5. `star-move` - -- **Déclenchement** : Quand l'audio de bienvenue se termine -- **Action** : Active le mouvement du joueur (`setCanMove(true)`) -- **État** : Le joueur peut maintenant se déplacer librement -- **Zone** : La détection de zone devient active (ZoneDetection) - -### 6. `mission2` - -- **Déclenchement** : Quand le joueur entre dans la zone `fabrikExit` (position: `[-5, 25, -15]`) -- **Actions** : - - Stocke `activityCity: false` dans le store Zustand - - Joue l'audio `alertCentral` -- **État** : Les objets avec hook `useActivityCity()` détectent le changement et jouent leurs animations -- **Attente** : Le joueur atteint la zone de trigger pour `searching_problem` - -### 7. `searching_problem` - -- **Déclenchement** : Quand le joueur entre dans la zone `searchingProblemZone` (position: `[-5, 25, -30]`) -- **Actions** : - - Joue l'audio `searchingProblem` - - Affiche l'objet "central" (position: `[1, 15, -45]`) -- **Attente** : Le joueur interagit avec l'objet "central" - -### 8. `preparation` - -- **Déclenchement** : Quand le joueur interagit avec l'objet "central" -- **Actions** : - - Bloque le mouvement (`setCanMove(false)`) - - Cache l'objet "central" - -### 9. `outOfFabrik` - -- **Déclenchement** : (non implémenté pour le moment) -- **Action** : Transition vers l'étape finale - ---- - -## Fichiers clés - -| Fichier | Rôle | -| --------------------------------------- | --------------------------------------------------------- | -| `src/stores/gameStore.ts` | Store Zustand pour l'état global du jeu | -| `src/stateManager/GameStepManager.ts` | Synchronise avec le store Zustand | -| `src/components/game/GameFlow.tsx` | Gère les transitions automatiques et la lecture audio | -| `src/components/ui/IntroUI.tsx` | Affiche l'input pour le prénom et le message de bienvenue | -| `src/components/zone/ZoneDetection.tsx` | Détecte quand le joueur entre dans une zone | -| `src/components/3d/CentralObject.tsx` | Objet interactif "central" pour la mission 2 | -| `src/data/audioConfig.ts` | Chemins des fichiers audio | -| `src/data/zones.ts` | Configuration des zones de transition | -| `src/hooks/useActivityCity.ts` | Hook pour détecter le changement d'activité de la ville | - ---- - -## Configuration audio - -```typescript -// src/data/audioConfig.ts -export const AUDIO_PATHS = { - intro: "/sounds/fa.mp3", - bienvenue: "/sounds/fa.mp3", - alertCentral: "/sounds/fa.mp3", - searchingProblem: "/sounds/fa.mp3", -}; -``` - ---- - -## Configuration des zones - -```typescript -// src/data/zones.ts -export const ZONES: Zone[] = [ - { - id: "fabrikExit", - position: [-5, 25, -15], - radius: 10, - height: 20, - targetStep: "mission2", - }, - { - id: "searchingProblemZone", - position: [-5, 25, -30], - radius: 10, - height: 20, - targetStep: "searching_problem", - }, -]; -``` - ---- - -## Store Zustand - -```typescript -// src/stores/gameStore.ts -interface GameState { - step: GameStep; - activityCity: boolean; - playerName: string; - canMove: boolean; - setStep: (step: GameStep) => void; - setActivityCity: (value: boolean) => void; - setPlayerName: (name: string) => void; - setCanMove: (canMove: boolean) => void; -} -``` - ---- - -## Hooks personnalisés - -### useActivityCity - -Permet aux objets 3D de réagir au changement d'activité de la ville : - -```typescript -import { useActivityCity } from "@/hooks/useActivityCity"; - -function MyAnimatedObject() { - const activityCity = useActivityCity(); // true par défaut, false en mission2 - - // L'animation se déclenche quand activityCity change à false - // Utiliser useEffect pour réagir au changement -} -``` - ---- - -## Debug - -En mode debug (`?debug` dans l'URL), on peut voir : - -- **Game Step** : L'étape actuelle dans le panneau lil-gui -- **Player Position** : Position X, Y, Z du joueur en temps réel -- **Zone Visualization** : Anneaux visuels au sol pour les zones + cylindres transparents - ---- - -## Notes techniques - -- Le mouvement du joueur est bloqué tant que `canMove` est `false` -- Le store Zustand (`useGameStore`) est la source principale de vérité -- `GameStepManager` synchronise automatiquement avec le store Zustand lors des transitions -- Les transitions via les zones utilisent `GameStepManager.transitionTo()` qui met à jour le store -- L'audio utilise un callback `onEnded` pour déclencher les transitions automatiques diff --git a/docs/technical/hand-tracking.md b/docs/technical/hand-tracking.md index 1b4b2a4..0ab9dd1 100644 --- a/docs/technical/hand-tracking.md +++ b/docs/technical/hand-tracking.md @@ -32,7 +32,7 @@ This keeps hand tracking active while the player is inside an interaction zone, The production repair activation conditions are: -- active `mainState` is `bike`, `pylone`, or `ferme` +- active `mainState` is `ebike`, `pylon`, or `farm` - the active mission step is `inspected`, `repairing`, `reassembling`, or `done` This keeps the webcam off during `waiting`, `fragmented`, and `scanning`, then enables hand input only when the repair flow is expected to use hands. diff --git a/docs/technical/interaction.md b/docs/technical/interaction.md index 2c6bee5..02d99da 100644 --- a/docs/technical/interaction.md +++ b/docs/technical/interaction.md @@ -184,7 +184,7 @@ Input is ignored while: - the settings menu is open - a cinematic is playing -Movement lock is read separately from `useRepairMovementLocked`, but that hook currently returns `false` on this branch. +Movement lock is read separately from `useRepairMovementLocked`, which locks the player during focused repair steps. ## UI Prompt diff --git a/docs/technical/map-performance.md b/docs/technical/map-performance.md new file mode 100644 index 0000000..57d560d --- /dev/null +++ b/docs/technical/map-performance.md @@ -0,0 +1,266 @@ +# Map Performance Notes + +This document tracks the current map-rendering performance pass. + +## Current Runtime Path + +- `public/map.json` is the source of map transforms. +- `src/world/GameMap.tsx` renders regular visual map nodes. +- `src/world/vegetation/VegetationSystem.tsx` already instances dense vegetation. +- `src/world/map-instancing/MapInstancingSystem.tsx` instances selected repeated static map assets. +- `src/world/GameMapCollision.tsx` keeps terrain collision separate for the player octree. + +## Draw-Call Bottlenecks Found + +The first performance bottleneck was draw calls. Some assets were exported as many small GLTF primitives even when they used only a few materials. + +| Model | Instances | Meshes / primitives | Notes | +| ---------------- | --------: | ------------------: | ---------------------------------------------------------------- | +| `generateur` | 3 | 3152 | Worst draw-call offender. Needs asset-side mesh merging. | +| `lafabrik` | 4 | 56 | Moderate draw calls, heavy 2048 texture set. | +| `ecole` | 1 | 107 | One material but many primitives; should be merged. | +| `fermeverticale` | 3 | 1 | Geometry is fine; textures are large for the visible complexity. | + +`generateur` was especially expensive because three visible instances could multiply thousands of primitives into thousands of draw calls. Instancing reduces repeated instance cost, but the source asset still needs a cleaner export. + +## Runtime Merge Pass + +`InstancedMapAsset` now groups source meshes by material and compatible geometry attributes before creating `THREE.InstancedMesh` objects. This reduces the runtime draw groups even when the source GLTF is exported as many small meshes. + +Estimated source primitive count versus runtime merged groups: + +| Model | Source primitives | Runtime merged groups | +| ------------ | ----------------: | --------------------: | +| `generateur` | 3152 | 8 | +| `ecole` | 107 | 2 | +| `eolienne` | 118 | 8 | +| `lafabrik` | 56 | 14 | + +This is a code-side safety net, not a replacement for clean asset exports. Clean GLB exports with merged meshes and fewer textures remain the preferred long-term path. + +## Current Triangle Bottleneck + +After the runtime merge pass, draw calls can drop dramatically, but FPS can still stay low because the scene now remains triangle-bound. A debug capture after the merge showed roughly: + +```txt +138 draw calls +~69.6M triangles +~10 FPS +``` + +That means the renderer is no longer mostly blocked by draw-call submission. It is mostly drawing too many visible triangles. + +Estimated triangle contribution from `map.json` instance counts: + +| Model | Instances | Triangles each | Estimated total triangles | +| ------------------- | --------: | -------------: | ------------------------: | +| `buisson` | 646 | 37 500 | ~24.2M | +| `champdesoja` | 1181 | 16 268 | ~19.2M | +| `arbre` | 291 | 38 906 | ~11.3M | +| `champdeble` | 1307 | 6 260 | ~8.2M | +| `champsdetournesol` | 1163 | 3 264 | ~3.8M | +| `sapin` | 93 | 23 972 | ~2.2M | + +These vegetation and crop assets account for almost all of the current `~69M` triangle count. By comparison, the previously suspicious static buildings are much smaller in triangle cost: + +| Model | Estimated total triangles | +| ---------------- | ------------------------: | +| `generateur` | ~123k | +| `lafabrik` | ~124k | +| `ecole` | ~5k | +| `fermeverticale` | ~1k | + +`InstancedMesh` reduces draw calls, but it does not reduce triangle count. If 646 bushes each contain 37 500 triangles, the GPU still has to draw about 24 million bush triangles when those instances are visible. + +## Debug Performance Controls + +The debug-only performance folder can isolate model families when `?debug` is enabled. + +Proposed controls: + +```txt +Performance / Map +- vegetation +- crops +- trees +- buildings +- landmarks +- props +- terrain +- sky +``` + +Useful per-model toggles: + +```txt +buisson +arbre +sapin +champdeble +champdesoja +champsdetournesol +fermeverticale +lafabrik +immeuble1 +eolienne +pylone +``` + +The purpose is diagnostic, not final gameplay behavior. The expected workflow is: + +1. Open `/?debug` with R3F perf enabled. +2. Disable one family or model type. +3. Watch `triangles`, `calls`, and FPS. +4. Identify which model groups need LOD, density reduction, or asset re-export. + +Recommended implementation files: + +```txt +src/managers/stores/useMapPerformanceStore.ts +src/hooks/debug/useMapPerformanceDebug.ts +src/world/vegetation/VegetationSystem.tsx +src/world/map-instancing/MapInstancingSystem.tsx +src/world/GameMap.tsx +``` + +The store should stay runtime/debug-only. It should not change persisted production map data. + +## Triangle-Reduction Follow-Up + +Once the expensive model families are isolated, the real triangle fixes are: + +1. Lower-poly vegetation and crop exports. +2. LOD variants for trees, bushes, and crop fields. +3. Distance-based culling for vegetation/crop instances. +4. Chunked instancing so Three.js can frustum-cull groups instead of one huge global `InstancedMesh`. +5. Billboard/impostor versions for far vegetation. + +Chunked instancing is especially important. A single `InstancedMesh` containing every bush has one global bounding sphere. If that bounding sphere is visible, Three.js may keep the whole batch visible. Splitting instances into grid chunks allows entire offscreen chunks to be skipped. + +## Player-Only Vegetation Streaming + +The first distance-streaming pass is intentionally limited to vegetation and crop instances: + +- `arbre` +- `sapin` +- `buisson` +- `champdeble` +- `champdesoja` +- `champsdetournesol` + +The behavior is configured in: + +```txt +src/data/world/fogConfig.ts +``` + +Current runtime values: + +```txt +chunkSize: 35 +loadRadius: 45 +unloadRadius: 45 +updateInterval: 350ms +fog near: 30 +fog far: 45 +``` + +The streaming and fog are scoped to the production game scene with the player camera only: + +```txt +sceneMode === "game" && cameraMode === "player" +``` + +This matters for debugging. In debug camera mode there is no fog and no distance streaming, so the developer can inspect the full map freely. In player mode, chunks mount and unmount around the camera to reduce visible triangle count while fog hides vegetation pop-in. + +Chunk cleanup is handled through React unmounting. `VegetationSystem` removes chunks from the tree, and `InstancedVegetation` removes its `THREE.InstancedMesh` objects from the group while disposing the locally created merged geometries/material clones in its own cleanup path. + +## Runtime Texture Filtering + +Loaded GLTF textures are normalized in code through: + +```txt +src/utils/three/optimizeGLTFScene.ts +``` + +The runtime pass applies conservative texture filtering: + +1. Cap anisotropy to a small value. +2. Enable mipmap generation for regular PNG/JPG/WebP textures. +3. Use trilinear mipmap filtering for minification. +4. Keep existing opacity/alpha material mapping intact. + +This mirrors the intent of the designer upload pipeline without rewriting model files at runtime. The sibling `upload-GLTF` project already has the stronger asset-side path: Blender GLB export with Draco, texture resizing, KTX2 generation with mipmaps, WebP fallback, and GLTF JSON URI/extension rewriting for `KHR_texture_basisu`. + +Runtime texture filtering improves distant texture stability and GPU sampling behavior, but it does not reduce mesh triangle count. Triangle reduction still comes from streaming, distance unloading, or optimized source assets. + +## Terrain-Snapped Map Placement + +Map object heights are corrected at runtime through: + +```txt +src/hooks/three/useTerrainHeight.ts +``` + +The terrain raycast is not done every frame. The terrain mesh list is built from the cached terrain GLTF, then each model or instance computes its snapped `y` when it is mounted or when its instance data changes. + +Applied paths: + +1. Regular `GameMap` model instances. +2. Generated static map models. +3. Instanced static map assets. +4. Vegetation and crop chunks. + +Only the `y` coordinate is replaced. `x`, `z`, and rotation stay from `map.json`. Runtime scale is also normalized when a static map node has a non-uniform scale, which prevents exported values like `[1, 2, 1]` from stretching or shrinking a map model unexpectedly. + +## Current Code-Side Optimization + +Repeated static assets are configured in: + +```txt +src/world/map-instancing/mapInstancingConfig.ts +``` + +Those names are excluded from the regular `GameMap` clone path, then rendered by `MapInstancingSystem` with merged `THREE.InstancedMesh` batches. + +This keeps the existing map authoring format while reducing repeated draw calls for selected assets. + +## Generated R3F Model Path + +Unique static map assets can use explicit R3F components instead of the generic cloned GLTF path. This follows the same intent as `gltfjsx`: expose the model as a React component, then keep control over mesh/material setup in code. + +Current generated map-model entry point: + +```txt +src/world/map-generated/GeneratedMapNodeInstance.tsx +``` + +Current generated model component: + +```txt +src/components/three/world/EcoleModel.tsx +src/components/three/world/LafabrikModel.tsx +src/components/three/world/FermeVerticaleModel.tsx +src/components/three/world/GenerateurModel.tsx +``` + +`ecole`, `lafabrik`, `fermeverticale`, and `generateur` use this path. Their components share the same merged static model renderer, which groups compatible geometry by material before mounting meshes. + +This path should be used selectively. It improves control and can remove clone overhead, but it does not reduce source triangle count by itself. + +## Asset-Side Follow-Up + +Design/export should prioritize: + +1. Produce lower-poly `buisson`, `arbre`, `sapin`, and crop assets. +2. Add LOD or billboard variants for far vegetation. +3. Merge `generateur` meshes from 3152 primitives to a small number of material groups. +4. Reduce `lafabrik` texture count and downscale flat/low-detail maps. +5. Merge `ecole` primitives because it uses a single material. +6. Prefer runtime `.glb` or compressed runtime textures when the pipeline supports it. + +## Safety Rules + +- Do not instance `terrain` for player collision without validating `Octree.fromGraphNode` support. +- Do not replace repair-game models with optimized map models unless repair node names are preserved. +- Dispose only GPU resources created locally. Do not dispose textures or geometries owned by `useGLTF`'s cache. diff --git a/docs/technical/mission-flow.md b/docs/technical/mission-flow.md index 4c2f766..ad3a428 100644 --- a/docs/technical/mission-flow.md +++ b/docs/technical/mission-flow.md @@ -14,7 +14,6 @@ The store owns the `missionFlow` slice: ```ts missionFlow: { - step: GameStep; activityCity: boolean; playerName: string; canMove: boolean; @@ -31,14 +30,14 @@ Managers stay responsible for local runtime services: - `AudioManager` owns audio elements, audio pools, music playback, category volume, and stereo pan. - `InteractionManager` owns transient focused/nearby/held interaction handles. -Mission progression is not owned by a manager. Components update the store through explicit actions such as `setFlowStep`, `setCanMove`, `showDialog`, and `hideDialog`. +Mission progression is not owned by a manager. Components update the store through explicit actions such as `setIntroStep`, `setCanMove`, `showDialog`, and `hideDialog`. ## Runtime Components -- `src/components/game/GameFlow.tsx` reacts to `missionFlow.step` and triggers one-off side effects such as intro audio and movement unlocks. +- `src/components/game/GameFlow.tsx` reacts to intro state and triggers one-off side effects such as intro audio and movement unlocks. - `src/components/zone/ZoneDetection.tsx` reads the camera position and moves the flow to a target step when the player enters a configured zone. -- `src/components/three/interaction/CentralObject.tsx` and `VillageoisHelperObject.tsx` expose temporary interactive mission objects. -- `src/pages/page.tsx` mounts mission HTML overlays: `IntroUI`, `BienvenueDisplay`, and `DialogMessage`. +- `src/world/GameStageContent.tsx` mounts repair games and their mission-start triggers. +- `src/pages/page.tsx` mounts mission HTML overlays: `IntroUI`, `DialogMessage`, and subtitles. - `src/world/player/PlayerController.tsx` reads `missionFlow.canMove` as an additional movement lock. ## Step Sequence diff --git a/docs/technical/repair-game.md b/docs/technical/repair-game.md index d4887dd..04afb88 100644 --- a/docs/technical/repair-game.md +++ b/docs/technical/repair-game.md @@ -8,11 +8,11 @@ The repair game is the current core gameplay loop. It gives three missions the s Implemented missions: -| Mission | Object | Role | -| -------- | ------------- | --------------------------------------------- | -| `bike` | E-bike | Repair a damaged cooling core | -| `pylone` | Power pylon | Restore relay/panel-like broken parts | -| `ferme` | Vertical farm | Stabilize irrigation/sensor-like broken parts | +| Mission | Object | Role | +| ------- | ------------- | --------------------------------------------- | +| `ebike` | E-bike | Repair a damaged cooling core | +| `pylon` | Power pylon | Restore relay/panel-like broken parts | +| `farm` | Vertical farm | Stabilize irrigation/sensor-like broken parts | ## Main Files @@ -79,7 +79,7 @@ src/managers/stores/useGameStore.ts - `setMissionStep(mission, nextStep)` - `completeMission(mission)` -The important architectural choice is that reusable repair components do not call `setBikeState`, `setPyloneState`, or `setFermeState` directly. They use generic mission actions so the same component can run for all three missions. +The important architectural choice is that reusable repair components do not call `setEbikeState`, `setPylonState`, or `setFarmState` directly. They use generic mission actions so the same component can run for all three missions. ## Data-Driven Mission Config @@ -159,7 +159,7 @@ The repair case appears near the mission object. The player can: Both paths move to `fragmented`. -Important current detail: `useRepairMovementLocked()` currently returns `false`, so the movement-lock rule and indicator are present but disabled in the current branch. +`useRepairMovementLocked()` locks player movement during focused repair steps and drives the repair movement indicator. ### Fragmented @@ -324,9 +324,9 @@ src/world/GameStageContent.tsx Current positions: ```tsx - - - + + + ``` Only the repair game whose `mission` matches `useGameStore().mainState` renders active content. diff --git a/docs/technical/zustand.md b/docs/technical/zustand.md index f2b3903..1bae136 100644 --- a/docs/technical/zustand.md +++ b/docs/technical/zustand.md @@ -28,11 +28,11 @@ They are under `src/managers/stores/` because they are shared runtime state, not ## Store Responsibilities -| Store | Responsibility | -| ------------------ | ----------------------------------------------------------------- | -| `useGameStore` | Durable game progression, mission steps, cinematic input lock | -| `useSettingsStore` | Menu visibility, volumes, subtitle options, repair-runtime toggle | -| `useSubtitleStore` | Currently displayed subtitle cue | +| Store | Responsibility | +| ------------------ | ------------------------------------------------------------- | +| `useGameStore` | Durable game progression, mission steps, cinematic input lock | +| `useSettingsStore` | Menu visibility, volumes, and subtitle options | +| `useSubtitleStore` | Currently displayed subtitle cue | ## Managers vs Stores @@ -65,18 +65,18 @@ Main states: | Main state | Role | | ---------- | ------------------------------- | | `intro` | Onboarding and opening sequence | -| `bike` | E-bike repair sequence | -| `pylone` | Power pylon repair sequence | -| `ferme` | Vertical farm repair sequence | +| `ebike` | E-bike repair sequence | +| `pylon` | Power pylon repair sequence | +| `farm` | Vertical farm repair sequence | | `outro` | Ending sequence | Other important state: - `isCinematicPlaying` - `intro` -- `bike` -- `pylone` -- `ferme` +- `ebike` +- `pylon` +- `farm` - `outro` Mission steps: @@ -125,28 +125,28 @@ For development and debug tooling, direct setters also exist: ```ts const setMainState = useGameStore((state) => state.setMainState); -setMainState("bike"); +setMainState("ebike"); ``` Direct setters are useful for debug panels, but production gameplay should prefer business actions such as: - `advanceGameState` -- `completeBike` -- `completePylone` -- `completeFerme` +- `completeEbike` +- `completePylon` +- `completeFarm` - `completeMission` -Mission gameplay that can target `bike`, `pylone`, or `ferme` should prefer generic mission actions: +Mission gameplay that can target `ebike`, `pylon`, or `farm` should prefer generic mission actions: ```ts const setMissionStep = useGameStore((state) => state.setMissionStep); const completeMission = useGameStore((state) => state.completeMission); -setMissionStep("bike", "inspected"); -completeMission("bike"); +setMissionStep("ebike", "inspected"); +completeMission("ebike"); ``` -This keeps reusable gameplay components such as `RepairGame` from duplicating mission-specific branches like `setBikeState`, `setPyloneState`, and `setFermeState`. +This keeps reusable gameplay components such as `RepairGame` from duplicating mission-specific branches like `setEbikeState`, `setPylonState`, and `setFarmState`. ## Settings Store @@ -160,7 +160,6 @@ State: - `dialogueVolume` - `subtitlesEnabled` - `subtitleLanguage` -- `repairRuntime` Audio setters clamp values between `0` and `1`, then call: @@ -170,8 +169,6 @@ AudioManager.getInstance().setCategoryVolume(category, nextVolume); This keeps UI state and browser audio state synchronized. -Current caveat: `repairRuntime` is stored and displayed in the settings menu, but the repair game does not consume it yet. Treat it as a staged architecture hook rather than an active runtime switch. - ## Subtitle Store `useSubtitleStore` is intentionally tiny. @@ -191,9 +188,9 @@ State/actions: Current production repair placement: ```tsx - - - + + + ``` `RepairGame` reads the active mission step from the store and writes transitions through generic actions such as `setMissionStep` and `completeMission`. @@ -222,13 +219,11 @@ Current overlays: - `GameStateDebugPanel`: compact debug UI for viewing and switching main/sub states - `Crosshair`: player aiming helper - `InteractPrompt`: interaction prompt -- `RepairMovementLockIndicator`: indicator intended for repair movement lock +- `RepairMovementLockIndicator`: indicator shown while repair steps lock movement - `HandTrackingVisualizer`: hand tracking SVG fallback/debug visualization - `Subtitles`: active dialogue subtitle overlay - `GameSettingsMenu`: options menu and settings controls -Current caveat: `useRepairMovementLocked()` returns `false` immediately on the current branch, so the movement-lock rule and indicator exist but are disabled at runtime. - ## Regression Rules - Do not store per-frame values in Zustand. @@ -241,6 +236,4 @@ Current caveat: `useRepairMovementLocked()` returns `false` immediately on the c ## Next Steps -- Decide whether `repairRuntime` should be removed, implemented, or clearly labeled as experimental. -- Re-enable or remove the repair movement-lock rule depending on desired gameplay. - Move broader mission orchestration into a clearer layer if intro, mission, dialogue, and cinematic branching grows. diff --git a/docs/user/editor.md b/docs/user/editor.md index 58091f8..e0c0199 100644 --- a/docs/user/editor.md +++ b/docs/user/editor.md @@ -6,7 +6,7 @@ The map editor is available at `/editor`. It is a browser-based tool for editing Use the editor when you need to: -- move, rotate, or scale objects from `public/map.json` +- move, rotate, scale, add, or delete objects from `public/map.json` - inspect the raw JSON generated by the editor - preview and edit cinematics from `public/cinematics.json` - create, preview, and validate dialogue entries from `public/sounds/dialogue/dialogues.json` @@ -14,13 +14,13 @@ Use the editor when you need to: The map editor reads the same map data as the runtime scene: -- `public/map.json` contains the object list. +- `public/map.json` contains the current hierarchical runtime map. - `public/models/{name}/model.glb` contains the matching 3D model for each object name. `model.gltf` is still supported as a fallback during migration. - Missing models are displayed as gray fallback cubes, so incomplete maps remain editable. ## Map Node Format -Each entry in `public/map.json` represents one object: +`public/map.json` is hierarchical. Group nodes such as `Scene`, `blocking`, `vegetation`, or `agriculture` organize the map. Editable object nodes still use the same transform fields: | Field | Description | | ---------- | ------------------------------------------------- | @@ -45,18 +45,34 @@ Only the `Editor` group is open by default. Open the other groups when you need 1. Open `/editor` in the local app. 2. Click an object in the scene to select it. -3. Choose a transform mode: translate, rotate, or scale. -4. Drag the transform gizmo in the 3D view. -5. Check the JSON inspector if you need exact values. -6. Use undo or redo if the transform is not correct. -7. Export the JSON or save it to the dev server. +3. Use `Shift + right click` on other objects to add or remove them from the current multi-selection. +4. Choose a transform mode: translate, rotate, or scale. +5. Drag the transform gizmo in the 3D view. With multiple objects selected, the gizmo transforms the selected group and writes each object transform back to `map.json`. +6. Keep `Snap terrain on move` enabled when placing objects on the terrain. +7. Use `Center on object` or `Reset camera` from the `View` section when navigating large maps. +8. Adjust scale numerically from the `Selection` section if the gizmo is not precise enough. +9. Check the JSON inspector if you need exact values. +10. Use undo or redo if the transform is not correct. +11. Export the JSON or save it to the dev server. + +## Adding And Deleting Nodes + +Use `Add Node` to create a new editable object under the `blocking` group. + +- The new object starts as a fallback cube at `[0, 0, 0]`. +- Name it with the model folder name you want, for example `maison1`. +- If `public/models/{name}/model.glb` or `model.gltf` exists, saving and reloading will display the matching model. +- If no matching model exists, the node stays editable as a gray cube. + +Use the trash button in `Selection` to delete the selected node from the map tree. ## Controls | Action | Input | | -------------------- | -------------------------- | | Select object | Click object | -| Deselect | `Esc` or click empty space | +| Toggle multi-select | `Shift` + right click | +| Deselect | `Esc` | | Lock selection | `Lock` button in Selection | | Clear selection | `X` button in Selection | | Translate mode | `T` | @@ -73,14 +89,25 @@ Only the `Editor` group is open by default. Open the other groups when you need The `Selection` section shows the selected object name and its index in `public/map.json`. - Click an object to select it. -- Click empty space or press `Esc` to clear the selection. +- Use `Shift + right click` on objects to add or remove them from a multi-selection. +- When several objects are selected, the gizmo appears on the selection group and applies translate, rotate, or scale to each selected node. +- Press `Esc` to clear the selection. - Use the `X` button to clear the selection explicitly. - Use the `Lock` button to protect the current selection while editing. +- Use the scale fields to edit X/Y/Z scale precisely. +- Use the trash button to remove the selected object. + +## Terrain Snapping + +`Snap terrain on move` is enabled by default. When you move an object, the editor samples the terrain height at the object's X/Z position and updates its Y position. + +This is intended for map objects that should sit on the ground. Disable it when you intentionally need a floating object. + +`Lock terrain` is also enabled by default. The terrain stays visible, but terrain clicks are ignored so normal objects remain easier to select. Disable it only when you need to select or transform the terrain node itself. When selection is locked: - clicking another object does not change the selection -- clicking empty space does not clear the selection - pressing `Esc` does not clear the selection - the `X` button still clears the selection intentionally @@ -88,9 +115,11 @@ When selection is locked: The `Lock view` action switches the editor into a movement mode closer to the runtime player camera. Use it to navigate larger scenes while keeping the transform tools available. +The camera action switches between `Center on object` and `Reset camera`. Selecting an object also focuses the camera on that object automatically. + ## JSON Inspector -The `JSON` section shows the raw map data that will be exported or saved: +The `JSON` section shows the editable node data: - When no object is selected, it shows the full map node list. - When an object is selected, it highlights the JSON lines for that object. @@ -101,11 +130,11 @@ Use it to verify exact numeric transform values before saving or exporting. The ### Export JSON -`Export JSON` downloads the current map node list as `map.json`. Use this when you want to manually replace `public/map.json`. +`Export JSON` downloads the current hierarchical map tree as `map.json`. Use this when you want to manually replace `public/map.json`. ### Save To Server -`Save to server` is available only during local development. It writes the edited map back to `public/map.json` through the Vite dev-server endpoint. +`Save to server` is available only during local development. It writes the edited hierarchical map back to `public/map.json` through the Vite dev-server endpoint. The button is hidden in production builds because production persistence is not implemented. diff --git a/docs/user/features.md b/docs/user/features.md index 3ea8abc..07f4418 100644 --- a/docs/user/features.md +++ b/docs/user/features.md @@ -37,7 +37,7 @@ This document lists the user-visible and developer-facing features implemented i - Input lock while the settings menu is open - Input lock while a cinematic is playing - Octree collision against dedicated map collision nodes, currently scoped to the `terrain` node -- Repair movement-lock hook and indicator exist, but the hook currently returns `false`, so movement is not locked during repair on the current branch +- Repair movement lock during focused repair steps, with a matching UI indicator ## Physics And Collision @@ -63,12 +63,12 @@ This document lists the user-visible and developer-facing features implemented i ## Repair Gameplay -- Reusable `RepairGame` mounted for `bike`, `pylone`, and `ferme` +- Reusable `RepairGame` mounted for `ebike`, `pylon`, and `farm` - Mission progression driven by Zustand and shared `MissionStep` types - Production repair positions: - - `bike` at `[8, 0, -6]` - - `pylone` at `[64, 0, -66]` - - `ferme` at `[-24, 0, 42]` + - `ebike` at `[42.2399, 4.5484, 34.6468]` + - `pylon` at `[64, 0, -66]` + - `farm` at `[-24, 0, 42]` - Debug physics repair playground zones for all three missions - Data-driven mission config in `src/data/gameplay/repairMissions.ts` - Mission flow: `locked -> waiting -> inspected -> fragmented -> scanning -> repairing -> reassembling -> done` @@ -80,9 +80,9 @@ This document lists the user-visible and developer-facing features implemented i - Fragmentation through repair-case trigger or two-fists hand gesture - Exploded model visualization through `ExplodableModel` - Scan visual that steps through exploded parts -- Broken-part detection by configured `nodeName`, with fallback to first scanned parts +- Broken-part detection by configured `nodeName`, with diagnostics when configured parts are missing - Persistent broken-part highlight and broken-part prompt after discovery -- Grabbable replacement part choices, including decoys +- Grabbable replacement part choices, including distractor parts - Grabbable broken parts that must be deposited back into the case - Snap-to-placeholder placement - Correct-part, wrong-part, and stored-part visual feedback @@ -95,7 +95,7 @@ This document lists the user-visible and developer-facing features implemented i ## Game Progression Store - Zustand `useGameStore` for durable gameplay progression -- Main states: `intro`, `bike`, `pylone`, `ferme`, `outro` +- Main states: `intro`, `ebike`, `pylon`, `farm`, `outro` - Per-mission repair step state - Per-mission completion flags - Generic mission helpers: `setMissionStep`, `completeMission`, `advanceGameState`, `rewindGameState`, `resetGame` @@ -108,12 +108,11 @@ This document lists the user-visible and developer-facing features implemented i - Music, SFX, and dialogue volume sliders - Subtitle visibility toggle - Subtitle language choice between French and English -- Repair-runtime choice between JavaScript and Python modes stored in settings - Quit action that clears browser-accessible cookies and returns to `/` - Crosshair overlay - Interaction prompt - Subtitle overlay -- Repair movement-lock indicator component, currently inactive because the lock hook returns `false` +- Repair movement-lock indicator - Debug overlay layout - Scene loading overlay @@ -192,7 +191,7 @@ This document lists the user-visible and developer-facing features implemented i - Debug game-state panel - Debug hand-tracking panel - Physics test scene with floor, grabbable object, trigger object, repair zones, and animated model preview -- Animated `electricienne_animated` model preview restored in the debug physics scene +- Animated `electricienne-animated` model preview restored in the debug physics scene ## Map And Content Editor @@ -230,7 +229,7 @@ This document lists the user-visible and developer-facing features implemented i - Technical docs for architecture, scene runtime, repair game, interaction, editor, audio, hand tracking, Zustand, Three debugging, animation, and target architecture - User docs for implemented features, main feature, editor usage, and code-review preparation -## Not Implemented Or Incomplete +## Known Gaps - Complete production mission manager/orchestrator - Full mission HUD or minimap diff --git a/docs/user/main-feature.md b/docs/user/main-feature.md index e933b09..3991da3 100644 --- a/docs/user/main-feature.md +++ b/docs/user/main-feature.md @@ -8,7 +8,7 @@ The main feature is a reusable repair flow mounted in the production game scene. The current user flow is: -1. Enter a mission state such as `bike`, `pylone`, or `ferme`. +1. Enter a mission state such as `ebike`, `pylon`, or `farm`. 2. Move close to the active repair object in the game scene. 3. Aim at the object and press the interaction key when prompted. 4. The mission step moves from `waiting` to `inspected`. @@ -21,7 +21,7 @@ The current user flow is: 11. Move each scanned broken part into a compatible placeholder so the damaged parts are stored in the case. 12. Press `E` on the green install target to move to `reassembling`. Wrong parts turn the target red and cannot finish the repair. 13. The exploded object animates back into its assembled form with completion particles, then moves to `done`. -14. Press `E` on the completion target. The repair case closes, returns to the ground, disappears, then `completeMission` moves to the next mission or to `outro` after `ferme`. +14. Press `E` on the completion target. The repair case closes, returns to the ground, disappears, then `completeMission` moves to the next mission or to `outro` after `farm`. ## Why It Matters @@ -33,17 +33,17 @@ For implementation details, see `docs/technical/repair-game.md`. In `waiting`, the active mission renders its repair object and the `interagir.webm` prompt in the game scene. The interaction uses the shared focus/raycast interaction system, so the player still gets the normal `E` prompt. -When the player inspects the object, `RepairGame` writes `inspected` through the generic mission store action. The repair case then appears from the mission config with a small pop animation. When the player is close enough, the case model floats upward and rotates gently to signal interactivity. The codebase also contains a shared repair movement-lock hook and HTML indicator, but `useRepairMovementLocked()` currently returns `false`, so movement remains available during the repair flow on the current branch. +When the player inspects the object, `RepairGame` writes `inspected` through the generic mission store action. The repair case then appears from the mission config with a small pop animation. When the player is close enough, the case model floats upward and rotates gently to signal interactivity. The shared repair movement-lock hook and HTML indicator keep movement disabled during active repair steps. In `inspected`, `RepairGame` can also move to `fragmented`. Keyboard input goes through the shared focus/raycast interaction system on the repair case, so the player must be close enough and aim at the case before pressing `E`. The hand-tracking path still uses a two-fists hold gesture and is state-based, so it does not depend on being inside a local object interaction radius. -In `fragmented`, the repair object is rendered with `ExplodableModel`, then automatically advances to `scanning`. In `scanning`, the exploded model remains visible, a blue scan visual moves from part to part, and a red halo/wire marker plus the configured broken UI video stay attached to configured broken parts after the scanner reaches them. The scan can match a specific `nodeName` when mission data provides one, otherwise it falls back to the first scanned parts as placeholder broken parts. In `repairing`, the case opens in a larger focused transform, `RepairCaseModel` traverses the case GLTF for empty nodes named `placeholder_*`, several grabbable replacement parts appear on those placeholder positions, and releasing a part near a placeholder snaps it into place with a short GSAP animation. Scanned broken parts are also rendered as grabbable objects and must be deposited into a compatible placeholder before the final install target validates. If `brokenParts[].placeholderName` is configured, that broken part snaps only to the matching placeholder; otherwise it can use any available placeholder. If the current case asset has no placeholder nodes, the flow keeps using fallback focus positions. Replacement parts show green or red placement feedback after snapping, broken parts show stored feedback after deposit, and the install target gives a short blocked feedback if the player tries to validate too early. The install target only validates when the configured correct replacement part is placed and all scanned broken parts have been deposited. In `reassembling`, the exploded model animates back into its assembled position with green completion particles before the flow moves to `done`. In `done`, the repaired object remains visible with a completion target; validating closes the repair case first, then plays the case exit animation before advancing the global mission progression. +In `fragmented`, the repair object is rendered with `ExplodableModel`, then automatically advances to `scanning`. In `scanning`, the exploded model remains visible, a blue scan visual moves from part to part, and a red halo/wire marker plus the configured broken UI video stay attached to configured broken parts after the scanner reaches them. The scan matches configured broken parts by `nodeName` and reports diagnostics when a configured node is missing. In `repairing`, the case opens in a larger focused transform, `RepairCaseModel` traverses the case GLTF for empty nodes named `placeholder_*`, several grabbable replacement parts appear on those slot positions, and releasing a part near a slot snaps it into place with a short GSAP animation. Scanned broken parts are also rendered as grabbable objects and must be deposited into a compatible slot before the final install target validates. If `brokenParts[].caseSlotName` is configured, that broken part snaps only to the matching slot; otherwise it can use any available slot. If the current case asset has no slot nodes, the flow keeps using fallback focus positions and logs the fallback. Replacement parts show green or red placement feedback after snapping, broken parts show stored feedback after deposit, and the install target gives a short blocked feedback if the player tries to validate too early. The install target only validates when the configured correct replacement part is placed and all scanned broken parts have been deposited. In `reassembling`, the exploded model animates back into its assembled position with green completion particles before the flow moves to `done`. In `done`, the repaired object remains visible with a completion target; validating closes the repair case first, then plays the case exit animation before advancing the global mission progression. -The mission config now carries the mission-specific variations. `bike` repairs one cooling core, `pylone` scans and stores both the lamp relay and a damaged panel with slower scan/reassembly timing, and `ferme` scans and stores an irrigation pump plus humidity sensor with faster scan/reassembly timing. +The mission config now carries the mission-specific variations. `ebike` repairs one cooling core, `pylon` scans and stores both the lamp relay and a damaged panel with slower scan/reassembly timing, and `farm` scans and stores an irrigation pump plus humidity sensor with faster scan/reassembly timing. ## Key Files -- `src/world/GameStageContent.tsx` mounts production `RepairGame` instances for `bike`, `pylone`, and `ferme`. +- `src/world/GameStageContent.tsx` mounts production `RepairGame` instances for `ebike`, `pylon`, and `farm`. - `src/components/three/gameplay/RepairCompletionStep.tsx` renders the final repaired object, completion target, case exit animation, and mission UI prompt. - `src/components/three/gameplay/RepairGame.tsx` composes the reusable production repair flow. - `src/components/three/gameplay/RepairBrokenPartHighlight.tsx` renders the red halo and wire marker around detected broken parts during scanning. @@ -56,16 +56,16 @@ The mission config now carries the mission-specific variations. `bike` repairs o - `src/components/three/gameplay/RepairPromptVideo.tsx` renders `.webm` prompts inside the 3D scene. - `src/components/three/gameplay/RepairScanSequence.tsx` keeps the exploded model visible and advances the scan from part to part. - `src/components/three/gameplay/RepairScanVisual.tsx` renders the scan halo and scan line around the active part. -- `src/components/ui/RepairMovementLockIndicator.tsx` renders the HTML indicator intended for repair movement lock. +- `src/components/ui/RepairMovementLockIndicator.tsx` renders the HTML repair movement-lock indicator. - `src/hooks/gameplay/useRepairFragmentationInput.ts` handles the `inspected -> fragmented` two-fists input and can optionally bind keyboard input for non-trigger flows. - `src/hooks/gameplay/useRepairMissionStep.ts` reads the active mission step from the game store. -- `src/hooks/gameplay/useRepairMovementLocked.ts` exposes the shared repair movement-lock rule used by the player controller and UI indicator, but currently returns `false`. +- `src/hooks/gameplay/useRepairMovementLocked.ts` exposes the shared repair movement-lock rule used by the player controller and UI indicator. - `src/hooks/handTracking/useBothFistsHold.ts` detects the reusable two-fists hold gesture. - `src/components/three/gameplay/RepairCaseModel.tsx` renders and animates the case model, and exposes `placeholder_*` transforms when the GLTF provides them. - `src/components/three/models/ExplodableModel.tsx` renders selectable models with split/exploded visualization. - `src/data/gameplay/repairCaseConfig.ts` stores repair case model, sound, and animation constants. - `src/data/gameplay/repairGameConfig.ts` stores repair flow timing constants. -- `src/data/gameplay/repairMissions.ts` stores reusable repair mission config for `bike`, `pylone`, and `ferme`. +- `src/data/gameplay/repairMissions.ts` stores reusable repair mission config for `ebike`, `pylon`, and `farm`. - `src/managers/stores/useGameStore.ts` stores mission progression state and generic mission step helpers. - `src/types/gameplay/repairMission.ts` contains shared repair mission ids, mission steps, and guards used by the store, data config, debug UI, and gameplay components. @@ -73,7 +73,7 @@ The mission config now carries the mission-specific variations. `bike` repairs o The production repair flow currently requires: -- the active `mainState` to be one of `bike`, `pylone`, or `ferme` +- the active `mainState` to be one of `ebike`, `pylon`, or `farm` - `GameStageContent` mounted inside the game scene Rapier `Physics` boundary - model assets available under `public/models/` - sound assets available under `public/sounds/` diff --git a/package-lock.json b/package-lock.json index 4662556..f880142 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,6 +22,7 @@ "react-markdown": "^10.1.0", "remark-gfm": "^4.0.1", "three": "0.182.0", + "three-stdlib": "^2.36.1", "zustand": "^5.0.12" }, "devDependencies": { diff --git a/package.json b/package.json index 883e55c..8eb72d6 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", + "map:transform": "node scripts/transformMap.cjs", "preview": "vite preview", "typecheck": "tsc -b" }, @@ -32,6 +33,7 @@ "react-markdown": "^10.1.0", "remark-gfm": "^4.0.1", "three": "0.182.0", + "three-stdlib": "^2.36.1", "zustand": "^5.0.12" }, "devDependencies": { diff --git a/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf b/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf deleted file mode 100644 index a1a1ccc..0000000 Binary files a/public/assets/PDF/Gilbert Le Fermier - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/PDF/Le Gérant - Doublage Altera.pdf b/public/assets/PDF/Le Gérant - Doublage Altera.pdf deleted file mode 100644 index 9ec89d7..0000000 Binary files a/public/assets/PDF/Le Gérant - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf b/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf deleted file mode 100644 index 226a9bd..0000000 Binary files a/public/assets/PDF/Leonie Electricienne - Doublage Altera.pdf and /dev/null differ diff --git a/public/assets/cinematics/outro.mp4 b/public/assets/cinematics/outro.mp4 new file mode 100644 index 0000000..fa463c4 --- /dev/null +++ b/public/assets/cinematics/outro.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75f1df98379ff9beaf305d51a4a2eac3f52361ea601e67970098dd763401391 +size 18881452 diff --git a/public/assets/gps/map_background.png b/public/assets/gps/map_background.png new file mode 100644 index 0000000..680bb4e --- /dev/null +++ b/public/assets/gps/map_background.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e67d0ab997e0470c66d023cee3dae28be952a09a8dc4c96e047ee79cc4ba995 +size 1070216 diff --git a/public/map.json b/public/map.json index abd4380..df91c1d 100644 --- a/public/map.json +++ b/public/map.json @@ -1,35030 +1,40549 @@ -[ - { - "name": "Scene", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "terrain", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "terrain", - "type": "Mesh", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "blocking", - "type": "Object3D", - "position": [10.3293, 0, 2.4283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneaux", - "type": "Object3D", - "position": [9.3468, 7.1426, -1.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneauxcentre", - "type": "Mesh", - "position": [-35.2895, 3.8515, 40.1864], - "rotation": [-3.0988, 0.9934, -3.1367], - "scale": [1, 1, 1] - }, - { - "name": "panneauxdomaine", - "type": "Mesh", - "position": [-2.4347, 3.7803, -56.1439], - "rotation": [0.0474, 0.2148, -0.0027], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirresidences2", - "type": "Mesh", - "position": [30.1743, 7.1944, -13.5781], - "rotation": [0.0374, -1.297, -0.0099], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirdomaine", - "type": "Mesh", - "position": [8.1032, 7.1918, -23.0004], - "rotation": [0.0462, -0.2443, -0.0027], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirresidences1", - "type": "Mesh", - "position": [-10.1125, 7.2582, -11.4511], - "rotation": [0.0478, 0.3436, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "panneaudircentre", - "type": "Mesh", - "position": [-10.5207, 7.0874, 19.3819], - "rotation": [-3.1416, 1.5139, -3.0947], - "scale": [1, 1, 1] - }, - { - "name": "panneaudirfabrik", - "type": "Mesh", - "position": [29.0899, 6.9811, 23.4988], - "rotation": [3.1416, -0.8852, 3.1253], - "scale": [1, 1, 1] - }, - { - "name": "ebike", - "type": "Object3D", - "position": [42.2399, 4.5484, 34.6468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [67.7458, 1.4821, 63.7819], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [67.1206, 1.4887, 64.3699], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [66.5341, 1.4946, 64.9282], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [65.1742, 1.5067, 66.1592], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [65.8844, 1.5007, 65.5434], - "rotation": [0, 0.7397, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [19.4416, 7.5898, 3.4208], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [18.7164, 7.5964, 3.88], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [18.0349, 7.6023, 4.3172], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [16.4667, 7.6144, 5.2687], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "parcebike", - "type": "Mesh", - "position": [17.2806, 7.6084, 4.7984], - "rotation": [0, 0.5494, 0], - "scale": [1, 1, 1] - }, - { - "name": "boiteauxlettres", - "type": "Object3D", - "position": [49.1596, 2.525, 28.8545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-104.1204, 0.5129, -0.7662], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-96.8377, 0.5, -31.1025], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-79.3857, 0.5263, -61.4399], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-64.0582, 1.0758, -52.226], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-81.277, 1.1055, 1.3358], - "rotation": [3.1416, -1.3473, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-75.2198, 1.2104, -23.1038], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-56.9327, 2.6898, 6.1248], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-51.7473, 2.9535, -14.5455], - "rotation": [-3.1416, -0.6184, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-39.7211, 3.1375, -34.9252], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-29.0775, 5.161, -14.5387], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [-31.8927, 5.1813, 8.6532], - "rotation": [3.1416, -1.155, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [58.2739, 3.6477, 33.7065], - "rotation": [-3.1416, 0.9528, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [56.1107, 4.5042, 20.0032], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [14.1159, 3.7557, 58.4794], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [75.8551, 2.7785, 12.4052], - "rotation": [-3.1416, 0.6847, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [102.9262, 0.9745, 20.2838], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [106.2764, 0.8527, -15.8142], - "rotation": [-3.1416, -0.3611, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [92.1561, 1.1165, -37.2395], - "rotation": [-3.1416, 0.2021, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [82.3515, 0.9993, -57.4067], - "rotation": [-3.1416, -0.22, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [50.4536, 2.6897, -51.7015], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [31.9228, 5.1089, -35.2384], - "rotation": [3.1416, -1.412, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [45.5694, 5.1282, -22.591], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [52.7216, 5.1705, -3.3827], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [77.4367, 2.7142, 2.2734], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [69.3931, 3.1282, -18.1737], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [61.7688, 2.9974, -35.5676], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [102.9262, 0.9745, 20.2838], - "rotation": [-3.1416, -0.514, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [9.2361, 0.5, 118.264], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [10.4371, 0.9333, 97.6797], - "rotation": [3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [9.7363, 1.8881, 79.8485], - "rotation": [-3.1416, -1.1321, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [80.0836, 1.3999, 51.7373], - "rotation": [-3.1416, 1.1496, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [66.0075, 0.7927, 84.7143], - "rotation": [-3.1416, 1.1496, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [34.0013, 1.4556, 83.4348], - "rotation": [0, 0.4327, 0], - "scale": [1, 1, 1] - }, - { - "name": "boitesauxlettres", - "type": "Mesh", - "position": [35.7007, 2.9935, 61.236], - "rotation": [0, -0.54, 0], - "scale": [1, 1, 1] - }, - { - "name": "pylones", - "type": "Object3D", - "position": [-21.7782, 7.0853, 32.3996], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pylones", - "type": "Object3D", - "position": [-24.0279, 6.5492, 29.7542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-56.8838, 3.0005, -47.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-95.094, 2.1426, -0.5771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-100.3223, 2.0014, -22.2644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-82.0862, 2.0834, -53.515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-70.774, 2.8875, -24.7895], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-73.9666, 2.9857, 4.5429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-52.106, 4.631, -1.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-26.5737, 7.0928, 14.3374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-36.6039, 5.3667, -26.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-30.0515, 6.8227, -6.5629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [102.1244, 2.5464, -10.5003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [78.9167, 2.9962, -45.4231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [54.714, 4.5794, -42.3575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [64.9061, 4.8047, -24.1268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [26.9053, 7.2177, -31.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.5292, 7.1082, -2.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [67.6376, 5.1366, 4.9956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [102.3214, 2.5537, 12.914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [72.7401, 2.3107, 79.1138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.1178, 3.3021, 71.6993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [26.5268, 2.1431, 105.3955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [17.7069, 3.0989, 84.2328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [65.4447, 3.6966, 50.8731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [48.0501, 6.5234, 25.4575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [40.2634, 5.1191, 51.6028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [21.7171, 5.7394, 52.7445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [27.0898, 7.1369, 36.8596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-12.8668, 7.5342, 28.3256], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-18.1869, 6.8326, 32.7022], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-26.9046, 5.5753, 40.7744], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-22.7586, 6.1779, 36.8574], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-17.5018, 7.4685, 23.8001], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-22.8219, 6.7669, 28.1767], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-31.5396, 5.5095, 36.2489], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "pyloneelectrique", - "type": "Mesh", - "position": [-27.3936, 6.1122, 32.3319], - "rotation": [0, 0.0027, 0.0819], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-69.8845, 2.3577, -40.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-69.8845, 2.0453, -40.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [121.276, 1.73, 33.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [121.276, 1.5021, 33.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [94.6561, 2.5066, 26.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [94.6561, 2.1751, 26.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [79.3065, 3.69, 15.1507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [82.795, 3.69, 16.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-86.0245, 1.9076, -35.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-86.0245, 1.6584, -35.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [37.982, 6.7216, 30.9555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [37.8635, 6.565, 29.3621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.6205, 5.3697, 51.2508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.6205, 4.8536, 51.2508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [43.6785, 2.0178, 96.2199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [43.6785, 1.7013, 96.2199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-74.6178, 2.6552, 9.5979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-74.6178, 2.3115, 9.5979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-75.4654, 2.5559, 16.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-75.4654, 2.2701, 16.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-74.2835, 2.5536, 22.7387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-74.2835, 2.2678, 22.7387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [86.629, 2.7422, -31.3242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [86.629, 2.4407, -31.3242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-63.3935, 3.1961, -18.2155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-63.3935, 2.9078, -18.2155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [0.481, 4.0343, 67.7846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [0.481, 3.6547, 67.7846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [36.4304, 6.9609, -24.2903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [36.4304, 6.718, -24.2903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [116.4929, 1.8153, 13.289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [116.4929, 1.427, 13.289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [97.4749, 1.7989, 65.6281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [97.4749, 1.5226, 65.6281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [62.2092, 2.0778, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [62.2092, 2.0778, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [64.5595, 1.8863, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [64.5595, 1.8863, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [124.3065, 1.73, -13.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [124.3065, 1.4655, -13.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [78.65, 3.4716, 27.1949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [78.65, 3.0954, 27.1949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [76.6262, 3.5066, 31.3087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [76.6262, 3.1873, 31.3087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-100.0891, 1.7376, 11.5984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-100.0891, 1.445, 11.5984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [40.8805, 6.8406, -21.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [40.8805, 6.5976, -21.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [51.1326, 4.9082, 42.1663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [51.1326, 4.3922, 42.1663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [107.585, 2.0754, -9.2064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [107.585, 1.7648, -9.2064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-94.7678, 1.8289, -16.9536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-94.7678, 1.5849, -16.9536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-71.703, 2.1745, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-71.703, 2.1745, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [116.9822, 1.7625, 26.4244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [116.9822, 1.4197, 26.4244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.4407, 4.6971, 59.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.4407, 4.181, 59.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [103.8144, 2.238, -2.979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [103.8144, 1.9274, -2.979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [42.8316, 4.7811, -45.8639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [42.8316, 4.4314, -45.8639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [94.3453, 1.755, 74.5333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [94.3453, 1.416, 74.5333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [50.072, 2.6003, 78.7082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [50.072, 2.2583, 78.7082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [48.1475, 2.0144, 94.4155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [48.1475, 1.6979, 94.4155], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [33.6819, 6.0748, 41.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [33.6819, 5.5588, 41.9355], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [55.485, 6.0505, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [55.485, 6.0505, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-103.5232, 1.7593, -4.9283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-103.5232, 1.4716, -4.9283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [45.7062, 4.8094, -43.4591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [45.7062, 4.4597, -43.4591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-39.193, 5.1507, -20.5904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-39.193, 4.8052, -20.5904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [14.2481, 3.6042, 73.495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [14.2481, 3.2246, 73.495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.8931, 1.73, 122.7132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.8931, 1.4202, 122.7132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [65.0769, 4.874, -14.5488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [65.0769, 4.5437, -14.5488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [14.4329, 3.9184, 69.6626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [14.4329, 3.5387, 69.6626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [92.08, 2.249, 47.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [92.08, 1.944, 47.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [82.0165, 2.4617, 54.6852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [82.0165, 2.4617, 54.6852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [15.8967, 2.1664, 97.556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [15.8967, 1.8369, 97.556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [87.1983, 3.1685, 4.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [87.1983, 2.8744, 4.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [61.4859, 4.8279, -24.328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [61.4859, 4.5221, -24.328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [93.3467, 2.177, 48.8426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [93.3467, 1.8721, 48.8426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-62.9162, 3.2697, -15.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-62.9162, 2.9577, -15.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-116.2891, 1.73, 9.5757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-116.2891, 1.4446, 9.5757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [59.1794, 2.5978, 73.349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [59.1794, 2.2557, 73.349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-114.7275, 1.73, -9.0295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-114.7275, 1.424, -9.0295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [64.0578, 5.175, 10.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [64.0578, 4.8663, 10.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [106.4135, 2.1324, 4.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [106.4135, 1.8218, 4.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [50.5661, 6.4452, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [50.5661, 6.4452, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [69.9845, 1.914, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [69.9845, 1.914, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [61.8189, 5.3955, 11.2704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [61.8189, 5.0867, 11.2704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-89.9371, 1.9245, 24.3503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-89.9371, 1.6387, 24.3503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [106.5106, 1.7455, 58.4254], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [106.5106, 1.4693, 58.4254], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [85.5663, 1.7985, 79.0421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [85.5663, 1.4203, 79.0421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [53.7555, 6.0424, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [53.7555, 6.0424, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-105.7379, 1.73, -55.9911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-105.7379, 1.4476, -55.9911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [98.6825, 2.0477, 45.6252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [98.6825, 1.7427, 45.6252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [80.8168, 3.5714, -9.1306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [80.8168, 3.2385, -9.1306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [74.0452, 2.6362, 59.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [74.0452, 2.309, 59.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-54.4886, 3.0828, -41.0096], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-54.4886, 2.6773, -41.0096], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-124.3983, 1.73, -13.1213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-124.3983, 1.4256, -13.1213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-91.0013, 1.7467, -47.9181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-91.0013, 1.4474, -47.9181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-93.3362, 1.7383, -47.5484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-93.3362, 1.3615, -47.5484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-106.7784, 1.73, -38.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-106.7784, 1.4278, -38.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-95.473, 1.8589, 7.6623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-95.473, 1.5663, 7.6623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [63.9067, 2.7479, -61.4631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [63.9067, 2.4019, -61.4631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [119.0658, 1.73, 36.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [119.0658, 1.5021, 36.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [63.6675, 1.73, 105.888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [63.6675, 1.5126, 105.888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-52.4236, 3.6593, -29.3635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-52.4236, 3.3925, -29.3635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-100.203, 1.7844, 4.1061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-100.203, 1.532, 4.1061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [9.1464, 2.265, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [9.1464, 2.265, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-26.4888, 6.8456, -8.9158], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-26.4888, 6.5968, -8.9158], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [35.739, 1.73, 114.0022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [35.739, 1.4453, 114.0022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [78.1002, 2.121, 71.1874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [78.1002, 1.7427, 71.1874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-51.6422, 2.52, -12.2406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-51.6422, 2.52, -12.2406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [62.2092, 0.3478, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [62.2092, 0.3478, 85.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.5595, 0.1563, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.5595, 0.1563, 90.9259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-71.703, 0.4445, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-71.703, 0.4445, -46.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [55.485, 4.3205, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [55.485, 4.3205, -7.0367], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.0165, 0.7317, 54.6851], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.0165, 0.7317, 54.6851], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.5661, 4.7152, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.5661, 4.7152, -10.9378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.9845, 0.184, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.9845, 0.184, 86.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.7556, 4.3124, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.7556, 4.3124, -13.2374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [11.8039, 2.7568, 61.415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [11.8039, 2.7568, 61.415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [9.1464, 0.535, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [9.1464, 0.535, 95.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.1503, 0.2862, 55.657], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.1503, 0.2862, 55.657], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.5702, 0.0477, -66.4841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.5702, 0.0477, -66.4841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-120.3052, 0, -27.3137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-120.3052, 0, -27.3137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [116.7042, 0.0875, -6.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [116.7042, 0.0875, -6.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [68.3687, 2.7606, 21.8088], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [68.3687, 2.7606, 21.8088], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.7964, 1.8233, -30.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.7964, 1.8233, -30.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-110.1324, 0, -34.9505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-110.1324, 0, -34.9505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.6731, 2.1717, 64.2153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.6731, 2.1717, 64.2153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-48.7502, 2.7225, -14.8937], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-48.7502, 2.7225, -14.8937], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-37.2933, 4.0877, -5.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-37.2933, 4.0877, -5.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [8.4533, 1.0586, 85.2594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [8.4533, 1.0586, 85.2594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-95.1242, 0.1297, 11.5124], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-95.1242, 0.1297, 11.5124], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.7334, 1.1132, 54.1382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.7334, 1.1132, 54.1382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.1883, 2.3067, -23.2176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.1883, 2.3067, -23.2176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [114.4287, 0.1241, -17.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [114.4287, 0.1241, -17.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [38.4276, 0.5794, 89.8772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [38.4276, 0.5794, 89.8772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.4119, 1.1264, -53.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.4119, 1.1264, -53.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [17.9986, 0, 122.7399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [17.9986, 0, 122.7399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [27.6518, 4.2635, 45.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [27.6518, 4.2635, 45.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [49.0181, 5.0952, 3.7245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [49.0181, 5.0952, 3.7245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.3073, 0, 98.9511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.3073, 0, 98.9511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [43.5109, 1.0962, 77.4342], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [43.5109, 1.0962, 77.4342], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [107.6094, 0.0076, 58.0385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [107.6094, 0.0076, 58.0385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-77.3377, 0.6377, -21.4115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-77.3377, 0.6377, -21.4115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.9989, 0.0314, 94.7216], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.9989, 0.0314, 94.7216], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.4599, 0.6779, 92.2769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.4599, 0.6779, 92.2769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [16.2186, 3.9431, 51.7305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [16.2186, 3.9431, 51.7305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.7305, 0.96, 4.1248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.7305, 0.96, 4.1248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [33.2653, 2.6356, 60.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [33.2653, 2.6356, 60.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-49.0104, 2.4669, -22.313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-49.0104, 2.4669, -22.313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [86.7424, 1.3349, -14.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [86.7424, 1.3349, -14.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [108.3422, 0.0024, 57.7562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [108.3422, 0.0024, 57.7562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.6839, 0.0766, -4.0048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.6839, 0.0766, -4.0048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.5365, 0.3577, 94.9066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.5365, 0.3577, 94.9066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-113.1553, 0, -3.1298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-113.1553, 0, -3.1298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [120.7837, 0.0277, -17.0044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [120.7837, 0.0277, -17.0044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-119.6527, 0, 28.7422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-119.6527, 0, 28.7422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-54.6894, 2.0418, -21.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-54.6894, 2.0418, -21.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-58.5072, 2.0327, -5.9743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-58.5072, 2.0327, -5.9743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [105.8384, 0.3328, -20.6711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [105.8384, 0.3328, -20.6711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.6266, 0, 30.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.6266, 0, 30.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.8022, 2.6473, -29.6552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.8022, 2.6473, -29.6552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-111.8043, 0, -35.2373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-111.8043, 0, -35.2373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-67.5292, 1.2789, 17.5897], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-67.5292, 1.2789, 17.5897], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.4026, 1.5819, -45.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.4026, 1.5819, -45.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [20.9737, 5.0111, 40.5108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [20.9737, 5.0111, 40.5108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-63.4585, 1.6657, -1.1002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-63.4585, 1.6657, -1.1002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [85.457, 1.1508, 33.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [85.457, 1.1508, 33.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.9046, 0.5562, 74.8395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.9046, 0.5562, 74.8395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.233, 5.096, -18.478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.233, 5.096, -18.478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-78.2559, 0.3484, -39.157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-78.2559, 0.3484, -39.157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [45.109, 0, 112.7404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [45.109, 0, 112.7404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.1224, 2.3407, -26.7178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.1224, 2.3407, -26.7178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [93.3695, 0.9744, -11.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [93.3695, 0.9744, -11.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.9308, 0.0163, 97.5092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.9308, 0.0163, 97.5092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-125.8378, 0, -22.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-125.8378, 0, -22.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.106, 0.0938, -7.3497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.106, 0.0938, -7.3497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-61.7672, 1.5654, -18.6193], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-61.7672, 1.5654, -18.6193], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [98.0097, 0.6519, 24.118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [98.0097, 0.6519, 24.118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.1058, 0, -63.0882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.1058, 0, -63.0882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.4583, 0.9483, 11.6703], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.4583, 0.9483, 11.6703], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.1487, 2.8225, 25.8388], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.1487, 2.8225, 25.8388], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.4022, 0.5153, 94.6797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.4022, 0.5153, 94.6797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-87.9504, 0.0023, -54.5598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-87.9504, 0.0023, -54.5598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [74.0243, 2.5024, 8.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [74.0243, 2.5024, 8.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-93.3634, 0.0078, -46.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-93.3634, 0.0078, -46.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [113.5835, 0.1652, -5.1028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [113.5835, 0.1652, -5.1028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.6829, 1.782, 40.4534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.6829, 1.782, 40.4534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.909, 0.9237, 81.2843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.909, 0.9237, 81.2843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [80.0051, 1.125, -39.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [80.0051, 1.125, -39.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [26.9849, 0.5518, 93.4012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [26.9849, 0.5518, 93.4012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.141, 0, -53.7695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.141, 0, -53.7695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [73.5205, 0.3748, 75.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [73.5205, 0.3748, 75.9136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.5548, 0.0029, 87.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.5548, 0.0029, 87.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [35.7781, 3.9238, 45.2753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [35.7781, 3.9238, 45.2753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-81.6115, 0.1115, -50.3969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-81.6115, 0.1115, -50.3969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [80.3146, 0.4472, 66.4729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [80.3146, 0.4472, 66.4729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-57.8185, 1.6499, -26.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-57.8185, 1.6499, -26.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-32.5297, 4.4857, 14.5423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-32.5297, 4.4857, 14.5423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-38.37, 3.806, 17.4321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-38.37, 3.806, 17.4321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [48.2394, 0.0346, 105.2301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [48.2394, 0.0346, 105.2301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.999, 1.7223, 48.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.999, 1.7223, 48.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.2901, 1.3379, -55.2754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.2901, 1.3379, -55.2754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.1151, 0.3136, 92.5938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.1151, 0.3136, 92.5938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [58.3898, 4.1032, 4.692], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [58.3898, 4.1032, 4.692], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.0841, 1.9021, -61.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.0841, 1.9021, -61.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [91.3492, 0, 84.0503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [91.3492, 0, 84.0503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.7047, 1.4203, -44.1854], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.7047, 1.4203, -44.1854], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-99.8223, 0.074, -6.95], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-99.8223, 0.074, -6.95], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.1677, 0.1386, -5.8102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.1677, 0.1386, -5.8102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-104.0219, 0.0216, -10.1818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-104.0219, 0.0216, -10.1818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-96.7418, 0.0391, -25.229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-96.7418, 0.0391, -25.229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [75.0677, 2.1688, 22.1195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [75.0677, 2.1688, 22.1195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.7173, 0.3644, 65.236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.7173, 0.3644, 65.236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [85.4718, 0.5324, -52.0536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [85.4718, 0.5324, -52.0536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [118.1296, 0.0522, 9.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [118.1296, 0.0522, 9.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [23.0244, 0.0243, 111.4956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [23.0244, 0.0243, 111.4956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-80.7292, 0.6045, 11.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-80.7292, 0.6045, 11.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [106.7693, 0.2348, -28.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [106.7693, 0.2348, -28.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-108.5615, 0, 6.1162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-108.5615, 0, 6.1162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [52.8805, 0, 108.2958], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [52.8805, 0, 108.2958], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-52.0816, 2.4117, 20.4282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-52.0816, 2.4117, 20.4282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.2942, 3.0905, -12.045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.2942, 3.0905, -12.045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-95.5767, 0.0282, -29.7591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-95.5767, 0.0282, -29.7591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [81.9692, 1.4261, 30.6453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [81.9692, 1.4261, 30.6453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-122.9545, 0, -0.8412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-122.9545, 0, -0.8412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.6534, 1.4725, 24.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.6534, 1.4725, 24.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [103.3508, 0.5298, 7.4174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [103.3508, 0.5298, 7.4174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.0095, 0.3734, 67.818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.0095, 0.3734, 67.818], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.8102, 2.9493, -37.8014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.8102, 2.9493, -37.8014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-84.5098, 0.0436, -52.5207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-84.5098, 0.0436, -52.5207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [110.7357, 0.1051, 35.1584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [110.7357, 0.1051, 35.1584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [43.4765, 0.9046, 81.0134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [43.4765, 0.9046, 81.0134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [60.2704, 0.033, 99.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [60.2704, 0.033, 99.9493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [97.1123, 0.5973, 31.0509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [97.1123, 0.5973, 31.0509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [47.9176, 2.3568, 56.0651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [47.9176, 2.3568, 56.0651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [77.75, 1.3738, -36.3749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [77.75, 1.3738, -36.3749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-36.9489, 3.9108, -13.7035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-36.9489, 3.9108, -13.7035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [9.0581, 3.7723, 53.6595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [9.0581, 3.7723, 53.6595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.3554, 4.4306, 36.0819], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.3554, 4.4306, 36.0819], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [86.3545, 0.9582, -33.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [86.3545, 0.9582, -33.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [62.4145, 2.7879, 33.9838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [62.4145, 2.7879, 33.9838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.7148, 0.0177, 96.2759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.7148, 0.0177, 96.2759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.5679, 3.2128, -36.3841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.5679, 3.2128, -36.3841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [77.4693, 1.8672, -21.207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [77.4693, 1.8672, -21.207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [36.7499, 3.3567, 50.902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [36.7499, 3.3567, 50.902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [32.3763, 4.8083, 37.5566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [32.3763, 4.8083, 37.5566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [88.5051, 1.3085, -6.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [88.5051, 1.3085, -6.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [52.155, 4.2007, 24.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [52.155, 4.2007, 24.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-121.3491, 0, -29.0092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-121.3491, 0, -29.0092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.3696, 1.4847, -61.8316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.3696, 1.4847, -61.8316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-68.696, 0.7042, -39.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-68.696, 0.7042, -39.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-65.5597, 0.8535, -38.7524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-65.5597, 0.8535, -38.7524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.4628, 3.4394, 8.2649], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.4628, 3.4394, 8.2649], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [91.9938, 1.1205, 2.012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [91.9938, 1.1205, 2.012], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-97.8438, 0.0924, 5.6529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-97.8438, 0.0924, 5.6529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.6062, 4.7962, -28.9914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.6062, 4.7962, -28.9914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [46.8798, 1.531, -63.7401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [46.8798, 1.531, -63.7401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-43.6563, 3.3094, -11.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-43.6563, 3.3094, -11.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [76.751, 1.7517, 31.8121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [76.751, 1.7517, 31.8121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [89.9826, 0.5712, 48.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [89.9826, 0.5712, 48.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [64.0601, 1.7365, -46.8097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [64.0601, 1.7365, -46.8097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.2364, 0.1446, 105.5301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.2364, 0.1446, 105.5301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-112.2809, 0, -13.5281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-112.2809, 0, -13.5281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-107.8748, 0, -29.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-107.8748, 0, -29.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.2807, 0, -60.778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.2807, 0, -60.778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.9591, 1.1755, 33.5335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.9591, 1.1755, 33.5335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [61.3924, 0.4621, 82.2195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [61.3924, 0.4621, 82.2195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [18.543, 1.5934, 76.7394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [18.543, 1.5934, 76.7394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.2347, 0.681, 90.8332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.2347, 0.681, 90.8332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-63.7977, 1.1706, -29.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-63.7977, 1.1706, -29.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-84.4099, 0.3857, -19.6634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-84.4099, 0.3857, -19.6634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [108.2268, 0.1487, 37.4803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [108.2268, 0.1487, 37.4803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [119.158, 0.0326, -19.7894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [119.158, 0.0326, -19.7894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-52.1712, 2.0936, -25.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-52.1712, 2.0936, -25.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [50.3105, 4.9548, -0.4141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [50.3105, 4.9548, -0.4141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-98.487, 0.0179, 27.2226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-98.487, 0.0179, 27.2226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-7.8512, 0.139, 105.4095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-7.8512, 0.139, 105.4095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-96.5648, 0, -49.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-96.5648, 0, -49.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [100.032, 0.2726, 45.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [100.032, 0.2726, 45.9741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [61.1082, 0.6236, 77.7642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [61.1082, 0.6236, 77.7642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [44.9352, 4.8636, -19.4577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [44.9352, 4.8636, -19.4577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [66.9581, 1.9987, -37.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [66.9581, 1.9987, -37.9646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.1033, 1.6054, 63.3842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.1033, 1.6054, 63.3842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-105.5376, 0, -16.3149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-105.5376, 0, -16.3149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [46.8625, 3.5409, 41.4387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [46.8625, 3.5409, 41.4387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-49.8562, 2.6176, -14.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-49.8562, 2.6176, -14.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [75.5973, 1.0345, 53.9759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [75.5973, 1.0345, 53.9759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [82.8749, 1.4598, -21.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [82.8749, 1.4598, -21.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [59.647, 1.5484, 59.429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [59.647, 1.5484, 59.429], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.784, 0.164, 101.2671], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.784, 0.164, 101.2671], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [53.3326, 3.365, 36.8984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [53.3326, 3.365, 36.8984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [6.7198, 1.0701, 85.0327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [6.7198, 1.0701, 85.0327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [114.6773, 0.021, 35.6132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [114.6773, 0.021, 35.6132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-109.206, 0, -10.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-109.206, 0, -10.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [84.343, 1.6286, -3.775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [84.343, 1.6286, -3.775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [116.7796, 0.064, -12.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [116.7796, 0.064, -12.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [6.6943, 0, 124.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [6.6943, 0, 124.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.2496, 0.6286, 71.5478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.2496, 0.6286, 71.5478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.5306, 1.7453, 69.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.5306, 1.7453, 69.8839], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [78.3387, 2.1234, 6.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [78.3387, 2.1234, 6.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [59.685, 3.9223, 9.2175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [59.685, 3.9223, 9.2175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [95.267, 0.9135, -4.3796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [95.267, 0.9135, -4.3796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [68.2704, 1.6394, 48.6603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [68.2704, 1.6394, 48.6603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.4675, 0, -48.187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.4675, 0, -48.187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [99.5712, 0.0947, 59.9612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [99.5712, 0.0947, 59.9612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [34.1968, 0.299, 98.6462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [34.1968, 0.299, 98.6462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-81.9691, 0.3754, -28.0261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-81.9691, 0.3754, -28.0261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-102.786, 0.0003, 7.5178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-102.786, 0.0003, 7.5178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [71.3894, 1.4811, 48.2021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [71.3894, 1.4811, 48.2021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [67.1693, 1.662, -44.5376], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [67.1693, 1.662, -44.5376], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [54.4241, 0.5397, 84.0664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [54.4241, 0.5397, 84.0664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.0678, 0.3724, 66.7247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.0678, 0.3724, 66.7247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [100.9699, 0.4286, -27.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [100.9699, 0.4286, -27.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [14.9082, 1.0236, 85.715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [14.9082, 1.0236, 85.715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [110.4298, 0.2548, 12.3089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [110.4298, 0.2548, 12.3089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [35.0174, 5.3392, 29.0322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [35.0174, 5.3392, 29.0322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-103.3664, 0, -32.2683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-103.3664, 0, -32.2683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-120.1867, 0, -8.7982], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-120.1867, 0, -8.7982], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [48.483, 4.874, 17.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [48.483, 4.874, 17.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [63.9295, 3.3252, 16.8488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [63.9295, 3.3252, 16.8488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-101.3982, 0, -51.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-101.3982, 0, -51.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-53.07, 2.3607, 18.5993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-53.07, 2.3607, 18.5993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.7169, 0.9125, 87.6165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.7169, 0.9125, 87.6165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-100.2199, 0.0121, 10.2211], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-100.2199, 0.0121, 10.2211], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-75.4406, 0.6715, -25.9669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-75.4406, 0.6715, -25.9669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.4463, 0.0007, -38.3534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.4463, 0.0007, -38.3534], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [41.8341, 1.2869, 74.9974], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [41.8341, 1.2869, 74.9974], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [13.6996, 4.0867, 50.5852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [13.6996, 4.0867, 50.5852], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [39.2329, 5.4422, 22.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [39.2329, 5.4422, 22.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [45.6433, 2.9417, -45.2571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [45.6433, 2.9417, -45.2571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-114.8267, 0, 21.39], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-114.8267, 0, 21.39], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [25.7036, 0, 116.4245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [25.7036, 0, 116.4245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [37.1304, 2.7508, 57.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [37.1304, 2.7508, 57.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [92.4688, 0.1025, 69.5072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [92.4688, 0.1025, 69.5072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-80.1465, 0.6512, 7.0935], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-80.1465, 0.6512, 7.0935], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [31.7289, 5.0828, 34.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [31.7289, 5.0828, 34.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [83.5804, 0.3462, 67.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [83.5804, 0.3462, 67.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.7366, 0, 113.5917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.7366, 0, 113.5917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-94.1802, 0.1245, -12.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-94.1802, 0.1245, -12.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [117.0531, 0.0104, 33.6559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [117.0531, 0.0104, 33.6559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [125.442, 0, 7.1473], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [125.442, 0, 7.1473], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [55.8504, 2.6374, 45.2265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [55.8504, 2.6374, 45.2265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [7.0036, 1.8112, 74.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [7.0036, 1.8112, 74.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [118.1517, 0.0495, 10.9929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [118.1517, 0.0495, 10.9929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-39.5302, 3.1988, -24.7092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-39.5302, 3.1988, -24.7092], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [94.24, 0.1948, -56.0977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [94.24, 0.1948, -56.0977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.5834, 0, 119.3313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.5834, 0, 119.3313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [69.4349, 1.6158, 47.7346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [69.4349, 1.6158, 47.7346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [58.3126, 0.686, 77.9828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [58.3126, 0.686, 77.9828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-122.2515, 0, 12.2679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-122.2515, 0, 12.2679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [40.8431, 0.3805, 94.1261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [40.8431, 0.3805, 94.1261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-72.5547, 0.513, -40.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-72.5547, 0.513, -40.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [51.9403, 3.9133, -25.1068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [51.9403, 3.9133, -25.1068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [88.4521, 1.1849, -17.8536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [88.4521, 1.1849, -17.8536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [10.2758, 8.2885, 8.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres_quartier", - "type": "Object3D", - "position": [10.1688, 24.8656, 21.5969], - "rotation": [0, -0.7007, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [106.303, 1.5537, 41.3326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [106.303, 1.5537, 41.3326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6722, 2.1095, 90.6089], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [28.2738, 2.1095, 90.0912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [38.3874, 6.0104, -30.5097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [38.3874, 6.0104, -30.5097], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [75.6188, 1.405, 92.4838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [75.6188, 1.405, 92.4838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [17.95, 4.1144, 63.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.2656, 4.1144, 64.4037], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [4.4093, 2.8308, 79.0566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [3.1305, 2.8308, 82.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-127.6053, 1.39, 6.5501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-127.6053, 1.39, 6.5501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [125.7973, 1.39, 21.9691], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [125.7973, 1.39, 21.9691], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [113.3925, 1.4755, -26.9434], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [113.3925, 1.4755, -26.9434], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [70.091, 2.0242, 70.6713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [70.091, 2.0242, 70.6713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-82.7908, 1.39, -74.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-82.7908, 1.39, -74.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-80.3519, 1.9275, 23.8045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-80.3519, 1.9275, 23.8045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-57.2007, 2.1607, -53.5708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-57.2007, 2.1607, -53.5708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-107.2756, 1.39, -60.0639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-107.2756, 1.39, -60.0639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-40.4325, 5.0887, -8.7557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-41.8874, 5.0887, -7.1572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [67.3191, 3.3578, 43.1045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [67.3191, 3.3578, 43.1045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-23.4508, 6.2418, -20.9354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-21.4351, 6.2418, -21.348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6329, 1.39, 118.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.6329, 1.39, 118.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-45.1945, 3.7868, -31.5903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-45.1945, 3.7868, -31.5903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-83.9177, 1.4614, -49.8224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-83.9177, 1.4614, -49.8224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-116.1539, 1.39, -39.5995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-116.1539, 1.39, -39.5995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-64.0032, 3.0003, -3.5136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-64.0032, 3.0003, -3.5136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [37.824, 3.2927, 67.6624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [40.3303, 3.2927, 67.5174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [43.4117, 5.752, 33.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [43.4117, 5.752, 33.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-44.4315, 4.6804, 13.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-44.4315, 4.6804, 13.709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [124.057, 1.3966, -6.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [124.057, 1.3966, -6.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-98.4532, 1.4956, -0.1679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-97.6134, 1.4956, 2.2996], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [56.8354, 3.5621, -46.5503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [56.8354, 3.5621, -46.5503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [69.717, 4.1732, -11.3043], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [69.717, 4.1732, -11.3043], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [103.0174, 1.9168, -6.5555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [103.0174, 1.9168, -6.5555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [90.5309, 1.5918, 65.8542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [90.5309, 1.5918, 65.8542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [81.9374, 2.4716, -38.0597], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [81.9374, 2.4716, -38.0597], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.9636, 1.4267, 110.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.9636, 1.4267, 110.8328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [20.9686, 6.1758, 42.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.9686, 6.1758, 42.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [83.7699, 1.6331, -66.8107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [83.7699, 1.6331, -66.8107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [46.1492, 1.6243, 96.9535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [46.1492, 1.6243, 96.9535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [88.9324, 2.6236, 16.4933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [88.8868, 2.6236, 18.784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [-51.3574, 8.2405, -13.9443], - "rotation": [-3.1416, -1.1003, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-44.7536, 6.5105, -33.8088], - "rotation": [0, 1.3151, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-44.7536, 5.4185, -33.8088], - "rotation": [0, 1.3151, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-33.4517, 8.4233, -14.3777], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble", - "type": "Object3D", - "position": [-35.0952, 7.4391, -11.2481], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-35.0952, 7.4391, -11.2481], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble", - "type": "Object3D", - "position": [-31.8081, 9.4074, -17.5073], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-31.8081, 9.4074, -17.5073], - "rotation": [0, 1.0967, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-56.3613, 6.2423, -15.6316], - "rotation": [0, 0.8463, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-56.3613, 4.9693, -15.6316], - "rotation": [0, 0.8463, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-61.1478, 6.0441, 5.1504], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-63.5018, 5.0599, 7.7876], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-63.5018, 5.0599, 7.7876], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-58.7939, 7.0283, 2.5133], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-58.7939, 7.0283, 2.5133], - "rotation": [0, 0.8515, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-36.6903, 8.3502, 9.731], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-38.0051, 7.366, 13.0123], - "rotation": [0, 1.1992, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-38.0051, 7.366, 13.0123], - "rotation": [0, 1.1992, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-35.3756, 9.3343, 6.4496], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-35.3756, 9.3343, 6.4496], - "rotation": [0, 1.1991, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-84.3828, 4.1993, -61.5091], - "rotation": [0, 1.1767, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-84.3828, 3.2803, -61.5091], - "rotation": [0, 1.1767, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-68.7111, 4.651, -50.5238], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-69.6533, 3.6669, -47.1168], - "rotation": [0, 1.3105, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-69.6533, 3.6669, -47.1168], - "rotation": [0, 1.3105, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-67.7689, 5.6352, -53.9309], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-67.7689, 5.6352, -53.9309], - "rotation": [0, 1.3104, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-100.9035, 4.19, -31.7676], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-103.0387, 3.2058, -28.9504], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-103.0387, 3.2058, -28.9504], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-98.7682, 5.1742, -34.5848], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-98.7682, 5.1742, -34.5848], - "rotation": [0, 0.9317, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-79.1874, 4.7345, -23.9129], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-81.0293, 3.7503, -20.8958], - "rotation": [0, 1.0322, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-81.0293, 3.7503, -20.8958], - "rotation": [0, 1.0322, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-77.3455, 5.7187, -26.9301], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-77.3455, 5.7187, -26.9301], - "rotation": [0, 1.0321, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [-107.9151, 4.19, 1.755], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [-107.7927, 3.2058, 5.2878], - "rotation": [3.1416, 1.5267, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [-107.7927, 3.2058, 5.2878], - "rotation": [3.1416, 1.5267, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [-108.0375, 5.1742, -1.7778], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [-108.0375, 5.1742, -1.7778], - "rotation": [3.1416, 1.5267, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [-85.2787, 4.6413, 3.4477], - "rotation": [3.1416, 1.5431, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [-85.2787, 3.6193, 3.4477], - "rotation": [3.1416, 1.5431, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [7.1718, 9.4131, 68.5991], - "rotation": [3.1416, 0.1131, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [7.8967, 4.1992, 114.363], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.3643, 3.2151, 114.4985], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.3643, 3.2151, 114.4985], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.429, 5.1834, 114.2275], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.429, 5.1834, 114.2275], - "rotation": [0, 0.0478, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [8.3955, 4.7997, 93.7519], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.8661, 3.8156, 93.9483], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.8661, 3.8156, 93.9483], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.925, 5.7839, 93.5555], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.925, 5.7839, 93.5555], - "rotation": [0, 0.065, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [8.1016, 5.9085, 75.5432], - "rotation": [0, -0.116, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [8.1016, 4.5891, 75.5432], - "rotation": [0, -0.116, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [7.8601, 7.8395, 54.7639], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [4.328, 6.8554, 54.6231], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [4.328, 6.8554, 54.6231], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [11.3922, 8.8237, 54.9046], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [11.3922, 8.8237, 54.9046], - "rotation": [0, -0.0304, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeubles", - "type": "Object3D", - "position": [69.3487, -0.4334, -18.4482], - "rotation": [3.1416, 1.1456, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [55.6272, 8.4233, 14.5658], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [58.5315, 7.4391, 16.5809], - "rotation": [3.1416, 0.5971, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [58.5315, 7.4391, 16.5809], - "rotation": [3.1416, 0.5971, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [52.7229, 9.4074, 12.5507], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [52.7229, 9.4074, 12.5507], - "rotation": [3.1416, 0.5972, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [77.6876, 6.2066, 19.0807], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [80.4667, 5.2224, 21.2652], - "rotation": [3.1416, 0.6567, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [80.4667, 5.2224, 21.2652], - "rotation": [3.1416, 0.6567, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [74.9084, 7.1908, 16.8962], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [74.9084, 7.1908, 16.8962], - "rotation": [3.1416, 0.6567, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [107.643, 4.4872, 21.6635], - "rotation": [3.1416, 0.7261, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [107.643, 3.0547, 21.6635], - "rotation": [3.1416, 0.7261, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [35.8706, 8.4233, -36.9019], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [38.4102, 7.4391, -34.443], - "rotation": [3.1416, 0.7598, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [38.4102, 7.4391, -34.443], - "rotation": [3.1416, 0.7598, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [33.331, 9.4074, -39.3608], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [33.331, 9.4074, -39.3608], - "rotation": [3.1416, 0.7598, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [48.7038, 6.157, -56.1174], - "rotation": [0, 1.4495, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [48.7038, 4.532, -56.1174], - "rotation": [0, 1.4495, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [62.838, 6.3419, -40.4284], - "rotation": [3.1416, 0.6961, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [62.838, 4.759, -40.4284], - "rotation": [3.1416, 0.6961, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [85.4777, 4.5325, -60.3785], - "rotation": [3.1416, 1.1427, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [85.4777, 3.2953, -60.3785], - "rotation": [3.1416, 1.1427, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [79.3194, 6.2278, -2.0972], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [81.4108, 5.2437, 0.7526], - "rotation": [3.1416, 0.9283, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [81.4108, 5.2437, 0.7526], - "rotation": [3.1416, 0.9283, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [77.2281, 7.212, -4.9471], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [77.2281, 7.212, -4.9471], - "rotation": [3.1416, 0.9283, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [49.6595, 8.4233, -23.113], - "rotation": [0, 1.5065, 0], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [49.6595, 7.1077, -23.113], - "rotation": [0, 1.5065, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [96.5106, 4.567, -41.6063], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [96.2087, 3.5829, -38.0843], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [96.2087, 3.5829, -38.0843], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [96.8126, 5.5512, -45.1283], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [96.8126, 5.5512, -45.1283], - "rotation": [0, 1.4947, 0], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [72.7641, 6.4192, -21.5489], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [73.8823, 5.435, -18.1955], - "rotation": [3.1416, 1.2395, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [73.8823, 5.435, -18.1955], - "rotation": [3.1416, 1.2395, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [71.646, 7.4033, -24.9023], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [71.646, 7.4033, -24.9023], - "rotation": [3.1416, 1.2395, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [56.6478, 8.4233, -4.9078], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [57.2363, 7.4391, -1.4223], - "rotation": [3.1416, 1.3941, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [57.2363, 7.4391, -1.4223], - "rotation": [3.1416, 1.3941, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [56.0593, 9.4074, -8.3934], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [56.0593, 9.4074, -8.3934], - "rotation": [3.1416, 1.3941, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [110.4581, 4.4084, -16.153], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [112.0712, 3.4242, -13.0076], - "rotation": [3.1416, 1.0875, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [112.0712, 3.4242, -13.0076], - "rotation": [3.1416, 1.0875, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [108.8451, 5.3925, -19.2984], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [108.8451, 5.3925, -19.2984], - "rotation": [3.1416, 1.0875, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_domaine", - "type": "Object3D", - "position": [-5.1095, 5.1349, -49.4551], - "rotation": [0, -1.3459, 0], - "scale": [1, 1, 1] - }, - { - "name": "tuyauxlac", - "type": "Mesh", - "position": [13.5709, -2.7158, -90.5087], - "rotation": [-3.0738, 0.8046, 3.0896], - "scale": [1, 1, 1] - }, - { - "name": "champ2", - "type": "Object3D", - "position": [14.4035, 16.0553, -33.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.1857, 6.2284, -19.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.1857, 6.2284, -19.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.7702, 6.2258, -19.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.7702, 6.2258, -19.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.0231, 6.1146, -20.6707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.0231, 6.1146, -20.6707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.626, 6.1135, -20.119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.626, 6.1135, -20.119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0062, 6.1929, -18.541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0062, 6.1929, -18.541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.841, 6.1013, -19.1106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.841, 6.1013, -19.1106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.372, 6.2151, -18.8306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.372, 6.2151, -18.8306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.2308, 6.109, -19.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.2308, 6.109, -19.5977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.6115, 5.8833, -20.6261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.6115, 5.8833, -20.6261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.9807, 5.8833, -21.2528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.9807, 5.8833, -21.2528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.7132, 5.9971, -19.82], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.7132, 5.9971, -19.82], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.1003, 5.9986, -20.4051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.1003, 5.9986, -20.4051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.6978, 5.8833, -22.4823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.6978, 5.8833, -22.4823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.8604, 5.9997, -21.5765], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.8604, 5.9997, -21.5765], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.3441, 5.8833, -21.873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.3441, 5.8833, -21.873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.484, 5.9995, -20.992], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.484, 5.9995, -20.992], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.5351, 5.7647, -23.3882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.5351, 5.7647, -23.3882], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.205, 5.7647, -22.7566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.205, 5.7647, -22.7566], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3725, 5.6437, -24.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3725, 5.6437, -24.294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0658, 5.6437, -23.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0658, 5.6437, -23.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5185, 5.7647, -21.4644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5185, 5.7647, -21.4644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.4254, 5.6437, -22.3028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.4254, 5.6437, -22.3028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.8647, 5.7647, -22.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.8647, 5.7647, -22.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.7487, 5.6437, -22.975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.7487, 5.6437, -22.975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.2393, 5.3954, -23.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.2393, 5.3954, -23.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.5168, 5.3954, -24.6973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.5168, 5.3954, -24.6973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.3323, 5.5205, -23.1411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.3323, 5.5205, -23.1411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.6328, 5.5205, -23.8362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.6328, 5.5205, -23.8362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.0472, 5.3954, -26.1057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.0472, 5.3954, -26.1057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.2098, 5.5205, -25.1999], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.2098, 5.5205, -25.1999], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.7875, 5.3954, -25.4077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.7875, 5.3954, -25.4077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.9267, 5.5205, -24.524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.9267, 5.5205, -24.524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.8845, 5.2687, -27.0115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.8845, 5.2687, -27.0115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.6484, 5.2687, -26.2914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.6484, 5.2687, -26.2914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.7219, 5.1406, -27.9174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.7219, 5.1406, -27.9174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5092, 5.1406, -27.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5092, 5.1406, -27.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.1462, 5.2687, -24.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.1462, 5.2687, -24.8178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0532, 5.1406, -25.6562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0532, 5.1406, -25.6562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.4008, 5.2687, -25.5584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.4008, 5.2687, -25.5584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.2848, 5.1406, -26.4195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.2848, 5.1406, -26.4195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.867, 4.8811, -27.3328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.867, 4.8811, -27.3328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0528, 4.8811, -28.1418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0528, 4.8811, -28.1418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9601, 5.0113, -26.4945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9601, 5.0113, -26.4945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.1688, 5.0113, -27.2807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.1688, 5.0113, -27.2807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.3966, 4.8811, -29.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.3966, 4.8811, -29.7291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5592, 5.0113, -28.8232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5592, 5.0113, -28.8232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.231, 4.8811, -28.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.231, 4.8811, -28.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.3701, 5.0113, -28.0587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.3701, 5.0113, -28.0587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.2339, 4.7502, -30.6349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.2339, 4.7502, -30.6349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0918, 4.7502, -29.8261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0918, 4.7502, -29.8261], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0766, 4.6183, -31.5449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0766, 4.6183, -31.5449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9584, 4.6182, -30.7143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9584, 4.6182, -30.7143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.774, 4.7502, -28.1712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.774, 4.7502, -28.1712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6874, 4.6181, -29.0146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6874, 4.6181, -29.0146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.9368, 4.7502, -29.0029], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.9368, 4.7502, -29.0029], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8269, 4.6182, -29.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8269, 4.6182, -29.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.5848, 4.3442, -30.7572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.5848, 4.3442, -30.7572], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6744, 4.3448, -31.6539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6744, 4.3448, -31.6539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.62, 4.4833, -29.8732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.62, 4.4833, -29.8732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7353, 4.4835, -30.7493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7353, 4.4835, -30.7493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8206, 4.3463, -33.4113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8206, 4.3463, -33.4113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.9353, 4.484, -32.4676], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.9353, 4.484, -32.4676], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.755, 4.3455, -32.5407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.755, 4.3455, -32.5407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.8423, 4.4837, -31.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.8423, 4.4837, -31.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7431, 4.204, -34.3844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7431, 4.204, -34.3844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.7079, 4.2022, -33.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.7079, 4.2022, -33.4971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.7078, 4.0567, -35.3911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.7078, 4.0567, -35.3911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.7058, 4.0536, -34.4891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.7058, 4.0536, -34.4891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.5946, 4.1994, -31.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.5946, 4.1994, -31.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.654, 4.0488, -32.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.654, 4.0488, -32.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.6562, 4.2007, -32.5922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.6562, 4.2007, -32.5922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.6854, 4.051, -33.568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.6854, 4.051, -33.568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.907, 3.7334, -34.6586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.907, 3.7334, -34.6586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.8743, 3.7381, -35.6227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.8743, 3.7381, -35.6227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.7594, 3.8931, -33.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.7594, 3.8931, -33.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.7591, 3.8966, -34.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.7591, 3.8966, -34.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.7592, 3.7493, -37.5047], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.7592, 3.7493, -37.5047], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.7135, 3.9049, -36.4312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.7135, 3.9049, -36.4312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.8281, 3.7433, -36.5742], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.8281, 3.7433, -36.5742], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.7466, 3.9004, -35.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.7466, 3.9004, -35.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.8437, 3.5903, -38.6115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.8437, 3.5903, -38.6115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.9481, 3.583, -37.6645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.9481, 3.583, -37.6645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.9619, 3.4285, -39.7474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.9619, 3.4285, -39.7474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.0961, 3.4206, -38.7814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.0961, 3.4206, -38.7814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.0932, 3.5706, -35.7173], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.0932, 3.5706, -35.7173], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.2542, 3.4098, -36.7998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.2542, 3.4098, -36.7998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0279, 3.5766, -36.697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0279, 3.5766, -36.697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.1901, 3.4145, -37.7964], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.1901, 3.4145, -37.7964], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0431, 3.127, -38.9949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0431, 3.127, -38.9949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.3592, 3.1015, -40.0368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.3592, 3.1015, -40.0368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.2661, 3.2598, -37.8955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.2661, 3.2598, -37.8955], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.3036, 3.2559, -38.9121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.3036, 3.2559, -38.9121], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.2604, 3.0998, -42.0729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.2604, 3.0998, -42.0729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.104, 3.2647, -40.9039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.104, 3.2647, -40.9039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.4099, 3.0943, -41.0638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.4099, 3.0943, -41.0638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.2531, 3.2574, -39.917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.2531, 3.2574, -39.917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.7535, 6.2284, -21.7876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.7535, 6.2284, -21.7876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.3812, 6.2284, -21.306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.3812, 6.2284, -21.306], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.4916, 6.1146, -22.7761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.4916, 6.1146, -22.7761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.1449, 6.1146, -22.2747], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.1449, 6.1146, -22.2747], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5978, 6.2284, -20.2942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5978, 6.2284, -20.2942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.4111, 6.1146, -21.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.4111, 6.1146, -21.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.9961, 6.2284, -20.8081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.9961, 6.2284, -20.8081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.7849, 6.1146, -21.7565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.7849, 6.1146, -21.7565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.0378, 5.8833, -23.0766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.0378, 5.8833, -23.0766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.3625, 5.8833, -23.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.3625, 5.8833, -23.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2245, 5.9997, -22.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2245, 5.9997, -22.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.5737, 5.9997, -22.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.5737, 5.9997, -22.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9678, 5.8833, -24.7529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9678, 5.8833, -24.7529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2297, 5.9997, -23.7645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2297, 5.9997, -23.7645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.6723, 5.8833, -24.2122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.6723, 5.8833, -24.2122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9086, 5.9997, -23.2435], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9086, 5.9997, -23.2435], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.7058, 5.7647, -25.7413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.7058, 5.7647, -25.7413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.436, 5.7647, -25.181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.436, 5.7647, -25.181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.4439, 5.6437, -26.7297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.4439, 5.6437, -26.7297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.1997, 5.6437, -26.1497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.1997, 5.6437, -26.1497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.8512, 5.7647, -24.004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.8512, 5.7647, -24.004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.6645, 5.6437, -24.9315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.6645, 5.6437, -24.9315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.1513, 5.7647, -24.6018], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.1513, 5.7647, -24.6018], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.9401, 5.6437, -25.5502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.9401, 5.6437, -25.5502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.2912, 5.3954, -26.7864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.2912, 5.3954, -26.7864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.5177, 5.3954, -27.447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.5177, 5.3954, -27.447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.4779, 5.5205, -25.8589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.4779, 5.5205, -25.8589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.7289, 5.5205, -26.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.7289, 5.5205, -26.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.9201, 5.3954, -28.7065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.9201, 5.3954, -28.7065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.182, 5.5205, -27.7181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.182, 5.5205, -27.7181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.7271, 5.3954, -28.0872], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.7271, 5.3954, -28.0872], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.9634, 5.5205, -27.1185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.9634, 5.5205, -27.1185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.6581, 5.2687, -29.6949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.6581, 5.2687, -29.6949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4908, 5.2687, -29.0559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4908, 5.2687, -29.0559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3962, 5.1406, -30.6833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3962, 5.1406, -30.6833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.2545, 5.1406, -30.0247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.2545, 5.1406, -30.0247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.1046, 5.2687, -27.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.1046, 5.2687, -27.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.9179, 5.1406, -28.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.9179, 5.1406, -28.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.3065, 5.2687, -28.3954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.3065, 5.2687, -28.3954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0953, 5.1406, -29.3439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0953, 5.1406, -29.3439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5446, 4.8811, -30.4962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5446, 4.8811, -30.4962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.6728, 4.8811, -31.2407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.6728, 4.8811, -31.2407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7313, 5.0113, -29.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7313, 5.0113, -29.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.8841, 5.0113, -30.2923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.8841, 5.0113, -30.2923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.8724, 4.8811, -32.6601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.8724, 4.8811, -32.6601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.1343, 5.0113, -31.6717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.1343, 5.0113, -31.6717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.7819, 4.8811, -31.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.7819, 4.8811, -31.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.0182, 5.0113, -30.9934], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.0182, 5.0113, -30.9934], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.6105, 4.7502, -33.6485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.6105, 4.7502, -33.6485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.5456, 4.7502, -32.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.5456, 4.7502, -32.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.3514, 4.6186, -34.6394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.3514, 4.6186, -34.6394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.3128, 4.6185, -33.9025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.3128, 4.6185, -33.9025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.358, 4.7502, -31.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.358, 4.7502, -31.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.1761, 4.6183, -32.3549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.1761, 4.6183, -32.3549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.4616, 4.7502, -32.1891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.4616, 4.7502, -32.1891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.2546, 4.6184, -33.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.2546, 4.6184, -33.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.8652, 4.3473, -34.259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.8652, 4.3473, -34.259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.8866, 4.3484, -35.0809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.8866, 4.3484, -35.0809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.0087, 4.4844, -33.2975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.0087, 4.4844, -33.2975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0601, 4.4848, -34.1026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0601, 4.4848, -34.1026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.8647, 4.3505, -36.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.8647, 4.3505, -36.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.1009, 4.4855, -35.638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.1009, 4.4855, -35.638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.8859, 4.3495, -35.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.8859, 4.3495, -35.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.0906, 4.4852, -34.8828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.0906, 4.4852, -34.8828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.6484, 4.2131, -37.6781], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.6484, 4.2131, -37.6781], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7059, 4.2109, -36.8922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7059, 4.2109, -36.8922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.4577, 4.0724, -38.7319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.4577, 4.0724, -38.7319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.5559, 4.0687, -37.9334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.5559, 4.0687, -37.9334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.7553, 4.2061, -35.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.7553, 4.2061, -35.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6841, 4.0604, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6841, 4.0604, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.7422, 4.2085, -36.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.7422, 4.2085, -36.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.6324, 4.0646, -37.1126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.6324, 4.0646, -37.1126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.6587, 3.7564, -38.4059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.6587, 3.7564, -38.4059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.5244, 3.7643, -39.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.5244, 3.7643, -39.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6517, 3.9104, -37.3187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6517, 3.9104, -37.3187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.5591, 3.9165, -38.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.5591, 3.9165, -38.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.1752, 3.7788, -40.9518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.1752, 3.7788, -40.9518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.2982, 3.9279, -39.8201], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.2982, 3.9279, -39.8201], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.3616, 3.772, -40.1232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.3616, 3.772, -40.1232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.4399, 3.9226, -39.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.4399, 3.9226, -39.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.0944, 3.6244, -42.1366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.0944, 3.6244, -42.1366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.325, 3.6167, -41.2858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.325, 3.6167, -41.2858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.0529, 3.465, -43.3718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.0529, 3.465, -43.3718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.3266, 3.4569, -42.4929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.3266, 3.4569, -42.4929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.7053, 3.5986, -39.53], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.7053, 3.5986, -39.53], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.7867, 3.4377, -40.6871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.7867, 3.4377, -40.6871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.5305, 3.6078, -40.4192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.5305, 3.6078, -40.4192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.5731, 3.4475, -41.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.5731, 3.4475, -41.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.0144, 3.1099, -43.0624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.0144, 3.1099, -43.0624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.726, 3.12, -44.0334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.726, 3.12, -44.0334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.8931, 3.2745, -41.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.8931, 3.2745, -41.8677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.6417, 3.2845, -42.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.6417, 3.2845, -42.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.0428, 3.137, -45.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.0428, 3.137, -45.9359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.0394, 3.3021, -44.643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.0394, 3.3021, -44.643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.4004, 3.1293, -44.9898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.4004, 3.1293, -44.9898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.3553, 3.2941, -43.7318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.3553, 3.2941, -43.7318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.1232, 6.2284, -23.5452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.1232, 6.2284, -23.5452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.7978, 6.2284, -23.1318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.7978, 6.2284, -23.1318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.7539, 6.1146, -24.6053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.7539, 6.1146, -24.6053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4561, 6.1146, -24.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4561, 6.1146, -24.175], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.1134, 6.2284, -22.2527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.1134, 6.2284, -22.2527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.8254, 6.1146, -23.2601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.8254, 6.1146, -23.2601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4614, 6.2284, -22.7008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4614, 6.2284, -22.7008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.1467, 6.1146, -23.7265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.1467, 6.1146, -23.7265], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2493, 5.8833, -25.2749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2493, 5.8833, -25.2749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.5174, 5.8833, -25.7779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.5174, 5.8833, -25.7779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.5373, 5.9997, -24.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.5373, 5.9997, -24.2675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.8321, 5.9997, -24.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.8321, 5.9997, -24.7522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.0154, 5.8833, -26.7256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.0154, 5.8833, -26.7256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.3847, 5.9997, -25.6654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.3847, 5.9997, -25.6654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.7726, 5.8833, -26.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.7726, 5.8833, -26.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.1143, 5.9997, -25.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.1143, 5.9997, -25.2183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.6461, 5.7647, -27.7857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.6461, 5.7647, -27.7857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.4308, 5.7647, -27.3048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.4308, 5.7647, -27.3048], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.2768, 5.6437, -28.8459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.2768, 5.6437, -28.8459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.0891, 5.6437, -28.3481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.0891, 5.6437, -28.3481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.9612, 5.7647, -26.2822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.9612, 5.7647, -26.2822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.6732, 5.6437, -27.2896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.6732, 5.6437, -27.2896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.2027, 5.7647, -26.8036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.2027, 5.7647, -26.8036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8881, 5.6437, -27.8292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8881, 5.6437, -27.8292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.0971, 5.3954, -29.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.0971, 5.3954, -29.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2587, 5.3954, -29.8806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2587, 5.3954, -29.8806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.3851, 5.5205, -28.297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.3851, 5.5205, -28.297], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.5734, 5.5205, -28.8549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.5734, 5.5205, -28.8549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.5382, 5.3954, -30.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.5382, 5.3954, -30.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.9075, 5.5205, -29.906], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.9075, 5.5205, -29.906], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4056, 5.3954, -30.4346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4056, 5.3954, -30.4346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.7473, 5.5205, -29.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.7473, 5.5205, -29.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.169, 5.2687, -32.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.169, 5.2687, -32.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.0638, 5.2687, -31.4779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.0638, 5.2687, -31.4779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.7997, 5.1406, -33.0864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.7997, 5.1406, -33.0864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.7221, 5.1406, -32.5212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.7221, 5.1406, -32.5212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.809, 5.2687, -30.3118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.809, 5.2687, -30.3118], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.521, 5.1406, -31.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.521, 5.1406, -31.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.9441, 5.2687, -30.9063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.9441, 5.2687, -30.9063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.6294, 5.1406, -31.9319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.6294, 5.1406, -31.9319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.9449, 4.8811, -33.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.9449, 4.8811, -33.334], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.0001, 4.8811, -33.9833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.0001, 4.8811, -33.9833], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.2329, 5.0113, -32.3266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.2329, 5.0113, -32.3266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.3147, 5.0113, -32.9576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.3147, 5.0113, -32.9576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0611, 4.8811, -35.2067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0611, 4.8811, -35.2067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.4304, 5.0113, -34.1466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.4304, 5.0113, -34.1466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.0386, 4.8811, -34.6077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.0386, 4.8811, -34.6077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.3803, 5.0113, -33.5644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.3803, 5.0113, -33.5644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.6918, 4.7502, -36.2668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.6918, 4.7502, -36.2668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.6969, 4.7502, -35.651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.6969, 4.7502, -35.651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.3235, 4.6186, -37.3301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.3235, 4.6186, -37.3301], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3564, 4.6187, -36.6969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3564, 4.6187, -36.6969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.6568, 4.7502, -34.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.6568, 4.7502, -34.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.371, 4.6186, -35.3511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.371, 4.6186, -35.3511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.6854, 4.7502, -35.009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.6854, 4.7502, -35.009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.3725, 4.6187, -36.0371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.3725, 4.6187, -36.0371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.824, 4.3513, -37.3966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.824, 4.3513, -37.3966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.7653, 4.3516, -38.1197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.7653, 4.3516, -38.1197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.0919, 4.4858, -36.3679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.0919, 4.4858, -36.3679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0646, 4.4859, -37.0724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0646, 4.4859, -37.0724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.5975, 4.3514, -39.4903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.5975, 4.3514, -39.4903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.9581, 4.4858, -38.4025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.9581, 4.4858, -38.4025], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.6894, 4.3517, -38.8179], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.6894, 4.3517, -38.8179], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0197, 4.4859, -37.7507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0197, 4.4859, -37.7507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.2436, 4.2149, -40.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.2436, 4.2149, -40.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.368, 4.2155, -39.9035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.368, 4.2155, -39.9035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.9012, 4.0756, -41.7392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.9012, 4.0756, -41.7392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.0608, 4.0767, -41.0164], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.0608, 4.0767, -41.0164], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5718, 4.2146, -38.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5718, 4.2146, -38.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.3409, 4.0751, -39.5116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.3409, 4.0751, -39.5116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.4779, 4.2154, -39.184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.4779, 4.2154, -39.184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.208, 4.0765, -40.2734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.208, 4.0765, -40.2734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9703, 3.7838, -41.7687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9703, 3.7838, -41.7687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.751, 3.7864, -42.5759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.751, 3.7864, -42.5759], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1382, 3.9318, -40.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1382, 3.9318, -40.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.9631, 3.9339, -41.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.9631, 3.9339, -41.4001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.2814, 3.7845, -44.1529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.2814, 3.7845, -44.1529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.578, 3.9324, -42.9199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.578, 3.9324, -42.9199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5203, 3.7866, -43.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5203, 3.7866, -43.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.7756, 3.9341, -42.1683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.7756, 3.9341, -42.1683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.0192, 3.6309, -45.4491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.0192, 3.6309, -45.4491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.303, 3.6332, -44.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.303, 3.6332, -44.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.7903, 3.4716, -46.8056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.7903, 3.4716, -46.8056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1222, 3.4741, -45.9638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1222, 3.4741, -45.9638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.8443, 3.63, -42.9783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.8443, 3.63, -42.9783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.7578, 3.4708, -44.2432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.7578, 3.4708, -44.2432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.5792, 3.6329, -43.8128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.5792, 3.6329, -43.8128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.4461, 3.4738, -45.1084], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.4461, 3.4738, -45.1084], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.6581, 3.1424, -46.8757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.6581, 3.1424, -46.8757], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.2517, 3.1451, -47.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.2517, 3.1451, -47.8085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.6995, 3.3078, -45.5476], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.6995, 3.3078, -45.5476], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.3406, 3.3107, -46.4459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.3406, 3.3107, -46.4459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.3944, 3.143, -49.6305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.3944, 3.143, -49.6305], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.5852, 3.3085, -48.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.5852, 3.3085, -48.2052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.8287, 3.1453, -48.7287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.8287, 3.1453, -48.7287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9676, 3.3109, -47.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9676, 3.3109, -47.3333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.7115, 6.1929, -25.2939], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.7115, 6.1929, -25.2939], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.1829, 6.2151, -24.7803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.1829, 6.2151, -24.7803], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9954, 6.1013, -26.2639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9954, 6.1013, -26.2639], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.6471, 6.109, -25.8341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.6471, 6.109, -25.8341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.438, 6.2284, -23.9408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.438, 6.2284, -23.9408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.0408, 6.1146, -25.0171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.0408, 6.1146, -25.0171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.7717, 6.2258, -24.3389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.7717, 6.2258, -24.3389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.3298, 6.1135, -25.42], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.3298, 6.1135, -25.42], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.2463, 5.8833, -27.1696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.2463, 5.8833, -27.1696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.467, 5.8833, -27.596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.467, 5.8833, -27.596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.6435, 5.9997, -26.0933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.6435, 5.9997, -26.0933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.8949, 5.9995, -26.5058], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.8949, 5.9995, -26.5058], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.8895, 5.8833, -28.4161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.8895, 5.8833, -28.4161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.4005, 5.9971, -27.3127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.4005, 5.9971, -27.3127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.6804, 5.8833, -28.0098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.6804, 5.8833, -28.0098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.1463, 5.9986, -26.9106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.1463, 5.9986, -26.9106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.4066, 5.7647, -29.5377], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.4066, 5.7647, -29.5377], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.2262, 5.7647, -29.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.2262, 5.7647, -29.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.9236, 5.6437, -30.6593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.9236, 5.6437, -30.6593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.7721, 5.6437, -30.2235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.7721, 5.6437, -30.2235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.849, 5.7647, -28.2459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.849, 5.7647, -28.2459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.4518, 5.6437, -29.3222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.4518, 5.6437, -29.3222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.0414, 5.7647, -28.6878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.0414, 5.7647, -28.6878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.6158, 5.6437, -29.7796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.6158, 5.6437, -29.7796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.6573, 5.3954, -31.4748], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.6573, 5.3954, -31.4748], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.7646, 5.3954, -31.9632], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.7646, 5.3954, -31.9632], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.0545, 5.5205, -30.3985], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.0545, 5.5205, -30.3985], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.1902, 5.5205, -30.8714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.1902, 5.5205, -30.8714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.9577, 5.3954, -32.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.9577, 5.3954, -32.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.4407, 5.5205, -31.7809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.4407, 5.5205, -31.7809], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.8637, 5.3954, -32.4372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.8637, 5.3954, -32.4372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3179, 5.5205, -31.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3179, 5.5205, -31.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.4748, 5.2687, -34.0242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.4748, 5.2687, -34.0242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.4095, 5.2687, -33.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.4095, 5.2687, -33.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.9918, 5.1406, -35.1458], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.9918, 5.1406, -35.1458], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.9553, 5.1406, -34.6509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.9553, 5.1406, -34.6509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.26, 5.2687, -32.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.26, 5.2687, -32.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8628, 5.1406, -33.6273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8628, 5.1406, -33.6273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.3391, 5.2687, -33.055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.3391, 5.2687, -33.055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.9135, 5.1406, -34.1468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.9135, 5.1406, -34.1468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.0683, 4.8811, -35.7799], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.0683, 4.8811, -35.7799], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.0623, 4.8811, -36.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.0623, 4.8811, -36.3304], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4655, 5.0113, -34.7036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4655, 5.0113, -34.7036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.4879, 5.0113, -35.2386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.4879, 5.0113, -35.2386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.0259, 4.8811, -37.389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.0259, 4.8811, -37.389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.5089, 5.0113, -36.2674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.5089, 5.0113, -36.2674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.0469, 4.8811, -36.8646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.0469, 4.8811, -36.8646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.5011, 5.0113, -35.7577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.5011, 5.0113, -35.7577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.543, 4.7502, -38.5106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.543, 4.7502, -38.5106], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5927, 4.7502, -37.9714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5927, 4.7502, -37.9714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.061, 4.6183, -39.6384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.061, 4.6183, -39.6384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.1394, 4.6184, -39.0835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.1394, 4.6184, -39.0835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.671, 4.7502, -36.8562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.671, 4.7502, -36.8562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.2746, 4.6186, -37.9362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.2746, 4.6186, -37.9362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6367, 4.7502, -37.4222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6367, 4.7502, -37.4222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2119, 4.6185, -38.5184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2119, 4.6185, -38.5184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.4905, 4.3507, -40.1365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.4905, 4.3507, -40.1365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.3707, 4.3498, -40.7595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.3707, 4.3498, -40.7595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.8805, 4.4856, -39.0272], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.8805, 4.4856, -39.0272], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.7894, 4.4852, -39.6279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.7894, 4.4852, -39.6279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.1076, 4.3473, -41.9621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.1076, 4.3473, -41.9621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.5819, 4.4844, -40.7848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.5819, 4.4844, -40.7848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2419, 4.3486, -41.3658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2419, 4.3486, -41.3658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6885, 4.4848, -40.2115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6885, 4.4848, -40.2115], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6401, 4.206, -43.1827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6401, 4.206, -43.1827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.8011, 4.2088, -42.557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.8011, 4.2088, -42.557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.1808, 4.0603, -44.4529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.1808, 4.0603, -44.4529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.3686, 4.0652, -43.7922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.3686, 4.0652, -43.7922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.106, 4.2135, -41.2716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.106, 4.2135, -41.2716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.7312, 4.0731, -42.4408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.7312, 4.0731, -42.4408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.9575, 4.2114, -41.922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.9575, 4.2114, -41.922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.5529, 4.0696, -43.1233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.5529, 4.0696, -43.1233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.0374, 3.7801, -44.9183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.0374, 3.7801, -44.9183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.7902, 3.7737, -45.6688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.7902, 3.7737, -45.6688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.3728, 3.9289, -43.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.3728, 3.9289, -43.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.1621, 3.9238, -44.37], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.1621, 3.9238, -44.37], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.29, 3.757, -47.142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.29, 3.757, -47.142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.7304, 3.9105, -45.7726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.7304, 3.9105, -45.7726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.5408, 3.7658, -46.4086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.5408, 3.7658, -46.4086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.9475, 3.9175, -45.0749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.9475, 3.9175, -45.0749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.8605, 3.6001, -48.5609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.8605, 3.6001, -48.5609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.1517, 3.6099, -47.7968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.1517, 3.6099, -47.7968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.462, 3.4444, -49.9679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.462, 3.4444, -49.9679], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.7883, 3.452, -49.2113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.7883, 3.452, -49.2113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.7316, 3.6259, -46.2452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.7316, 3.6259, -46.2452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.4546, 3.4666, -47.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.4546, 3.4666, -47.6303], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.4423, 3.6187, -47.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.4423, 3.6187, -47.0263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.1193, 3.4596, -48.4336], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.1193, 3.4596, -48.4336], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.9542, 3.1385, -50.5085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.9542, 3.1385, -50.5085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.5324, 3.1362, -51.3077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.5324, 3.1362, -51.3077], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1983, 3.3037, -49.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1983, 3.3037, -49.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.8182, 3.2984, -49.8659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.8182, 3.2984, -49.8659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.904, 3.1694, -52.2913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.904, 3.1694, -52.2913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.1347, 3.2988, -51.2401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.1347, 3.2988, -51.2401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.1726, 3.1445, -51.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.1726, 3.1445, -51.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.4635, 3.2965, -50.5918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.4635, 3.2965, -50.5918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.9337, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.9337, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.1577, 6.2258, -27.8033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.1577, 6.2258, -27.8033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.9176, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.9176, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.1004, 6.1135, -29.0187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.1004, 6.1135, -29.0187], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.762, 6.1929, -28.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.762, 6.1929, -28.1003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.5228, 6.1013, -29.0822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.5228, 6.1013, -29.0822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.427, 6.2151, -27.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.427, 6.2151, -27.8912], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.3021, 6.109, -29.0359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.3021, 6.109, -29.0359], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.2211, 5.8833, -31.3932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.2211, 5.8833, -31.3932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.1091, 5.8833, -31.4368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.1091, 5.8833, -31.4368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.3492, 5.9971, -30.1931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.3492, 5.9971, -30.1931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1962, 5.9986, -30.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1962, 5.9986, -30.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.8853, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.8853, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.9014, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.9014, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.9972, 5.8833, -31.4717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.9972, 5.8833, -31.4717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.0469, 5.9995, -30.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.0469, 5.9995, -30.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.8692, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.8692, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.9488, 5.7647, -32.7044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.9488, 5.7647, -32.7044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.853, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.853, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.9003, 5.6437, -33.9372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.9003, 5.6437, -33.9372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.108, 5.7647, -32.623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.108, 5.7647, -32.623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.995, 5.6437, -33.8529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.995, 5.6437, -33.8529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.0284, 5.7647, -32.6683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.0284, 5.7647, -32.6683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.9477, 5.6437, -33.8997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.9477, 5.6437, -33.8997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.7689, 5.3954, -36.3126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.7689, 5.3954, -36.3126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.7862, 5.3954, -36.3626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.7862, 5.3954, -36.3626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.882, 5.5205, -35.0828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.882, 5.5205, -35.0828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.8669, 5.5205, -35.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.8669, 5.5205, -35.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.8207, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.8207, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.8369, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.8369, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.8035, 5.3954, -36.4026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.8035, 5.3954, -36.4026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.8519, 5.5205, -35.1699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.8519, 5.5205, -35.1699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.8046, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.8046, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.755, 5.2687, -37.6353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.755, 5.2687, -37.6353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.7884, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.7884, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.7066, 5.1406, -38.8681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.7066, 5.1406, -38.8681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6559, 5.2687, -37.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6559, 5.2687, -37.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.5429, 5.1406, -38.7724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.5429, 5.1406, -38.7724], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.7055, 5.2687, -37.5941], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.7055, 5.2687, -37.5941], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.6247, 5.1406, -38.8255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.6247, 5.1406, -38.8255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.3168, 4.8811, -41.2321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.3168, 4.8811, -41.2321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.4633, 4.8811, -41.2885], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.4633, 4.8811, -41.2885], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.4299, 5.0113, -40.0023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.4299, 5.0113, -40.0023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.544, 5.0113, -40.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.544, 5.0113, -40.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.7561, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.7561, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.7723, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.7723, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.6097, 4.8811, -41.3335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.6097, 4.8811, -41.3335], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.6581, 5.0113, -40.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.6581, 5.0113, -40.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.74, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.74, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.5613, 4.7502, -42.5662], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.5613, 4.7502, -42.5662], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.7228, 4.6183, -43.8333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.7228, 4.6183, -43.8333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.5117, 4.6182, -43.8061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.5117, 4.6182, -43.8061], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.2038, 4.7502, -42.462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.2038, 4.7502, -42.462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.0895, 4.6181, -43.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.0895, 4.6181, -43.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.3825, 4.7502, -42.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.3825, 4.7502, -42.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.3006, 4.6182, -43.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.3006, 4.6182, -43.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.8473, 4.3444, -46.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.8473, 4.3444, -46.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [7.1238, 4.345, -46.3203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [7.1238, 4.345, -46.3203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.9715, 4.4833, -44.9615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.9715, 4.4833, -44.9615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.2152, 4.4835, -45.0207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.2152, 4.4835, -45.0207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.6771, 4.3464, -46.386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.6771, 4.3464, -46.386], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.7025, 4.4841, -45.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.7025, 4.4841, -45.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.4004, 4.3456, -46.3642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.4004, 4.3456, -46.3642], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.4588, 4.4838, -45.0673], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.4588, 4.4838, -45.0673], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.6445, 4.2042, -47.725], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.6445, 4.2042, -47.725], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.3341, 4.2025, -47.711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.3341, 4.2025, -47.711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.6038, 4.0572, -49.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.6038, 4.0572, -49.116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.2593, 4.0542, -49.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.2593, 4.0542, -49.1134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.7144, 4.1998, -47.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.7144, 4.1998, -47.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.572, 4.0494, -49.039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.572, 4.0494, -49.039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.0242, 4.2011, -47.6729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.0242, 4.2011, -47.6729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.9154, 4.0517, -49.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.9154, 4.0517, -49.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.2612, 3.7349, -52.0424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.2612, 3.7349, -52.0424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6727, 3.7396, -52.0681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6727, 3.7396, -52.0681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.4207, 3.8942, -50.5145], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.4207, 3.8942, -50.5145], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.798, 3.8976, -50.5505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.798, 3.8976, -50.5505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.4991, 3.7511, -52.0474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.4991, 3.7511, -52.0474], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [9.5553, 3.906, -50.5573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [9.5553, 3.906, -50.5573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.0852, 3.7449, -52.0741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.0852, 3.7449, -52.0741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1761, 3.9014, -50.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1761, 3.9014, -50.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.4356, 3.5932, -53.5845], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.4356, 3.5932, -53.5845], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.9868, 3.5853, -53.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.9868, 3.5853, -53.6268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [9.3658, 3.4329, -55.1621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [9.3658, 3.4329, -55.1621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.8857, 3.4237, -55.2165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.8857, 3.4237, -55.2165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.0942, 3.5727, -53.6181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.0942, 3.5727, -53.6181], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.9624, 3.4124, -55.1942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.9624, 3.4124, -55.1942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.5399, 3.5786, -53.6332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.5399, 3.5786, -53.6332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.4182, 3.4171, -55.222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.4182, 3.4171, -55.222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.114, 3.1306, -58.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.114, 3.1306, -58.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3179, 3.1053, -58.3259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3179, 3.1053, -58.3259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.95, 3.2629, -56.6804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.95, 3.2629, -56.6804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.3435, 3.2591, -56.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.3435, 3.2591, -56.79], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.2145, 3.1078, -58.3925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.2145, 3.1078, -58.3925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [9.2915, 3.2708, -56.7686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [9.2915, 3.2708, -56.7686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.7027, 3.0993, -58.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.7027, 3.0993, -58.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [7.7904, 3.2615, -56.825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [7.7904, 3.2615, -56.825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.0948, 6.2284, -27.6675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.0948, 6.2284, -27.6675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.306, 6.2284, -27.7295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.306, 6.2284, -27.7295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.2076, 6.1146, -28.8959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.2076, 6.1146, -28.8959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.3867, 6.1146, -28.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.3867, 6.1146, -28.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7249, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7249, 6.2284, -27.7917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.7411, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.7411, 6.1146, -29.0251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.5159, 6.2284, -27.771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.5159, 6.2284, -27.771], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.5643, 6.1146, -29.0036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.5643, 6.1146, -29.0036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.7734, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.7734, 5.8833, -31.4921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.6612, 5.8833, -31.4688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.6612, 5.8833, -31.4688], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7572, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7572, 5.9997, -30.2586], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.6127, 5.9997, -30.2362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.6127, 5.9997, -30.2362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.4334, 5.8833, -31.3527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.4334, 5.8833, -31.3527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.3205, 5.9997, -30.1243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.3205, 5.9997, -30.1243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.548, 5.8833, -31.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.548, 5.8833, -31.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.4673, 5.9997, -30.1914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.4673, 5.9997, -30.1914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5462, 5.7647, -32.5811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5462, 5.7647, -32.5811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.6287, 5.7647, -32.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.6287, 5.7647, -32.6533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.6591, 5.6437, -33.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.6591, 5.6437, -33.8095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.7094, 5.6437, -33.8842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.7094, 5.6437, -33.8842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.7895, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.7895, 5.7647, -32.7255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8057, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8057, 5.6437, -33.959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [11.7096, 5.7647, -32.7014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [11.7096, 5.7647, -32.7014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.758, 5.6437, -33.9341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.758, 5.6437, -33.9341], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.838, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.838, 5.3954, -36.4259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.8549, 5.3954, -36.3993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.8549, 5.3954, -36.3993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.8218, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.8218, 5.5205, -35.1925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [11.8065, 5.5205, -35.1667], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [11.8065, 5.5205, -35.1667], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.8849, 5.3954, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.8849, 5.3954, -36.2663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.772, 5.5205, -35.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.772, 5.5205, -35.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.8707, 5.3954, -36.3461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.8707, 5.3954, -36.3461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.7901, 5.5205, -35.1151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.7901, 5.5205, -35.1151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.9977, 5.2687, -37.4947], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.9977, 5.2687, -37.4947], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.9514, 5.2687, -37.577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.9514, 5.2687, -37.577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.1106, 5.1406, -38.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.1106, 5.1406, -38.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.0321, 5.1406, -38.8079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.0321, 5.1406, -38.8079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.8541, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.8541, 5.2687, -37.6594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8703, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8703, 5.1406, -38.8929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [11.9033, 5.2687, -37.6319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [11.9033, 5.2687, -37.6319], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [11.9517, 5.1406, -38.8645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [11.9517, 5.1406, -38.8645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9026, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9026, 4.8811, -41.3598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.0486, 4.8811, -41.3298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.0486, 4.8811, -41.3298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.8864, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.8864, 5.0113, -40.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.0002, 5.0113, -40.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.0002, 5.0113, -40.0972], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.3364, 4.8811, -41.1798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.3364, 4.8811, -41.1798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.2235, 5.0113, -39.9514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.2235, 5.0113, -39.9514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.1935, 4.8811, -41.2698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.1935, 4.8811, -41.2698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.1128, 5.0113, -40.0389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.1128, 5.0113, -40.0389], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.4492, 4.7502, -42.4082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.4492, 4.7502, -42.4082], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.2741, 4.7502, -42.5007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.2741, 4.7502, -42.5007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.5616, 4.6186, -43.6401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.5616, 4.6186, -43.6401], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.3541, 4.6185, -43.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.3541, 4.6185, -43.736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9187, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9187, 4.7502, -42.5933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9339, 4.6183, -43.8327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9339, 4.6183, -43.8327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.097, 4.7502, -42.5624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.097, 4.7502, -42.5624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.1447, 4.6184, -43.8002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.1447, 4.6184, -43.8002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.9542, 4.3474, -46.3769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.9542, 4.3474, -46.3769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.231, 4.3485, -46.3327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.231, 4.3485, -46.3327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9464, 4.4844, -45.0899], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9464, 4.4844, -45.0899], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.1899, 4.4848, -45.0535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.1899, 4.4848, -45.0535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.7803, 4.351, -46.1421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.7803, 4.351, -46.1421], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6723, 4.4857, -44.8824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6723, 4.4857, -44.8824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5067, 4.3498, -46.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5067, 4.3498, -46.2542], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.4321, 4.4853, -44.9842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.4321, 4.4853, -44.9842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.8845, 4.2141, -47.426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.8845, 4.2141, -47.426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.5766, 4.2114, -47.5544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.5766, 4.2114, -47.5544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.9842, 4.0746, -48.7403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.9842, 4.0746, -48.7403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.6409, 4.0699, -48.891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.6409, 4.0699, -48.891], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.9555, 4.2063, -47.7054], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.9555, 4.2063, -47.7054], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9494, 4.0609, -49.0814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9494, 4.0609, -49.0814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.2666, 4.2088, -47.6481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.2666, 4.2088, -47.6481], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.2955, 4.0652, -49.0055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.2955, 4.0652, -49.0055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.9152, 3.7587, -51.9749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.9152, 3.7587, -51.9749], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.333, 3.7677, -51.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.333, 3.7677, -51.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.936, 3.9116, -50.5046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.936, 3.9116, -50.5046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [12.3178, 3.9181, -50.4066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [12.3178, 3.9181, -50.4066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.1683, 3.7873, -51.4796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.1683, 3.7873, -51.4796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.0789, 3.9324, -50.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.0789, 3.9324, -50.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.7512, 3.7774, -51.6857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.7512, 3.7774, -51.6857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [13.6992, 3.9252, -50.267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [13.6992, 3.9252, -50.267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.2519, 3.639, -52.9146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.2519, 3.639, -52.9146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.7965, 3.6265, -53.1504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.7965, 3.6265, -53.1504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3303, 3.488, -54.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3303, 3.488, -54.3914], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.8357, 3.4729, -54.6567], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.8357, 3.4729, -54.6567], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.8872, 3.6029, -53.4919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.8872, 3.6029, -53.4919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8527, 3.4445, -55.0497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8527, 3.4445, -55.0497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3412, 3.6142, -53.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3412, 3.6142, -53.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.343, 3.4581, -54.8787], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.343, 3.4581, -54.8787], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.772, 3.1231, -58.2414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.772, 3.1231, -58.2414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3348, 3.1411, -58.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3348, 3.1411, -58.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.8138, 3.2843, -56.6368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.8138, 3.2843, -56.6368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3402, 3.3002, -56.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3402, 3.3002, -56.4419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4774, 3.1809, -57.4226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4774, 3.1809, -57.4226], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.405, 3.335, -55.898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.405, 3.335, -55.898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.9031, 3.1607, -57.7466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.9031, 3.1607, -57.7466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [13.8707, 3.3174, -56.1928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [13.8707, 3.3174, -56.1928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.2255, 6.2284, -27.2135], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.2255, 6.2284, -27.2135], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4475, 6.2284, -27.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4475, 6.2284, -27.3577], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.4661, 6.1146, -28.4234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.4661, 6.1146, -28.4234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.6564, 6.1146, -28.5735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.6564, 6.1146, -28.5735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [13.8816, 6.2284, -27.5848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [13.8816, 6.2284, -27.5848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.0266, 6.1146, -28.8098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.0266, 6.1146, -28.8098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.666, 6.2284, -27.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.666, 6.2284, -27.4815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.8431, 6.1146, -28.7023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.8431, 6.1146, -28.7023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.3166, 5.8833, -31.2598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.3166, 5.8833, -31.2598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.1971, 5.8833, -31.1439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.1971, 5.8833, -31.1439], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.1716, 5.9997, -30.0348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.1716, 5.9997, -30.0348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.0201, 5.9997, -29.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.0201, 5.9997, -29.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.9474, 5.8833, -30.8432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.9474, 5.8833, -30.8432], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.7068, 5.9997, -29.6333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.7068, 5.9997, -29.6333], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0742, 5.8833, -31.005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0742, 5.8833, -31.005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.8653, 5.9997, -29.7892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.8653, 5.9997, -29.7892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.1881, 5.7647, -32.053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.1881, 5.7647, -32.053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.2831, 5.7647, -32.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.2831, 5.7647, -32.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.4288, 5.6437, -33.2629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.4288, 5.6437, -33.2629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.492, 5.6437, -33.4365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.492, 5.6437, -33.4365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.4616, 5.7647, -32.4849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.4616, 5.7647, -32.4849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6066, 5.6437, -33.7099], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6066, 5.6437, -33.7099], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3741, 5.7647, -32.3647], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3741, 5.7647, -32.3647], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.5511, 5.6437, -33.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.5511, 5.6437, -33.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.8966, 5.3954, -36.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.8966, 5.3954, -36.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.9051, 5.3954, -36.0271], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.9051, 5.3954, -36.0271], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.7516, 5.5205, -34.9349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.7516, 5.5205, -34.9349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.7281, 5.5205, -34.8063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.7281, 5.5205, -34.8063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.9101, 5.3954, -35.6826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.9101, 5.3954, -35.6826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.6694, 5.5205, -34.4728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.6694, 5.5205, -34.4728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.9098, 5.3954, -35.868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.9098, 5.3954, -35.868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.7009, 5.5205, -34.6522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.7009, 5.5205, -34.6522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.1507, 5.2687, -36.8925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.1507, 5.2687, -36.8925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.1187, 5.2687, -37.0838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.1187, 5.2687, -37.0838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3914, 5.1406, -38.1024], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3914, 5.1406, -38.1024], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.3277, 5.1406, -38.2995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.3277, 5.1406, -38.2995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [15.0415, 5.2687, -37.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [15.0415, 5.2687, -37.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.1865, 5.1406, -38.61], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.1865, 5.1406, -38.61], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0821, 5.2687, -37.2479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0821, 5.2687, -37.2479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.2591, 5.1406, -38.4687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.2591, 5.1406, -38.4687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.4765, 4.8811, -41.06], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.4765, 4.8811, -41.06], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.6131, 4.8811, -40.9104], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.6131, 4.8811, -40.9104], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.3315, 5.0113, -39.835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.3315, 5.0113, -39.835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.4361, 5.0113, -39.6896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.4361, 5.0113, -39.6896], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.8727, 4.8811, -40.5221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.8727, 4.8811, -40.5221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.632, 5.0113, -39.3122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.632, 5.0113, -39.3122], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.7455, 4.8811, -40.731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.7455, 4.8811, -40.731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.5366, 5.0113, -39.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.5366, 5.0113, -39.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.1134, 4.7502, -41.732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.1134, 4.7502, -41.732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.9544, 4.7502, -41.9468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.9544, 4.7502, -41.9468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.3539, 4.6189, -42.9425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.3539, 4.6189, -42.9425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.1631, 4.6188, -43.1637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.1631, 4.6188, -43.1637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.6215, 4.7502, -42.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.6215, 4.7502, -42.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [15.7661, 4.6187, -43.5127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [15.7661, 4.6187, -43.5127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7902, 4.7502, -42.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7902, 4.7502, -42.1312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.9669, 4.6188, -43.3538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.9669, 4.6188, -43.3538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.0507, 4.3522, -45.9971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.0507, 4.3522, -45.9971], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.3171, 4.3533, -45.8199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.3171, 4.3533, -45.8199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [15.9094, 4.4861, -44.7483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [15.9094, 4.4861, -44.7483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.1427, 4.4865, -44.5822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.1427, 4.4865, -44.5822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.8338, 4.3551, -45.3711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.8338, 4.3551, -45.3711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.5941, 4.4871, -44.1551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.5941, 4.4871, -44.1551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.5784, 4.3543, -45.611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.5784, 4.3543, -45.611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3712, 4.4869, -44.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3712, 4.4869, -44.3843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.0728, 4.2227, -46.5919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.0728, 4.2227, -46.5919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.7843, 4.2211, -46.8462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.7843, 4.2211, -46.8462], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.3117, 4.0898, -47.8231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.3117, 4.0898, -47.8231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.9891, 4.087, -48.0956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.9891, 4.087, -48.0956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.1891, 4.2167, -47.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.1891, 4.2167, -47.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.3241, 4.0792, -48.5561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.3241, 4.0792, -48.5561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.4894, 4.2191, -47.0707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.4894, 4.2191, -47.0707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.6595, 4.0834, -48.3405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.6595, 4.0834, -48.3405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.5829, 3.7968, -51.2392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.5829, 3.7968, -51.2392], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.9935, 3.8056, -50.9693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.9935, 3.8056, -50.9693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.4554, 3.9394, -49.8788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.4554, 3.9394, -49.8788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.8274, 3.9457, -49.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.8274, 3.9457, -49.6374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.7954, 3.8193, -50.3555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.7954, 3.8193, -50.3555], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.552, 3.9556, -49.0744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.552, 3.9556, -49.0744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.3982, 3.8132, -50.6735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.3982, 3.8132, -50.6735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.1934, 3.9512, -49.3683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.1934, 3.9512, -49.3683], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.0433, 3.68, -51.6763], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.0433, 3.68, -51.6763], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.6041, 3.6721, -52.02], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.6041, 3.6721, -52.02], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.2959, 3.5379, -53.0361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.2959, 3.5379, -53.0361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.8114, 3.5282, -53.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.8114, 3.5282, -53.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7062, 3.6512, -52.644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7062, 3.6512, -52.644], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.8258, 3.5027, -54.0903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.8258, 3.5027, -54.0903], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.1577, 3.6624, -52.3442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.1577, 3.6624, -52.3442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3205, 3.5163, -53.7602], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3205, 3.5163, -53.7602], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.0581, 3.2006, -57.0603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.0581, 3.2006, -57.0603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.6432, 3.2189, -56.6687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.6432, 3.2189, -56.6687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.9427, 3.3523, -55.5664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.9427, 3.3523, -55.5664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.4821, 3.3682, -55.2056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.4821, 3.3682, -55.2056], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.8097, 3.2485, -55.8279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.8097, 3.2485, -55.8279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.5518, 3.3938, -54.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.5518, 3.3938, -54.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.2285, 3.2351, -56.2553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.2285, 3.2351, -56.2553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.0197, 3.3823, -54.8225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.0197, 3.3823, -54.8225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1879, 6.1929, -26.8994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1879, 6.1929, -26.8994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.4939, 6.2151, -26.8331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.4939, 6.2151, -26.8331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.626, 6.1013, -27.8101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.626, 6.1013, -27.8101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.854, 6.109, -27.9268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.854, 6.109, -27.9268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.9994, 6.2284, -27.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.9994, 6.2284, -27.049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [17.2716, 6.1146, -28.2522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [17.2716, 6.1146, -28.2522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.7609, 6.2258, -26.8991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.7609, 6.2258, -26.8991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.0696, 6.1135, -28.076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.0696, 6.1135, -28.076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.8161, 5.8833, -30.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.8161, 5.8833, -30.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.6806, 5.8833, -30.4539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.6806, 5.8833, -30.4539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.5439, 5.9997, -29.4554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.5439, 5.9997, -29.4554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.3762, 5.9995, -29.2609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.3762, 5.9995, -29.2609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.4016, 5.8833, -30.0078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.4016, 5.8833, -30.0078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [20.0267, 5.9971, -28.8606], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [20.0267, 5.9971, -28.8606], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.542, 5.8833, -30.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.542, 5.8833, -30.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.2034, 5.9986, -29.0608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.2034, 5.9986, -29.0608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.7678, 5.7647, -31.1873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.7678, 5.7647, -31.1873], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.877, 5.7647, -31.4229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.877, 5.7647, -31.4229], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.1341, 5.6437, -32.3668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.1341, 5.6437, -32.3668], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.212, 5.6437, -32.6107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.212, 5.6437, -32.6107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.0884, 5.7647, -31.8617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.0884, 5.7647, -31.8617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3606, 5.6437, -33.0648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3606, 5.6437, -33.0648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.9842, 5.7647, -31.6497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.9842, 5.7647, -31.6497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.2879, 5.6437, -32.8454], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.2879, 5.6437, -32.8454], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.9051, 5.3954, -35.4711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.9051, 5.3954, -35.4711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.8953, 5.3954, -35.2368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.8953, 5.3954, -35.2368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.6329, 5.5205, -34.268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.6329, 5.5205, -34.268], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.5916, 5.5205, -34.0411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.5916, 5.5205, -34.0411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.8666, 5.3954, -34.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.8666, 5.3954, -34.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.5004, 5.5205, -33.5463], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.5004, 5.5205, -33.5463], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.882, 5.3954, -34.9862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.882, 5.3954, -34.9862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.547, 5.5205, -33.7984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.547, 5.5205, -33.7984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.2329, 5.2687, -35.9053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.2329, 5.2687, -35.9053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.217, 5.2687, -36.174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.217, 5.2687, -36.174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.5992, 5.1406, -37.0848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.5992, 5.1406, -37.0848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.552, 5.1406, -37.3617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.552, 5.1406, -37.3617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1773, 5.2687, -36.6743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1773, 5.2687, -36.6743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [19.4496, 5.1406, -37.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [19.4496, 5.1406, -37.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.199, 5.2687, -36.4325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.199, 5.2687, -36.4325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.5026, 5.1406, -37.6282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.5026, 5.1406, -37.6282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.9941, 4.8811, -40.2837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.9941, 4.8811, -40.2837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.11, 4.8811, -40.0197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.11, 4.8811, -40.0197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.7218, 5.0113, -39.0806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.7218, 5.0113, -39.0806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.8063, 5.0113, -38.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.8063, 5.0113, -38.824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.3317, 4.8811, -39.4438], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.3317, 4.8811, -39.4438], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.9654, 5.0113, -38.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.9654, 5.0113, -38.2643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.222, 4.8811, -39.7372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.222, 4.8811, -39.7372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.887, 5.0113, -38.5495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.887, 5.0113, -38.5495], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.6979, 4.7502, -40.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.6979, 4.7502, -40.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.557, 4.7502, -40.925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.557, 4.7502, -40.925], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.0642, 4.619, -41.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.0642, 4.619, -41.8028], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [22.892, 4.619, -42.1128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [22.892, 4.619, -42.1128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.2663, 4.7502, -41.4869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.2663, 4.7502, -41.4869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.5385, 4.6189, -42.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.5385, 4.6189, -42.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.4137, 4.7502, -41.2154], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.4137, 4.7502, -41.2154], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.7173, 4.619, -42.4112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.7173, 4.619, -42.4112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.0824, 4.3556, -45.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.0824, 4.3556, -45.1008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.3245, 4.3559, -44.8041], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.3245, 4.3559, -44.8041], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.8106, 4.4873, -43.8948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.8106, 4.4873, -43.8948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.021, 4.4874, -43.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.021, 4.4874, -43.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.7967, 4.356, -44.1618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.7967, 4.356, -44.1618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.4305, 4.4875, -42.9823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.4305, 4.4875, -42.9823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.562, 4.356, -44.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.562, 4.356, -44.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.227, 4.4875, -43.3006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.227, 4.4875, -43.3006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.163, 4.2248, -45.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.163, 4.2248, -45.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.8969, 4.2248, -45.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.8969, 4.2248, -45.6767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.5322, 4.0936, -46.5251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.5322, 4.0936, -46.5251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.2342, 4.0934, -46.8697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.2342, 4.0934, -46.8697], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.3538, 4.2239, -46.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.3538, 4.2239, -46.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.6261, 4.0918, -47.5249], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.6261, 4.0918, -47.5249], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.6279, 4.2245, -46.0017], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.6279, 4.2245, -46.0017], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.9329, 4.0929, -47.205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.9329, 4.0929, -47.205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.1832, 3.8235, -50.0192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.1832, 3.8235, -50.0192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.562, 3.826, -49.6685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.562, 3.826, -49.6685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.9017, 3.9587, -48.7583], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.9017, 3.9587, -48.7583], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [23.2431, 3.9604, -48.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [23.2431, 3.9604, -48.424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.303, 3.8278, -48.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.303, 3.8278, -48.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.9102, 3.9615, -47.7219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.9102, 3.9615, -47.7219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.9344, 3.8273, -49.3075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.9344, 3.8273, -49.3075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.5785, 3.9612, -48.0769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.5785, 3.9612, -48.0769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [26.7164, 3.6916, -50.1892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [26.7164, 3.6916, -50.1892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.3068, 3.6908, -50.5711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.3068, 3.6908, -50.5711], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.102, 3.5562, -51.4482], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.102, 3.5562, -51.4482], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [25.6753, 3.553, -51.859], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [25.6753, 3.553, -51.859], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [22.4729, 3.6856, -51.3177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [22.4729, 3.6856, -51.3177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.771, 3.5449, -52.6535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.771, 3.5449, -52.6535], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.8932, 3.689, -50.9483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.8932, 3.689, -50.9483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.2326, 3.5495, -52.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.2326, 3.5495, -52.2616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.3826, 3.2583, -55.3943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.3826, 3.2583, -55.3943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.8979, 3.2679, -54.9383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.8979, 3.2679, -54.9383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.075, 3.4022, -54.0159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.075, 3.4022, -54.0159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [24.5686, 3.4089, -53.5949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [24.5686, 3.4089, -53.5949], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [27.4118, 3.3146, -53.8143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [27.4118, 3.3146, -53.8143], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [27.3572, 3.4289, -52.6684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [27.3572, 3.4289, -52.6684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.2616, 3.2849, -54.4204], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.2616, 3.2849, -54.4204], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.9952, 3.4175, -53.1453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.9952, 3.4175, -53.1453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champ1", - "type": "Object3D", - "position": [14.4035, 16.0553, -33.523], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [40.8412, 1.9388, -65.5569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [40.8412, 1.9388, -65.5569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.0336, 1.9401, -66.2608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.0336, 1.9401, -66.2608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [41.6682, 1.8031, -67.2069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [41.6682, 1.8031, -67.2069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.8586, 1.8018, -67.953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.8586, 1.8018, -67.953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [35.3363, 1.9376, -67.686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [35.3363, 1.9376, -67.686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.0976, 1.797, -69.4428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.0976, 1.797, -69.4428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [37.2037, 1.94, -66.9695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [37.2037, 1.94, -66.9695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.0073, 1.8001, -68.6975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.0073, 1.8001, -68.6975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [37.6607, 1.5216, -73.0074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [37.6607, 1.5216, -73.0074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.6064, 1.5278, -72.1916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.6064, 1.5278, -72.1916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [36.8745, 1.6587, -71.2192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [36.8745, 1.6587, -71.2192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.8104, 1.663, -70.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.8104, 1.663, -70.4409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [42.6674, 1.5689, -70.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [42.6674, 1.5689, -70.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [42.3093, 1.6786, -68.8166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [42.3093, 1.6786, -68.8166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [41.2987, 1.542, -71.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [41.2987, 1.542, -71.3151], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [40.6159, 1.6693, -69.6406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [40.6159, 1.6693, -69.6406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [37.2328, 2.4725, -59.8074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [37.2328, 2.4725, -59.8074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [35.7397, 2.5055, -59.9705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [35.7397, 2.5055, -59.9705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [38.2046, 2.3531, -60.969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [38.2046, 2.3531, -60.969], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.5719, 2.3671, -61.4329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.5719, 2.3671, -61.4329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.4836, 2.5263, -60.9031], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.4836, 2.5263, -60.9031], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [33.1766, 2.3763, -62.5732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [33.1766, 2.3763, -62.5732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [34.1517, 2.5224, -60.3559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [34.1517, 2.5224, -60.3559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.8995, 2.3753, -61.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.8995, 2.3753, -61.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.5967, 2.0811, -65.9568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.5967, 2.0811, -65.9568], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [36.4174, 2.083, -65.2686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [36.4174, 2.083, -65.2686], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [33.8789, 2.2276, -64.2552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [33.8789, 2.2276, -64.2552], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [35.6526, 2.2285, -63.6008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [35.6526, 2.2285, -63.6008], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [39.971, 2.0801, -63.9171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [39.971, 2.0801, -63.9171], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [39.1068, 2.2206, -62.3579], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [39.1068, 2.2206, -62.3579], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [38.2043, 2.0823, -64.59], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [38.2043, 2.0823, -64.59], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [37.3912, 2.2258, -62.9698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [37.3912, 2.2258, -62.9698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [33.4166, 1.9319, -68.4137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [33.4166, 1.9319, -68.4137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [31.4402, 1.9226, -69.1505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [31.4402, 1.9226, -69.1505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [34.1244, 1.7914, -70.1948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [34.1244, 1.7914, -70.1948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [32.0884, 1.7825, -70.9537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [32.0884, 1.7825, -70.9537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.3419, 1.894, -70.6236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.3419, 1.894, -70.6236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [27.8562, 1.7549, -72.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [27.8562, 1.7549, -72.4709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [29.4132, 1.9099, -69.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [29.4132, 1.9099, -69.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.9967, 1.7703, -71.7142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.9967, 1.7703, -71.7142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [28.9072, 1.4839, -76.2036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [28.9072, 1.4839, -76.2036], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [31.1916, 1.4978, -75.405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [31.1916, 1.4978, -75.405], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [28.3791, 1.6185, -74.3329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [28.3791, 1.6185, -74.3329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [30.591, 1.6332, -73.5548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [30.591, 1.6332, -73.5548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [35.5772, 1.5164, -73.8051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [35.5772, 1.5164, -73.8051], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [34.8465, 1.6532, -71.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [34.8465, 1.6532, -71.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [33.4179, 1.5086, -74.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [33.4179, 1.5086, -74.6049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.7494, 1.6448, -72.7741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.7494, 1.6448, -72.7741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.7624, 2.5226, -61.5189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.7624, 2.5226, -61.5189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.0038, 2.5141, -62.1508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.0038, 2.5141, -62.1508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [31.4074, 2.3719, -63.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [31.4074, 2.3719, -63.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [29.5965, 2.363, -63.8784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [29.5965, 2.363, -63.8784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [25.3902, 2.486, -63.4147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [25.3902, 2.486, -63.4147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.867, 2.3343, -65.198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.867, 2.3343, -65.198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [27.2117, 2.5016, -62.7867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [27.2117, 2.5016, -62.7867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [27.7482, 2.3502, -64.5418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [27.7482, 2.3502, -64.5418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.8394, 2.0372, -68.7966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.8394, 2.0372, -68.7966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [28.8446, 2.0533, -68.0868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [28.8446, 2.0533, -68.0868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.349, 2.1843, -66.99], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.349, 2.1843, -66.99], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [28.2911, 2.2005, -66.3064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [28.2911, 2.2005, -66.3064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [32.7288, 2.0756, -66.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [32.7288, 2.0756, -66.6585], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [32.0609, 2.2226, -64.9293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [32.0609, 2.2226, -64.9293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.8096, 2.0663, -67.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.8096, 2.0663, -67.3713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [30.1967, 2.2134, -65.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [30.1967, 2.2134, -65.6162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.2323, 1.8751, -71.3459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.2323, 1.8751, -71.3459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.0933, 1.8534, -72.0498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.0933, 1.8534, -72.0498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [25.6739, 1.7363, -73.2185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [25.6739, 1.7363, -73.2185], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.4596, 1.7148, -73.951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.4596, 1.7148, -73.951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.772, 1.8035, -73.3772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.772, 1.8035, -73.3772], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [18.9856, 1.6644, -75.3448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [18.9856, 1.6644, -75.3448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.9361, 1.8294, -72.729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.9361, 1.8294, -72.729], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.2259, 1.6907, -74.6619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.2259, 1.6907, -74.6619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [19.4128, 1.3952, -79.3142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [19.4128, 1.3952, -79.3142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [21.8102, 1.4218, -78.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [21.8102, 1.4218, -78.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.1992, 1.5288, -77.3255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.1992, 1.5288, -77.3255], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [21.5175, 1.5552, -76.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [21.5175, 1.5552, -76.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [26.5733, 1.4665, -76.9988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [26.5733, 1.4665, -76.9988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [26.1217, 1.6005, -75.1046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [26.1217, 1.6005, -75.1046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [24.2023, 1.4457, -77.7866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [24.2023, 1.4457, -77.7866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.8298, 1.5793, -75.865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.8298, 1.5793, -75.865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [23.5431, 2.4679, -64.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [23.5431, 2.4679, -64.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [21.6767, 2.4478, -64.6035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [21.6767, 2.4478, -64.6035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [23.9573, 2.3157, -65.836], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [23.9573, 2.3157, -65.836], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.0258, 2.295, -66.4485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.0258, 2.295, -66.4485], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [17.9189, 2.4025, -65.6702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [17.9189, 2.4025, -65.6702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.1321, 2.2483, -67.5798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.1321, 2.2483, -67.5798], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [19.7992, 2.4259, -65.1537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [19.7992, 2.4259, -65.1537], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.0811, 2.2725, -67.0311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.0811, 2.2725, -67.0311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [18.5586, 1.9474, -71.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [18.5586, 1.9474, -71.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [20.6489, 1.9729, -70.8138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [20.6489, 1.9729, -70.8138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [18.3453, 2.0961, -69.4973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [18.3453, 2.0961, -69.4973], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [20.3641, 2.121, -68.9161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [20.3641, 2.121, -68.9161], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [24.7994, 2.0181, -69.4922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [24.7994, 2.0181, -69.4922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [24.3753, 2.1654, -67.6574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [24.3753, 2.1654, -67.6574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [22.7325, 1.9966, -70.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [22.7325, 1.9966, -70.1665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [22.3772, 2.1442, -68.3011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [22.3772, 2.1442, -68.3011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.6123, 1.776, -73.988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.6123, 1.776, -73.988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.4691, 1.7476, -74.5521], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.4691, 1.7476, -74.5521], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.7512, 1.6364, -75.993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.7512, 1.6364, -75.993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.5398, 1.6072, -76.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.5398, 1.6072, -76.6001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.2841, 1.6927, -75.4904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.2841, 1.6927, -75.4904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.2568, 1.5492, -77.6479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.2568, 1.5492, -77.6479], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3554, 1.7195, -75.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3554, 1.7195, -75.057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.3728, 1.5776, -77.159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.3728, 1.5776, -77.159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.6463, 1.2518, -82.4808], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.6463, 1.2518, -82.4808], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.5686, 1.2955, -81.5838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.5686, 1.2955, -81.5838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.3379, 1.4046, -79.9409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.3379, 1.4046, -79.9409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.4436, 1.4367, -79.3372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.4436, 1.4367, -79.3372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [17.0262, 1.3662, -80.0414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [17.0262, 1.3662, -80.0414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [16.889, 1.5002, -78.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [16.889, 1.5002, -78.0128], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.7102, 1.3338, -80.7743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.7102, 1.3338, -80.7743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.6199, 1.4697, -78.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.6199, 1.4697, -78.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.044, 2.3778, -66.1502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.044, 2.3778, -66.1502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.1815, 2.3524, -66.5868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.1815, 2.3524, -66.5868], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.1874, 2.2228, -68.0905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.1874, 2.2228, -68.0905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [14.2554, 2.1966, -68.5559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [14.2554, 2.1966, -68.5559], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.5168, 2.3035, -67.2892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.5168, 2.3035, -67.2892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [10.4611, 2.1463, -69.3103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [10.4611, 2.1463, -69.3103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3372, 2.3272, -66.9699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3372, 2.3272, -66.9699], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [12.344, 2.1708, -68.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [12.344, 2.1708, -68.966], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [10.3455, 1.8395, -73.402], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [10.3455, 1.8395, -73.402], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3539, 1.8656, -73.0016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3539, 1.8656, -73.0016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [10.4043, 1.9912, -71.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [10.4043, 1.9912, -71.345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [12.3499, 2.0164, -70.9739], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [12.3499, 2.0164, -70.9739], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [16.472, 1.9205, -72.0035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [16.472, 1.9205, -72.0035], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [16.3302, 2.0699, -70.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [16.3302, 2.0699, -70.0397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [14.3999, 1.8929, -72.5318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [14.3999, 1.8929, -72.5318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [14.3285, 2.043, -70.5353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [14.3285, 2.043, -70.5353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.6197, 0.32, -118.856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.6197, 0.32, -118.856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.8613, 0.32, -119.7351], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.8613, 0.32, -119.7351], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.5486, 0.32, -120.0033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.5486, 0.32, -120.0033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.794, 0.32, -120.9059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.794, 0.32, -120.9059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.5891, 0.32, -121.0369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.5891, 0.32, -121.0369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.6984, 0.32, -122.2427], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.6984, 0.32, -122.2427], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.121, 0.32, -120.4898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.121, 0.32, -120.4898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.0409, 0.32, -121.6806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.0409, 0.32, -121.6806], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9171, 0.32, -124.654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9171, 0.32, -124.654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-0.1704, 0.32, -124.0592], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-0.1704, 0.32, -124.0592], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.8078, 0.32, -123.4484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.8078, 0.32, -123.4484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-0.0563, 0.32, -122.8704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-0.0563, 0.32, -122.8704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.7028, 0.32, -122.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.7028, 0.32, -122.2631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.2732, 0.32, -121.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.2732, 0.32, -121.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.4041, 0.32, -123.2343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.4041, 0.32, -123.2343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [2.6416, 0.32, -122.0722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [2.6416, 0.32, -122.0722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.6506, 0.3207, -114.1322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.6506, 0.3207, -114.1322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.0354, 0.3205, -114.928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.0354, 0.3205, -114.928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6356, 0.3203, -115.3594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6356, 0.3203, -115.3594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.9848, 0.3202, -116.1753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.9848, 0.3202, -116.1753], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.1339, 0.3202, -116.0998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.1339, 0.3202, -116.0998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.2546, 0.3201, -117.3784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.2546, 0.3201, -117.3784], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.4369, 0.3203, -115.6093], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.4369, 0.3203, -115.6093], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.3509, 0.3201, -116.8743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.3509, 0.3201, -116.8743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.4797, 0.32, -119.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.4797, 0.32, -119.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.1955, 0.32, -119.2984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.1955, 0.32, -119.2984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.3691, 0.32, -118.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.3691, 0.32, -118.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.2713, 0.32, -118.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.2713, 0.32, -118.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6227, 0.32, -117.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6227, 0.32, -117.7049], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.6272, 0.3201, -116.5448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.6272, 0.3201, -116.5448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.9002, 0.32, -118.5626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.9002, 0.32, -118.5626], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [2.9406, 0.32, -117.3814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [2.9406, 0.32, -117.3814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.8183, 0.343, -108.5311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.8183, 0.343, -108.5311], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.3458, 0.3397, -109.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.3458, 0.3397, -109.247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.7571, 0.3303, -110.0548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.7571, 0.3303, -110.0548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.2487, 0.3286, -110.7923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.2487, 0.3286, -110.7923], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.5434, 0.3341, -110.2945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.5434, 0.3341, -110.2945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.711, 0.3256, -111.8736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.711, 0.3256, -111.8736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.8886, 0.3366, -109.8581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.8886, 0.3366, -109.8581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.7559, 0.3269, -111.4224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.7559, 0.3269, -111.4224], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.0044, 0.3204, -114.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.0044, 0.3204, -114.7648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.5317, 0.3207, -114.2874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.5317, 0.3207, -114.2874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.864, 0.3216, -113.3599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.864, 0.3216, -113.3599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.6375, 0.3223, -112.8953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.6375, 0.3223, -112.8953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.6746, 0.3216, -112.8468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.6746, 0.3216, -112.8468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.7096, 0.324, -111.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.7096, 0.324, -111.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.095, 0.3211, -113.6231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.095, 0.3211, -113.6231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.1656, 0.3231, -112.2478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.1656, 0.3231, -112.2478], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.2218, 0.4826, -101.5142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.2218, 0.4826, -101.5142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.894, 0.4668, -102.1111], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.894, 0.4668, -102.1111], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.0957, 0.4349, -103.3921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.0957, 0.4349, -103.3921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.7325, 0.4223, -104.0244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.7325, 0.4223, -104.0244], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.712, 0.4407, -102.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.712, 0.4407, -102.9702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-0.943, 0.4015, -104.9398], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-0.943, 0.4015, -104.9398], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [1.5797, 0.4525, -102.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [1.5797, 0.4525, -102.6168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.3832, 0.4109, -104.5614], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.3832, 0.4109, -104.5614], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.3597, 0.3489, -108.6114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.3597, 0.3489, -108.6114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.0371, 0.3532, -108.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.0371, 0.3532, -108.1917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.1592, 0.3711, -106.8233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.1592, 0.3711, -106.8233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.2021, 0.3779, -106.423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.2021, 0.3779, -106.423], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.8945, 0.3644, -106.9107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.8945, 0.3644, -106.9107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.9868, 0.3953, -105.1944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.9868, 0.3953, -105.1944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.4584, 0.3585, -107.6022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.4584, 0.3585, -107.6022], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.5873, 0.3862, -105.858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.5873, 0.3862, -105.858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.8748, 0.7465, -93.4232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.8748, 0.7465, -93.4232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.6773, 0.7259, -93.8475], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.6773, 0.7259, -93.8475], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.6966, 0.6692, -95.5183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.6966, 0.6692, -95.5183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.4672, 0.6488, -95.9881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.4672, 0.6488, -95.9881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [0.3309, 0.692, -94.4299], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [0.3309, 0.692, -94.4299], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.057, 0.6153, -96.6436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.057, 0.6153, -96.6436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.493, 0.7073, -94.1993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.493, 0.7073, -94.1993], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.251, 0.6304, -96.3805], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.251, 0.6304, -96.3805], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.4671, 0.4893, -100.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.4671, 0.4893, -100.9243], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.7912, 0.5029, -100.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.7912, 0.5029, -100.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-0.2099, 0.5476, -98.8119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-0.2099, 0.5476, -98.8119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [2.016, 0.5622, -98.5168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [2.016, 0.5622, -98.5168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3657, 0.5376, -99.5705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3657, 0.5376, -99.5705], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.5254, 0.5996, -97.5696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.5254, 0.5996, -97.5696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.0718, 0.5193, -100.1281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.0718, 0.5193, -100.1281], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [4.2641, 0.58, -98.0844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [4.2641, 0.58, -98.0844], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.2558, 1.1086, -85.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.2558, 1.1086, -85.1918], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.7121, 1.1109, -85.112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.7121, 1.1109, -85.112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.677, 1.0161, -87.1221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.677, 1.0161, -87.1221], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [5.4094, 1.0038, -87.2957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [5.4094, 1.0038, -87.2957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.9609, 1.1097, -84.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.9609, 1.1097, -84.7442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.0016, 0.9828, -87.4159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.0016, 0.9828, -87.4159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.3501, 1.1073, -85.0436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.3501, 1.1073, -85.0436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.1701, 0.9929, -87.3933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.1701, 0.9929, -87.3933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [0.6095, 0.7776, -92.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [0.6095, 0.7776, -92.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.7391, 0.7929, -91.9826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.7391, 0.7929, -91.9826], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [0.8564, 0.8735, -89.8674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [0.8564, 0.8735, -89.8674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.9739, 0.8877, -89.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.9739, 0.8877, -89.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.0556, 0.832, -91.2911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.0556, 0.832, -91.2911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [7.2885, 0.9234, -89.1646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [7.2885, 0.9234, -89.1646], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.8907, 0.8114, -91.6708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.8907, 0.8114, -91.6708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.1231, 0.9046, -89.4769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.1231, 0.9046, -89.4769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.2683, 1.6682, -75.8397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.2683, 1.6682, -75.8397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.3066, 1.6462, -76.11], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.3066, 1.6462, -76.11], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.1836, 1.5242, -78.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.1836, 1.5242, -78.0298], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [6.1487, 1.503, -78.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [6.1487, 1.503, -78.3044], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.4838, 1.6069, -76.5039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.4838, 1.6069, -76.5039], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.181, 1.466, -78.6712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.181, 1.466, -78.6712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [4.3836, 1.626, -76.3239], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [4.3836, 1.626, -76.3239], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.1511, 1.484, -78.5078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.1511, 1.484, -78.5078], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [1.1957, 1.2291, -82.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [1.1957, 1.2291, -82.4886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.5858, 1.2267, -82.796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.5858, 1.2267, -82.796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [1.7594, 1.3392, -80.6842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [1.7594, 1.3392, -80.6842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.8771, 1.3511, -80.6551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.8771, 1.3511, -80.6551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.4213, 1.2311, -82.9085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.4213, 1.2311, -82.9085], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.2065, 1.38, -80.3581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.2065, 1.38, -80.3581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.9209, 1.231, -82.8651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.9209, 1.231, -82.8651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.0322, 1.3638, -80.5674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.0322, 1.3638, -80.5674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.7263, 2.2821, -67.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.7263, 2.2821, -67.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [6.998, 2.2598, -67.7581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [6.998, 2.2598, -67.7581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [8.6145, 2.1241, -69.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [8.6145, 2.1241, -69.5789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.8173, 2.103, -69.7965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.8173, 2.103, -69.7965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [3.9427, 2.1844, -68.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [3.9427, 2.1844, -68.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [3.4146, 2.0524, -70.279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [3.4146, 2.0524, -70.279], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [5.3912, 2.229, -68.0754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [5.3912, 2.229, -68.0754], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [5.0873, 2.0793, -70.0232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [5.0873, 2.0793, -70.0232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [2.7429, 1.7565, -74.3146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [2.7429, 1.7565, -74.3146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [4.5989, 1.775, -74.1565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [4.5989, 1.775, -74.1565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [3.0302, 1.9078, -72.2116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [3.0302, 1.9078, -72.2116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [4.8236, 1.9275, -72.0466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [4.8236, 1.9275, -72.0466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [8.3864, 1.8158, -73.7217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [8.3864, 1.8158, -73.7217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [8.5015, 1.9682, -71.6381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [8.5015, 1.9682, -71.6381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.4754, 1.7945, -73.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.4754, 1.7945, -73.9661], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [6.6434, 1.9474, -71.8624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [6.6434, 1.9474, -71.8624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.2569, 0.32, -121.2936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.2569, 0.32, -121.2936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.8807, 0.32, -121.2515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.8807, 0.32, -121.2515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.4002, 0.32, -122.5081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.4002, 0.32, -122.5081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.0571, 0.32, -122.4685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.0571, 0.32, -122.4685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.0302, 0.32, -120.5362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.0302, 0.32, -120.5362], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.2709, 0.32, -121.7461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.2709, 0.32, -121.7461], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.4689, 0.32, -120.9769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.4689, 0.32, -120.9769], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6777, 0.32, -122.1919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6777, 0.32, -122.1919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.7522, 0.32, -124.1659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.7522, 0.32, -124.1659], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.0953, 0.32, -124.6219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.0953, 0.32, -124.6219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.5115, 0.32, -122.956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.5115, 0.32, -122.956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.8865, 0.32, -123.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.8865, 0.32, -123.4069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.6869, 0.32, -124.9369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.6869, 0.32, -124.9369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.5436, 0.32, -123.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.5436, 0.32, -123.7225], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.4099, 0.32, -124.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.4099, 0.32, -124.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.2335, 0.32, -123.6856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.2335, 0.32, -123.6856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.666, 0.3201, -116.3232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.666, 0.3201, -116.3232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.1576, 0.32, -116.2717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.1576, 0.32, -116.2717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.8206, 0.32, -117.6098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.8206, 0.32, -117.6098], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.3452, 0.32, -117.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.3452, 0.32, -117.5605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.0502, 0.32, -115.5856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.0502, 0.32, -115.5856], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.302, 0.32, -116.8669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.302, 0.32, -116.8669], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.6164, 0.32, -116.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.6164, 0.32, -116.0057], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.8364, 0.32, -117.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.8364, 0.32, -117.2922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.7895, 0.32, -119.3264], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.7895, 0.32, -119.3264], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.2601, 0.32, -119.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.2601, 0.32, -119.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-12.5476, 0.32, -118.1086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-12.5476, 0.32, -118.1086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.0501, 0.32, -118.539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.0501, 0.32, -118.539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.1135, 0.32, -120.0791], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.1135, 0.32, -120.0791], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.9689, 0.32, -118.8565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.9689, 0.32, -118.8565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.7042, 0.32, -120.0344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.7042, 0.32, -120.0344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.5266, 0.32, -118.8094], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.5266, 0.32, -118.8094], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.94, 0.3323, -110.4865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.94, 0.3323, -110.4865], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.2996, 0.3314, -110.4266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.2996, 0.3314, -110.4266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.1415, 0.3247, -112.0743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.1415, 0.3247, -112.0743], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-6.5342, 0.3242, -112.0169], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-6.5342, 0.3242, -112.0169], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.9354, 0.3309, -109.7702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.9354, 0.3309, -109.7702], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.2343, 0.3239, -111.3533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.2343, 0.3239, -111.3533], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.6291, 0.3309, -110.1695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.6291, 0.3309, -110.1695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.8961, 0.3239, -111.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.8961, 0.3239, -111.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.7898, 0.32, -114.2486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.7898, 0.32, -114.2486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.3878, 0.32, -114.6635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.3878, 0.32, -114.6635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.5184, 0.3208, -112.842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.5184, 0.3208, -112.842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-9.1483, 0.3208, -113.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-9.1483, 0.3208, -113.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.5027, 0.3202, -114.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.5027, 0.3202, -114.9807], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.3285, 0.3212, -113.5684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.3285, 0.3212, -113.5684], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.9613, 0.3201, -114.9273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.9613, 0.3201, -114.9273], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.7541, 0.3209, -113.513], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.7541, 0.3209, -113.513], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9721, 0.4326, -103.1107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9721, 0.4326, -103.1107], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.1992, 0.428, -103.0309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.1992, 0.428, -103.0309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.2369, 0.395, -105.0959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.2369, 0.395, -105.0959], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.4968, 0.3914, -105.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.4968, 0.3914, -105.0228], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.5779, 0.4259, -102.3979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.5779, 0.4259, -102.3979], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.9397, 0.3897, -104.3848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.9397, 0.3897, -104.3848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.3991, 0.4261, -102.7778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.3991, 0.4261, -102.7778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-7.729, 0.3899, -104.7694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-7.729, 0.3899, -104.7694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6199, 0.3433, -108.0802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6199, 0.3433, -108.0802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-8.3455, 0.3434, -108.4746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-8.3455, 0.3434, -108.4746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.2876, 0.3625, -106.282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.2876, 0.3625, -106.282], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.045, 0.3627, -106.6714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.045, 0.3627, -106.6714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.722, 0.3458, -108.7933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.722, 0.3458, -108.7933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.4872, 0.3664, -106.9933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.4872, 0.3664, -106.9933], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.0484, 0.3441, -108.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.0484, 0.3441, -108.73], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-5.7803, 0.3638, -106.9256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-5.7803, 0.3638, -106.9256], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.8001, 0.6814, -94.4911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.8001, 0.6814, -94.4911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-3.8988, 0.6755, -94.3761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-3.8988, 0.6755, -94.3761], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.106, 0.6048, -96.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.106, 0.6048, -96.7258], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-4.2366, 0.5989, -96.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-4.2366, 0.5989, -96.6203], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.0227, 0.6728, -93.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.0227, 0.6728, -93.7578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.4242, 0.5962, -95.9987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.4242, 0.5962, -95.9987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.9709, 0.673, -94.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.9709, 0.673, -94.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3406, 0.5965, -96.3652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3406, 0.5965, -96.3652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.2036, 0.4723, -100.3307], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.2036, 0.4723, -100.3307], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-7.0566, 0.4725, -100.706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-7.0566, 0.4725, -100.706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.8184, 0.5292, -98.1936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.8184, 0.5292, -98.1936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.7031, 0.5295, -98.5645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.7031, 0.5295, -98.5645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-2.6942, 0.48, -101.0468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-2.6942, 0.48, -101.0468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.4048, 0.5375, -98.9148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.4048, 0.5375, -98.9148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.8887, 0.4747, -100.9594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.8887, 0.4747, -100.9594], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.5672, 0.5318, -98.8186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.5672, 0.5318, -98.8186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-1.0612, 1.0966, -84.6864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-1.0612, 1.0966, -84.6864], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-2.7144, 1.0695, -84.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-2.7144, 1.0695, -84.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-1.0299, 0.9711, -87.4162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-1.0299, 0.9711, -87.4162], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-2.9454, 0.9592, -87.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-2.9454, 0.9592, -87.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-6.3772, 1.0532, -84.5383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-6.3772, 1.0532, -84.5383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-6.7922, 0.9509, -86.866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-6.7922, 0.9509, -86.866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-4.4938, 1.0562, -84.8349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-4.4938, 1.0562, -84.8349], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-4.8529, 0.9523, -87.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-4.8529, 0.9523, -87.195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.616, 0.7585, -91.4828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.616, 0.7585, -91.4828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-5.596, 0.7587, -91.8406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-5.596, 0.7587, -91.8406], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-7.2055, 0.8519, -89.1832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-7.2055, 0.8519, -89.1832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-5.2207, 0.8524, -89.5325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-5.2207, 0.8524, -89.5325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.4893, 0.7671, -92.2219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.4893, 0.7671, -92.2219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-1.2093, 0.8628, -89.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-1.2093, 0.8628, -89.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-3.5557, 0.7612, -92.0976], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-3.5557, 0.7612, -92.0976], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-3.2262, 0.8557, -89.7745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-3.2262, 0.8557, -89.7745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.573, 0.32, -119.9957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.573, 0.32, -119.9957], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.0957, 0.32, -119.3558], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.0957, 0.32, -119.3558], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.8453, 0.32, -121.1989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.8453, 0.32, -121.1989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.3993, 0.32, -120.5507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.3993, 0.32, -120.5507], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.0325, 0.32, -117.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.0325, 0.32, -117.5153], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.3966, 0.32, -118.6828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.3966, 0.32, -118.6828], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.5862, 0.32, -118.5509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.5862, 0.32, -118.5509], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.9205, 0.32, -119.7344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.9205, 0.32, -119.7344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.1249, 0.32, -121.0178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.1249, 0.32, -121.0178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.589, 0.32, -122.1013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.589, 0.32, -122.1013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.7608, 0.32, -119.8503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.7608, 0.32, -119.8503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.2547, 0.32, -120.9178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.2547, 0.32, -120.9178], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.3898, 0.32, -123.6052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.3898, 0.32, -123.6052], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.1175, 0.32, -122.4021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.1175, 0.32, -122.4021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.0063, 0.32, -122.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.0063, 0.32, -122.9404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.7028, 0.32, -121.7455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.7028, 0.32, -121.7455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4667, 0.32, -115.0719], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4667, 0.32, -115.0719], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.8643, 0.32, -114.4651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.8643, 0.32, -114.4651], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.7501, 0.32, -116.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.7501, 0.32, -116.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.1789, 0.32, -115.7315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.1789, 0.32, -115.7315], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.5583, 0.3202, -112.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.5583, 0.3202, -112.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9337, 0.3201, -113.9723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9337, 0.3201, -113.9723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.2318, 0.3201, -113.7053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.2318, 0.3201, -113.7053], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.5772, 0.32, -114.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.5772, 0.32, -114.9605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.6683, 0.32, -116.3477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.6683, 0.32, -116.3477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.2519, 0.32, -117.3674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.2519, 0.32, -117.3674], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.3029, 0.32, -115.172], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.3029, 0.32, -115.172], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.9164, 0.32, -116.1758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.9164, 0.32, -116.1758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.3008, 0.32, -118.7926], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.3008, 0.32, -118.7926], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.0273, 0.32, -117.5815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.0273, 0.32, -117.5815], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7922, 0.32, -118.1609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7922, 0.32, -118.1609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-17.4874, 0.32, -116.9581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-17.4874, 0.32, -116.9581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.2256, 0.3309, -109.2834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.2256, 0.3309, -109.2834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.4979, 0.3312, -108.7095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.4979, 0.3312, -108.7095], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.556, 0.3239, -110.8598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.556, 0.3239, -110.8598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.8597, 0.324, -110.2776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.8597, 0.324, -110.2776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.9491, 0.3334, -107.0837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.9491, 0.3334, -107.0837], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.3714, 0.3253, -108.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.3714, 0.3253, -108.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.7425, 0.3319, -107.9943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.7425, 0.3319, -107.9943], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1349, 0.3244, -109.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1349, 0.3244, -109.5511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-21.1742, 0.3204, -111.4371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-21.1742, 0.3204, -111.4371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.8777, 0.3201, -112.3944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.8777, 0.3201, -112.3944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.7792, 0.3216, -110.0717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.7792, 0.3216, -110.0717], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.5127, 0.3211, -111.0137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.5127, 0.3211, -111.0137], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.1747, 0.32, -113.7417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.1747, 0.32, -113.7417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.8717, 0.3208, -112.3418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.8717, 0.3208, -112.3418], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.5409, 0.32, -113.1431], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.5409, 0.32, -113.1431], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-16.2067, 0.3208, -111.7514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-16.2067, 0.3208, -111.7514], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-11.7417, 0.4263, -101.938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-11.7417, 0.4263, -101.938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.8892, 0.4275, -101.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.8892, 0.4275, -101.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-12.1351, 0.39, -103.9182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-12.1351, 0.39, -103.9182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.3138, 0.391, -103.3698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.3138, 0.391, -103.3698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.1015, 0.4361, -99.8951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.1015, 0.4361, -99.8951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.5848, 0.3979, -101.8338], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.5848, 0.3979, -101.8338], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.012, 0.4305, -100.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.012, 0.4305, -100.7327], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.4667, 0.3933, -102.6911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.4667, 0.3933, -102.6911], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.5102, 0.3474, -105.4374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.5102, 0.3474, -105.4374], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.3334, 0.345, -106.3312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.3334, 0.345, -106.3312], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.0549, 0.3686, -103.6843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.0549, 0.3686, -103.6843], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.9076, 0.3652, -104.5604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.9076, 0.3652, -104.5604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.8785, 0.3434, -107.6002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.8785, 0.3434, -107.6002], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5145, 0.3628, -105.8087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5145, 0.3628, -105.8087], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.1196, 0.3439, -107.0347], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.1196, 0.3439, -107.0347], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.7244, 0.3634, -105.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.7244, 0.3634, -105.2517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.0602, 0.6735, -93.3247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.0602, 0.6735, -93.3247], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.084, 0.6752, -92.821], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.084, 0.6752, -92.821], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-10.4932, 0.5969, -95.5589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-10.4932, 0.5969, -95.5589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5478, 0.5985, -95.046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5478, 0.5985, -95.046], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.0722, 0.6862, -91.4629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.0722, 0.6862, -91.4629], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.5905, 0.6095, -93.65], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.5905, 0.6095, -93.65], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-14.0895, 0.679, -92.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-14.0895, 0.679, -92.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-14.5821, 0.6023, -94.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-14.5821, 0.6023, -94.4223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.6069, 0.4841, -97.8778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.6069, 0.4841, -97.8778], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5452, 0.4776, -98.6945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5452, 0.4776, -98.6945], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-17.1026, 0.542, -95.7921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-17.1026, 0.542, -95.7921], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.068, 0.535, -96.5871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.068, 0.535, -96.5871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.3358, 0.4728, -99.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.3358, 0.4728, -99.8774], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.919, 0.5299, -97.7471], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.919, 0.5299, -97.7471], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.4523, 0.4742, -99.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.4523, 0.4742, -99.3466], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-13.0045, 0.5314, -97.2252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-13.0045, 0.5314, -97.2252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-8.2883, 1.0541, -84.1321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-8.2883, 1.0541, -84.1321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-10.1895, 1.0557, -83.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-10.1895, 1.0557, -83.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-8.7349, 0.9517, -86.4531], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-8.7349, 0.9517, -86.4531], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-10.6666, 0.9534, -85.977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-10.6666, 0.9534, -85.977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.9679, 1.0655, -82.4655], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.9679, 1.0655, -82.4655], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-14.4968, 0.9636, -84.7371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-14.4968, 0.9636, -84.7371], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.0822, 1.0592, -83.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.0822, 1.0592, -83.1167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-12.5873, 0.957, -85.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-12.5873, 0.957, -85.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-15.5498, 0.7718, -89.2426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-15.5498, 0.7718, -89.2426], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-13.592, 0.7647, -89.9677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-13.592, 0.7647, -89.9677], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-15.0243, 0.865, -86.9984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-15.0243, 0.865, -86.9984], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-13.0909, 0.8581, -87.6991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-13.0909, 0.8581, -87.6991], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-9.6219, 0.7592, -91.0564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-9.6219, 0.7592, -91.0564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-9.1797, 0.8527, -88.7636], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-9.1797, 0.8527, -88.7636], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-11.6149, 0.7609, -90.5619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-11.6149, 0.7609, -90.5619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-11.1421, 0.8544, -88.2782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-11.1421, 0.8544, -88.2782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.4225, 0.32, -116.1835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.4225, 0.32, -116.1835], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.757, 0.32, -114.525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.757, 0.32, -114.525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.8155, 0.32, -117.329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.8155, 0.32, -117.329], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.1772, 0.32, -115.6417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.1772, 0.32, -115.6417], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.3135, 0.3206, -110.2453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.3135, 0.3206, -110.2453], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.7794, 0.3202, -111.2846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.7794, 0.3202, -111.2846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.0495, 0.3202, -112.5441], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.0495, 0.3202, -112.5441], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.4943, 0.3201, -113.6253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.4943, 0.3201, -113.6253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.7108, 0.32, -113.3623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.7108, 0.32, -113.3623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.3837, 0.32, -115.7871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.3837, 0.32, -115.7871], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.2452, 0.32, -112.3235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.2452, 0.32, -112.3235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.939, 0.32, -114.7063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.939, 0.32, -114.7063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.6014, 0.32, -119.6197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.6014, 0.32, -119.6197], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.2085, 0.32, -118.4744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.2085, 0.32, -118.4744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.0175, 0.32, -117.8745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.0175, 0.32, -117.8745], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.5973, 0.32, -116.7582], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.5973, 0.32, -116.7582], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.8328, 0.3204, -111.4876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.8328, 0.3204, -111.4876], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.0584, 0.3211, -109.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.0584, 0.3211, -109.9424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.2371, 0.3201, -112.7059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.2371, 0.3201, -112.7059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.49, 0.3205, -111.1328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.49, 0.3205, -111.1328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.4325, 0.3265, -105.9707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.4325, 0.3265, -105.9707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.9089, 0.324, -107.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.9089, 0.324, -107.0842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.2525, 0.3229, -108.1019], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.2525, 0.3229, -108.1019], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.7085, 0.3216, -109.2575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.7085, 0.3216, -109.2575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.8473, 0.3212, -109.2055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.8473, 0.3212, -109.2055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.6046, 0.3204, -111.4624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.6046, 0.3204, -111.4624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.3799, 0.3223, -108.1571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.3799, 0.3223, -108.1571], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.1584, 0.3209, -110.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.1584, 0.3209, -110.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0295, 0.32, -115.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0295, 0.32, -115.0379], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.6352, 0.32, -113.884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.6352, 0.32, -113.884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.3368, 0.3201, -113.408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.3368, 0.3201, -113.408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.9153, 0.3202, -112.2827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.9153, 0.3202, -112.2827], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.1077, 0.3359, -105.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.1077, 0.3359, -105.9235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.2254, 0.3403, -104.491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.2254, 0.3403, -104.491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.5589, 0.3268, -107.4422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.5589, 0.3268, -107.4422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.7032, 0.3297, -105.9801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.7032, 0.3297, -105.9801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.4346, 0.3595, -100.8449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.4346, 0.3595, -100.8449], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.9507, 0.3446, -102.246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.9507, 0.3446, -102.246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.3263, 0.3477, -102.7951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.3263, 0.3477, -102.7951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.8264, 0.3352, -104.2455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.8264, 0.3352, -104.2455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.9484, 0.3299, -104.8006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.9484, 0.3299, -104.8006], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.788, 0.3247, -106.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.788, 0.3247, -106.8894], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.4549, 0.3353, -103.5618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.4549, 0.3353, -103.5618], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.3132, 0.3282, -105.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.3132, 0.3282, -105.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.4196, 0.3209, -110.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.4196, 0.3209, -110.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.9956, 0.3224, -108.8682], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.9956, 0.3224, -108.8682], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.618, 0.322, -108.6952], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.618, 0.322, -108.6952], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.1668, 0.3243, -107.378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.1668, 0.3243, -107.378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1494, 0.4455, -98.8394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1494, 0.4455, -98.8394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.1678, 0.459, -97.5506], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.1678, 0.459, -97.5506], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.6591, 0.4056, -100.7492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.6591, 0.4056, -100.7492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.7007, 0.4168, -99.4205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.7007, 0.4168, -99.4205], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.2487, 0.4976, -94.3381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.2487, 0.4976, -94.3381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-26.81, 0.4513, -96.0884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-26.81, 0.4513, -96.0884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.1899, 0.4764, -96.0448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.1899, 0.4764, -96.0448], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.7406, 0.432, -97.8621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.7406, 0.432, -97.8621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.9051, 0.3819, -99.3502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.9051, 0.3819, -99.3502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.8113, 0.3675, -101.2464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.8113, 0.3675, -101.2464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.3629, 0.4126, -97.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.3629, 0.4126, -97.7619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.2819, 0.3957, -99.599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.2819, 0.3957, -99.599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.6403, 0.3514, -104.3007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.6403, 0.3514, -104.3007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.1567, 0.3744, -102.5728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.1567, 0.3744, -102.5728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.7318, 0.3577, -102.9001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.7318, 0.3577, -102.9001], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.2228, 0.3832, -101.2068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.2228, 0.3832, -101.2068], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.0275, 0.698, -90.5394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.0275, 0.698, -90.5394], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.9701, 0.7143, -89.4331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.9701, 0.7143, -89.4331], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.5669, 0.6212, -92.6913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.5669, 0.6212, -92.6913], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.5261, 0.6376, -91.5366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.5261, 0.6376, -91.5366], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.9537, 0.7562, -86.7452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.9537, 0.7562, -86.7452], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.5329, 0.6805, -88.7136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.5329, 0.6805, -88.7136], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9341, 0.7341, -88.1623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9341, 0.7341, -88.1623], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.5031, 0.6577, -90.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.5031, 0.6577, -90.2045], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.6812, 0.5513, -92.5195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.6812, 0.5513, -92.5195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-23.6323, 0.5289, -94.1561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-23.6323, 0.5289, -94.1561], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.109, 0.6122, -90.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.109, 0.6122, -90.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.0696, 0.5893, -92.2059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.0696, 0.5893, -92.2059], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.6296, 0.4947, -96.8527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.6296, 0.4947, -96.8527], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-19.1015, 0.5534, -94.7995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-19.1015, 0.5534, -94.7995], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.6266, 0.5098, -95.6063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.6266, 0.5098, -95.6063], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.0788, 0.5694, -93.598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.0788, 0.5694, -93.598], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-15.8482, 1.0754, -81.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-15.8482, 1.0754, -81.6904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.6683, 1.0917, -80.7704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.6683, 1.0917, -80.7704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-16.3948, 0.9742, -83.9242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-16.3948, 0.9742, -83.9242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.2668, 0.9897, -82.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.2668, 0.9897, -82.9622], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7743, 1.1571, -78.4313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7743, 1.1571, -78.4313], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.9257, 1.0362, -80.617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.9257, 1.0362, -80.617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-19.3179, 1.1186, -79.6841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-19.3179, 1.1186, -79.6841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-20.0835, 1.0115, -81.8511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-20.0835, 1.0115, -81.8511], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.3721, 0.8395, -84.7459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.3721, 0.8395, -84.7459], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.364, 0.8184, -86.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.364, 0.8184, -86.0898], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-22.7331, 0.9319, -82.71], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-22.7331, 0.9319, -82.71], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.7655, 0.9107, -83.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.7655, 0.9107, -83.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-17.485, 0.7833, -88.3553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-17.485, 0.7833, -88.3553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-16.9406, 0.8761, -86.148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-16.9406, 0.8761, -86.148], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.4124, 0.7992, -87.2986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.4124, 0.7992, -87.2986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-18.8482, 0.8916, -85.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-18.8482, 0.8916, -85.1404], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.5624, 0.3212, -107.633], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.5624, 0.3212, -107.633], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.8463, 0.3221, -104.7883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.8463, 0.3221, -104.7883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.045, 0.3204, -108.624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.045, 0.3204, -108.624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.3421, 0.3208, -105.7269], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.3421, 0.3208, -105.7269], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.8663, 0.3238, -99.032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.8663, 0.3238, -99.032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.3868, 0.3214, -99.8721], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.3868, 0.3214, -99.8721], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.252, 0.323, -101.8687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.252, 0.323, -101.8687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.7596, 0.3211, -102.7556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.7596, 0.3211, -102.7556], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.4264, 0.32, -101.5504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.4264, 0.32, -101.5504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.7734, 0.32, -104.528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.7734, 0.32, -104.528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.9068, 0.3203, -100.7114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.9068, 0.3203, -100.7114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.2667, 0.3202, -103.6419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.2667, 0.3202, -103.6419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0097, 0.32, -110.605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0097, 0.32, -110.605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-35.5274, 0.3201, -109.6146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-35.5274, 0.3201, -109.6146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.3325, 0.32, -107.6032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.3325, 0.32, -107.6032], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.8374, 0.3202, -106.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.8374, 0.3202, -106.6652], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.6158, 0.3326, -103.5536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.6158, 0.3326, -103.5536], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.8497, 0.3407, -100.9222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.8497, 0.3407, -100.9222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.1076, 0.3281, -104.6174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.1076, 0.3281, -104.6174], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.3525, 0.3336, -101.931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.3525, 0.3336, -101.931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.7798, 0.3561, -95.5712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.7798, 0.3561, -95.5712], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.3011, 0.344, -96.4732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.3011, 0.344, -96.4732], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.2119, 0.3491, -98.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.2119, 0.3491, -98.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.7237, 0.3393, -99.1685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.7237, 0.3393, -99.1685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.3449, 0.3282, -98.1909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.3449, 0.3282, -98.1909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.7436, 0.3265, -100.9812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.7436, 0.3265, -100.9812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.823, 0.3348, -97.3422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.823, 0.3348, -97.3422], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-38.2342, 0.3319, -100.0858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-38.2342, 0.3319, -100.0858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0793, 0.3226, -106.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0793, 0.3226, -106.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.5949, 0.3249, -105.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.5949, 0.3249, -105.6415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-36.3498, 0.3245, -103.849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-36.3498, 0.3245, -103.849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.8522, 0.3283, -102.9016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.8522, 0.3283, -102.9016], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.5744, 0.3768, -98.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.5744, 0.3768, -98.6492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.7892, 0.3984, -96.2714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.7892, 0.3984, -96.2714], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.0982, 0.359, -99.989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.0982, 0.359, -99.989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.3137, 0.3774, -97.54], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.3137, 0.3774, -97.54], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.6955, 0.4386, -91.4407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.6955, 0.4386, -91.4407], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.2194, 0.412, -92.5616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.2194, 0.412, -92.5616], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.142, 0.4203, -93.8293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.142, 0.4203, -93.8293], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.6649, 0.3962, -95.023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.6649, 0.3962, -95.023], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.2597, 0.3712, -94.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.2597, 0.3712, -94.6233], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.6987, 0.3614, -97.2117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.6987, 0.3614, -97.2117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.7402, 0.3897, -93.6213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.7402, 0.3897, -93.6213], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.1834, 0.3769, -96.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.1834, 0.3769, -96.1491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.1178, 0.3385, -102.4343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.1178, 0.3385, -102.4343], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.6123, 0.3467, -101.2484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.6123, 0.3467, -101.2484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.343, 0.3498, -99.8601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.343, 0.3498, -99.8601], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.8313, 0.3616, -98.7345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.8313, 0.3616, -98.7345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.3771, 0.5225, -92.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.3771, 0.5225, -92.4469], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.609, 0.549, -90.4214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.609, 0.549, -90.4214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.9398, 0.4751, -94.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.9398, 0.4751, -94.1139], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.1669, 0.5015, -91.9928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.1669, 0.5015, -91.9928], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-35.5223, 0.593, -86.3069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-35.5223, 0.593, -86.3069], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0833, 0.5467, -87.6866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0833, 0.5467, -87.6866], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.9792, 0.5737, -88.3465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.9792, 0.5737, -88.3465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.5339, 0.5267, -89.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.5339, 0.5267, -89.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.1667, 0.4697, -90.2548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.1667, 0.4697, -90.2548], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.6135, 0.4499, -92.5637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.6135, 0.4499, -92.5637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.6304, 0.5057, -89.003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.6304, 0.5057, -89.003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.0781, 0.4854, -91.2259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.0781, 0.4854, -91.2259], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0398, 0.4019, -97.2222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0398, 0.4019, -97.2222], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.4945, 0.4347, -95.708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.4945, 0.4347, -95.708], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.2569, 0.4259, -94.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.2569, 0.4259, -94.9231], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.7162, 0.4604, -93.4951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.7162, 0.4604, -93.4951], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.0628, 0.7795, -85.2], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.0628, 0.7795, -85.2], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.2821, 0.8021, -83.5608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.2821, 0.8021, -83.5608], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.6505, 0.7048, -87.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.6505, 0.7048, -87.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.8798, 0.7289, -85.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.8798, 0.7289, -85.3492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-33.0783, 0.8357, -80.2005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-33.0783, 0.8357, -80.2005], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.7246, 0.7654, -81.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.7246, 0.7654, -81.8083], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.6183, 0.8217, -81.8776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.6183, 0.8217, -81.8776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.2336, 0.75, -83.5718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.2336, 0.75, -83.5718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.944, 0.6446, -84.8654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.944, 0.6446, -84.8654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.4121, 0.6265, -86.8114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.4121, 0.6265, -86.8114], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.3456, 0.7019, -83.3645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.3456, 0.7019, -83.3645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.8309, 0.6851, -85.2182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.8309, 0.6851, -85.2182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.8076, 0.5765, -90.7141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.8076, 0.5765, -90.7141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.2321, 0.6372, -88.9232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.2321, 0.6372, -88.9232], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.0423, 0.6027, -88.7862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.0423, 0.6027, -88.7862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.4662, 0.6625, -87.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.4662, 0.6625, -87.0932], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.8451, 1.1775, -77.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.8451, 1.1775, -77.2119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.4703, 1.1788, -76.0236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.4703, 1.1788, -76.0236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.9841, 1.0565, -79.3123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.9841, 1.0565, -79.3123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.2706, 1.0706, -77.9599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.2706, 1.0706, -77.9599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.2023, 1.1933, -73.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.2023, 1.1933, -73.3413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.967, 1.0917, -75.1101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.967, 1.0917, -75.1101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.8829, 1.1858, -74.7123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.8829, 1.1858, -74.7123], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.6178, 1.0822, -76.5528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.6178, 1.0822, -76.5528], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-32.4042, 0.9132, -78.545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-32.4042, 0.9132, -78.545], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.9831, 0.9005, -80.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.9831, 0.9005, -80.1408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-31.7007, 0.9984, -76.8464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-31.7007, 0.9984, -76.8464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-29.3205, 0.9872, -78.365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-29.3205, 0.9872, -78.365], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.4691, 0.8615, -83.2842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.4691, 0.8615, -83.2842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.8134, 0.9527, -81.3287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.8134, 0.9527, -81.3287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-27.6721, 0.8826, -81.7348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-27.6721, 0.8826, -81.7348], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.0206, 0.9714, -79.8706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.0206, 0.9714, -79.8706], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.8335, 1.6623, -69.5486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.8335, 1.6623, -69.5486], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.8342, 1.6721, -68.3975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.8342, 1.6721, -68.3975], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.4623, 1.5255, -71.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.4623, 1.5255, -71.5199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-23.5541, 1.5355, -70.3251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-23.5541, 1.5355, -70.3251], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.8577, 1.6861, -66.0694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.8577, 1.6861, -66.0694], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.7288, 1.5505, -67.9013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.7288, 1.5505, -67.9013], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.841, 1.6804, -67.2393], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.841, 1.6804, -67.2393], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.6408, 1.5442, -69.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.6408, 1.5442, -69.1199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.4059, 1.3037, -71.5455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.4059, 1.3037, -71.5455], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.1455, 1.2972, -72.8575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.1455, 1.2972, -72.8575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-28.5798, 1.4229, -69.7294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-28.5798, 1.4229, -69.7294], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.4069, 1.4165, -70.9942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.4069, 1.4165, -70.9942], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.1205, 1.2937, -75.2491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.1205, 1.2937, -75.2491], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-21.9037, 1.4021, -73.4288], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-21.9037, 1.4021, -73.4288], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.7739, 1.2917, -74.1117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.7739, 1.2917, -74.1117], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-24.1844, 1.4091, -72.227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-24.1844, 1.4091, -72.227], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-18.7376, 2.2281, -62.0384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-18.7376, 2.2281, -62.0384], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.0258, 2.2642, -60.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.0258, 2.2642, -60.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-18.9873, 2.099, -63.779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-18.9873, 2.099, -63.779], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-20.644, 2.1163, -62.7064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-20.644, 2.1163, -62.7064], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.2565, 2.2913, -58.7956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.2565, 2.2913, -58.7956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-24.1673, 2.1339, -60.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-24.1673, 2.1339, -60.6071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.558, 2.2838, -59.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.558, 2.2838, -59.8125], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-22.3709, 2.1281, -61.6518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-22.3709, 2.1281, -61.6518], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-25.9712, 1.8295, -64.2419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-25.9712, 1.8295, -64.2419], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-24.0206, 1.8243, -65.3643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-24.0206, 1.8243, -65.3643], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0733, 1.9793, -62.4219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0733, 1.9793, -62.4219], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-23.1929, 1.9743, -63.5014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-23.1929, 1.9743, -63.5014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-20.1334, 1.8083, -67.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-20.1334, 1.8083, -67.5695], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-19.479, 1.9569, -65.6318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-19.479, 1.9569, -65.6318], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-22.0754, 1.8169, -66.4715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-22.0754, 1.8169, -66.4715], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-21.3284, 1.9666, -64.569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-21.3284, 1.9666, -64.569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.7759, 0.3242, -96.4356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.7759, 0.3242, -96.4356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.9993, 0.3242, -94.1532], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.9993, 0.3242, -94.1532], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.3128, 0.3215, -97.2385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.3128, 0.3215, -97.2385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.557, 0.3215, -94.9302], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.557, 0.3215, -94.9302], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.187, 0.3233, -90.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.187, 0.3233, -90.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.7983, 0.3212, -91.242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.7983, 0.3212, -91.242], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-51.4863, 0.3239, -92.1744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-51.4863, 0.3239, -92.1744], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.0689, 0.3214, -92.9353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.0689, 0.3214, -92.9353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-57.0225, 0.32, -92.7408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-57.0225, 0.32, -92.7408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.235, 0.32, -94.4508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.235, 0.32, -94.4508], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-56.4102, 0.3202, -91.9922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-56.4102, 0.3202, -91.9922], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.6519, 0.3203, -93.6938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.6519, 0.3203, -93.6938], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.3856, 0.32, -98.8415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.3856, 0.32, -98.8415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.8493, 0.3203, -98.0403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.8493, 0.3203, -98.0403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.6723, 0.32, -96.4797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.6723, 0.32, -96.4797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.1147, 0.3203, -95.7055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.1147, 0.3203, -95.7055], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.6308, 0.3599, -93.1289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.6308, 0.3599, -93.1289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.7784, 0.3602, -90.9551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.7784, 0.3602, -90.9551], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.1647, 0.3466, -93.9887], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.1647, 0.3466, -93.9887], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.3294, 0.3466, -91.7838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.3294, 0.3466, -91.7838], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.7587, 0.3528, -87.3927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.7587, 0.3528, -87.3927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.3614, 0.3415, -88.1893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.3614, 0.3415, -88.1893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-49.1713, 0.3575, -89.0447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-49.1713, 0.3575, -89.0447], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.745, 0.3447, -89.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.745, 0.3447, -89.8526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.5766, 0.3271, -89.7317], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.5766, 0.3271, -89.7317], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.9041, 0.3283, -91.4102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.9041, 0.3283, -91.4102], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.9677, 0.333, -88.967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.9677, 0.333, -88.967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.3231, 0.3351, -90.6387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.3231, 0.3351, -90.6387], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.2384, 0.329, -95.631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.2384, 0.329, -95.631], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.701, 0.3364, -94.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.701, 0.3364, -94.8191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.4414, 0.329, -93.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.4414, 0.329, -93.3738], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.8843, 0.3363, -92.587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.8843, 0.3363, -92.587], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.5127, 0.4493, -89.2234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.5127, 0.4493, -89.2234], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.5961, 0.4511, -87.2316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.5961, 0.4511, -87.2316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.0449, 0.4213, -90.2797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.0449, 0.4213, -90.2797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.147, 0.4228, -88.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.147, 0.4228, -88.2352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.3297, 0.4334, -83.8862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.3297, 0.4334, -83.8862], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-50.9558, 0.4077, -84.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-50.9558, 0.4077, -84.8267], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.8877, 0.4454, -85.4557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.8877, 0.4454, -85.4557], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.4695, 0.4179, -86.4202], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.4695, 0.4179, -86.4202], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.1607, 0.3675, -86.5716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.1607, 0.3675, -86.5716], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.6036, 0.3739, -88.208], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.6036, 0.3739, -88.208], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5629, 0.3857, -85.7191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5629, 0.3857, -85.7191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.0389, 0.3941, -87.3354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.0389, 0.3941, -87.3354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.1007, 0.3767, -92.2285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.1007, 0.3767, -92.2285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.5731, 0.3971, -91.2801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.5731, 0.3971, -91.2801], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.2328, 0.3773, -90.0919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.2328, 0.3773, -90.0919], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.6908, 0.3982, -89.1869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.6908, 0.3982, -89.1869], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.273, 0.6032, -84.3874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.273, 0.6032, -84.3874], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.2209, 0.6032, -82.6248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.2209, 0.6032, -82.6248], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.8577, 0.5578, -85.6893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.8577, 0.5578, -85.6893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-41.8495, 0.5585, -83.8685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-41.8495, 0.5585, -83.8685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.4854, 0.5786, -79.526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.4854, 0.5786, -79.526], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.256, 0.5351, -80.7103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.256, 0.5351, -80.7103], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.3102, 0.5945, -81.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.3102, 0.5945, -81.0081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.0015, 0.5505, -82.2126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.0015, 0.5505, -82.2126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-49.6748, 0.463, -82.8892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-49.6748, 0.463, -82.8892], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.2861, 0.4764, -84.4352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.2861, 0.4764, -84.4352], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.9847, 0.4967, -81.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.9847, 0.4967, -81.831], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.6587, 0.5113, -83.3546], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.6587, 0.5113, -83.3546], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.9734, 0.4812, -88.1072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.9734, 0.4812, -88.1072], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.4231, 0.5172, -86.9292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.4231, 0.5172, -86.9292], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.0327, 0.483, -86.1709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.0327, 0.483, -86.1709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.452, 0.5186, -85.0502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.452, 0.5186, -85.0502], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.669, 0.8418, -78.5796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.669, 0.8418, -78.5796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.372, 0.8393, -77.0363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.372, 0.8393, -77.0363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.3656, 0.7725, -80.1166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.3656, 0.7725, -80.1166], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.1394, 0.7705, -78.5215], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.1394, 0.7705, -78.5215], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.9405, 0.8139, -74.1554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.9405, 0.8139, -74.1554], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.8971, 0.7447, -75.5886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.8971, 0.7447, -75.5886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.1437, 0.8296, -75.5638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.1437, 0.8296, -75.5638], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-41.9989, 0.7608, -77.0149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-41.9989, 0.7608, -77.0149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.6695, 0.6276, -78.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.6695, 0.6276, -78.2767], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.5809, 0.6439, -79.7395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.5809, 0.6439, -79.7395], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.8067, 0.6828, -76.9634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.8067, 0.6828, -76.9634], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.8109, 0.6991, -78.4076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.8109, 0.6991, -78.4076], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.6649, 0.6537, -83.0235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.6649, 0.6537, -83.0235], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.03, 0.71, -81.5989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.03, 0.71, -81.5989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.5617, 0.653, -81.3183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.5617, 0.653, -81.3183], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.8686, 0.7086, -79.9497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.8686, 0.7086, -79.9497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.5312, 1.1966, -71.9625], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.5312, 1.1966, -71.9625], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.9066, 1.1938, -70.6009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.9066, 1.1938, -70.6009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.368, 1.0955, -73.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.368, 1.0955, -73.6764], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.8293, 1.0925, -72.2726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.8293, 1.0925, -72.2726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.6786, 1.1737, -67.9218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.6786, 1.1737, -67.9218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.8013, 1.0707, -69.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.8013, 1.0707, -69.5425], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.2989, 1.1858, -69.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.2989, 1.1858, -69.2547], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-38.318, 1.0839, -70.8956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-38.318, 1.0839, -70.8956], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-42.937, 0.8911, -72.6663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-42.937, 0.8911, -72.6663], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-40.244, 0.9061, -74.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-40.244, 0.9061, -74.0569], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-41.889, 0.9766, -71.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-41.889, 0.9766, -71.1263], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.3009, 0.9907, -72.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.3009, 0.9907, -72.4986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.9376, 0.9184, -76.9907], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.9376, 0.9184, -76.9907], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.1704, 1.0028, -75.3544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.1704, 1.0028, -75.3544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-37.5642, 0.9156, -75.4965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-37.5642, 0.9156, -75.4965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.7159, 0.9999, -73.9065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.7159, 0.9999, -73.9065], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-28.8883, 1.6884, -64.883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-28.8883, 1.6884, -64.883], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.9262, 1.687, -63.6786], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.9262, 1.687, -63.6786], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.8337, 1.5529, -66.6704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.8337, 1.5529, -66.6704], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.9533, 1.5511, -65.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.9533, 1.5511, -65.428], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-34.9533, 1.6754, -61.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-34.9533, 1.6754, -61.2217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.1559, 1.5373, -62.9126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.1559, 1.5373, -62.9126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.9537, 1.6824, -62.4576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.9537, 1.6824, -62.4576], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.0674, 1.5456, -64.1752], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.0674, 1.5456, -64.1752], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.5259, 1.286, -66.2713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.5259, 1.286, -66.2713], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-36.2469, 1.2969, -67.5823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-36.2469, 1.2969, -67.5823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-37.3492, 1.4073, -64.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-37.3492, 1.4073, -64.5987], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.1674, 1.417, -65.8863], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.1674, 1.417, -65.8863], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-31.6607, 1.3066, -70.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-31.6607, 1.3066, -70.2186], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-30.7597, 1.4255, -68.4517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-30.7597, 1.4255, -68.4517], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.9498, 1.3041, -68.8978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.9498, 1.3041, -68.8978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-32.9633, 1.4233, -67.1707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-32.9633, 1.4233, -67.1707], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-25.0056, 2.2933, -57.7718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-25.0056, 2.2933, -57.7718], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-26.7428, 2.2936, -56.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-26.7428, 2.2936, -56.7138], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-25.9852, 2.136, -59.5442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-25.9852, 2.136, -59.5442], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-27.7948, 2.1358, -58.4501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-27.7948, 2.1358, -58.4501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-30.1441, 2.2896, -54.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-30.1441, 2.2896, -54.5066], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.3449, 2.13, -56.1789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.3449, 2.13, -56.1789], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.4587, 2.2922, -55.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.4587, 2.2922, -55.6245], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-29.5851, 2.1337, -57.3274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-29.5851, 2.1337, -57.3274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-33.749, 1.8211, -59.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-33.749, 1.8211, -59.5344], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.8334, 1.8269, -60.7424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.8334, 1.8269, -60.7424], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-32.5463, 1.9732, -57.8541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-32.5463, 1.9732, -57.8541], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-30.7102, 1.978, -59.0328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-30.7102, 1.978, -59.0328], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-27.9293, 1.8316, -63.0981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-27.9293, 1.8316, -63.0981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-26.9606, 1.9815, -61.3191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-26.9606, 1.9815, -61.3191], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-29.8884, 1.8306, -61.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-29.8884, 1.8306, -61.9309], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-28.844, 1.9809, -60.1886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-28.844, 1.9809, -60.1886], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.0513, 0.3227, -89.086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.0513, 0.3227, -89.086], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.9931, 0.322, -87.9119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.9931, 0.322, -87.9119], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-59.6946, 0.321, -89.8385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-59.6946, 0.321, -89.8385], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-63.6711, 0.3207, -88.6693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-63.6711, 0.3207, -88.6693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.6187, 0.3208, -85.8593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.6187, 0.3208, -85.8593], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-71.3707, 0.3203, -86.6364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-71.3707, 0.3203, -86.6364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-66.8897, 0.3213, -86.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-66.8897, 0.3213, -86.8689], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.6042, 0.3205, -87.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.6042, 0.3205, -87.635], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-72.8761, 0.32, -88.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-72.8761, 0.32, -88.1842], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-69.0351, 0.32, -89.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-69.0351, 0.32, -89.1599], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-72.1232, 0.3201, -87.411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-72.1232, 0.3201, -87.411], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.3195, 0.3201, -88.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.3195, 0.3201, -88.3983], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9832, 0.32, -91.3353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9832, 0.32, -91.3353], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.3387, 0.3202, -90.5878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.3387, 0.3202, -90.5878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-65.0291, 0.32, -90.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-65.0291, 0.32, -90.176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.3499, 0.3201, -89.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.3499, 0.3201, -89.4236], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.4895, 0.3467, -85.994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.4895, 0.3467, -85.994], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-60.2801, 0.3399, -84.8009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-60.2801, 0.3399, -84.8009], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-57.1284, 0.3373, -86.7881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-57.1284, 0.3373, -86.7881], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9615, 0.3329, -85.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9615, 0.3329, -85.5997], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.5767, 0.3276, -82.6701], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.5767, 0.3276, -82.6701], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-68.3523, 0.3249, -83.4909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-68.3523, 0.3249, -83.4909], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.0145, 0.3333, -83.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.0145, 0.3333, -83.723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.7424, 0.3286, -84.5316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.7424, 0.3286, -84.5316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-69.8673, 0.3216, -85.079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-69.8673, 0.3216, -85.079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-66.176, 0.3228, -86.0989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-66.176, 0.3228, -86.0989], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.1139, 0.323, -84.2917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.1139, 0.323, -84.2917], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.4616, 0.3252, -85.3217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.4616, 0.3252, -85.3217], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.4092, 0.3257, -88.3291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.4092, 0.3257, -88.3291], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-57.7682, 0.3305, -87.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-57.7682, 0.3305, -87.5648], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.3162, 0.3242, -87.1503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.3162, 0.3242, -87.1503], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-61.6396, 0.3278, -86.3812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-61.6396, 0.3278, -86.3812], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.864, 0.4165, -82.5134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.864, 0.4165, -82.5134], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-57.4138, 0.3966, -81.2962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-57.4138, 0.3966, -81.2962], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-54.5498, 0.3934, -83.4468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-54.5498, 0.3934, -83.4468], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-58.172, 0.3768, -82.2372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-58.172, 0.3768, -82.2372], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-64.1748, 0.3582, -79.0356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-64.1748, 0.3582, -79.0356], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.0917, 0.345, -80.0156], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.0917, 0.345, -80.0156], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-60.8827, 0.3763, -80.1612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-60.8827, 0.3763, -80.1612], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-61.7201, 0.3599, -81.1196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-61.7201, 0.3599, -81.1196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-66.781, 0.3312, -81.823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-66.781, 0.3312, -81.823], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-63.2741, 0.3396, -82.8904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-63.2741, 0.3396, -82.8904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-65.9566, 0.3365, -80.9414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-65.9566, 0.3365, -80.9414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.5133, 0.348, -82.026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.5133, 0.348, -82.026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.8514, 0.3589, -85.1776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.8514, 0.3589, -85.1776], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.2086, 0.3743, -84.3316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.2086, 0.3743, -84.3316], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.5934, 0.3492, -83.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.5934, 0.3492, -83.9795], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-58.8947, 0.3612, -83.1283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-58.8947, 0.3612, -83.1283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.6906, 0.5568, -78.1675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.6906, 0.5568, -78.1675], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.8642, 0.5311, -76.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.8642, 0.5311, -76.9026], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5556, 0.5137, -79.3501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5556, 0.5137, -79.3501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.8342, 0.4885, -78.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.8342, 0.4885, -78.0986], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.8453, 0.4793, -74.4573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.8453, 0.4793, -74.4573], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-61.0278, 0.438, -75.7011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-61.0278, 0.438, -75.7011], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-56.9384, 0.5044, -75.6822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-56.9384, 0.5044, -75.6822], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-58.0166, 0.4624, -76.9007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-58.0166, 0.4624, -76.9007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-63.1941, 0.3777, -77.9916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-63.1941, 0.3777, -77.9916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.9891, 0.3985, -79.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.9891, 0.3985, -79.1409], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.1446, 0.4042, -76.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.1446, 0.4042, -76.8797], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.0336, 0.4271, -78.0538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.0336, 0.4271, -78.0538], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.1401, 0.444, -81.5223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.1401, 0.444, -81.5223], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.3714, 0.4763, -80.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.3714, 0.4763, -80.4681], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.608, 0.4216, -80.2953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.608, 0.4216, -80.2953], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.7485, 0.4521, -79.2295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.7485, 0.4521, -79.2295], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-46.7187, 0.7936, -72.804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-46.7187, 0.7936, -72.804], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.4358, 0.7704, -71.4931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.4358, 0.7704, -71.4931], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.7867, 0.7236, -74.2345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.7867, 0.7236, -74.2345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.6204, 0.6993, -72.9326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.6204, 0.6993, -72.9326], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-54.5189, 0.7233, -68.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-54.5189, 0.7233, -68.8878], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-55.9294, 0.6499, -70.3596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-55.9294, 0.6499, -70.3596], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.0497, 0.7462, -70.1965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.0497, 0.7462, -70.1965], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.3506, 0.674, -71.6515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.3506, 0.674, -71.6515], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.5985, 0.5282, -73.1498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.5985, 0.5282, -73.1498], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.7993, 0.5535, -74.399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.7993, 0.5535, -74.399], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.2913, 0.5849, -71.782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.2913, 0.5849, -71.782], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-54.6019, 0.6099, -73.0539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-54.6019, 0.6099, -73.0539], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-49.7741, 0.6057, -76.9196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-49.7741, 0.6057, -76.9196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.8056, 0.6612, -75.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.8056, 0.6612, -75.6074], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.8376, 0.5802, -75.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.8376, 0.5802, -75.6413], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-51.7554, 0.6361, -74.3167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-51.7554, 0.6361, -74.3167], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.0164, 1.1585, -66.6004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.0164, 1.1585, -66.6004], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-44.2858, 1.1413, -65.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-44.2858, 1.1413, -65.285], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.246, 1.054, -68.2101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.246, 1.054, -68.2101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.6224, 1.0351, -66.8905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.6224, 1.0351, -66.8905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.5271, 1.1066, -62.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.5271, 1.1066, -62.6354], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.0611, 0.9971, -64.2382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.0611, 0.9971, -64.2382], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-46.4638, 1.1235, -63.9664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-46.4638, 1.1235, -63.9664], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-47.9031, 1.0156, -65.5709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-47.9031, 1.0156, -65.5709], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-53.0656, 0.8055, -67.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-53.0656, 0.8055, -67.3723], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-50.7039, 0.8271, -68.6936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-50.7039, 0.8271, -68.6936], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-51.5768, 0.8968, -65.8198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-51.5768, 0.8968, -65.8198], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-49.3191, 0.9168, -67.1492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-49.3191, 0.9168, -67.1492], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.6031, 0.8718, -71.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.6031, 0.8718, -71.3192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.4436, 0.9585, -69.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.4436, 0.9585, -69.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.2042, 0.8498, -70.0021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.2042, 0.8498, -70.0021], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.9308, 0.938, -68.4654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.9308, 0.938, -68.4654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-36.9075, 1.6663, -59.9722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-36.9075, 1.6663, -59.9722], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-38.8021, 1.656, -58.7112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-38.8021, 1.656, -58.7112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-38.1985, 1.5267, -61.6412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-38.1985, 1.5267, -61.6412], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.1785, 1.5147, -60.3615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.1785, 1.5147, -60.3615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.3697, 1.6335, -56.1654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.3697, 1.6335, -56.1654], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.8974, 1.4895, -57.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.8974, 1.4895, -57.7775], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.6264, 1.6449, -57.4414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.6264, 1.6449, -57.4414], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.0825, 1.5021, -59.0735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.0825, 1.5021, -59.0735], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.9833, 1.2254, -61.0195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.9833, 1.2254, -61.0195], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.0088, 1.2408, -62.3436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.0088, 1.2408, -62.3436], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.4376, 1.3533, -59.3978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.4376, 1.3533, -59.3978], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-43.5459, 1.3672, -60.7101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-43.5459, 1.3672, -60.7101], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.7606, 1.2723, -64.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.7606, 1.2723, -64.9637], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-39.4854, 1.3952, -63.3079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-39.4854, 1.3952, -63.3079], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.9281, 1.2568, -63.6564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.9281, 1.2568, -63.6564], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-41.5564, 1.3815, -62.0126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-41.5564, 1.3815, -62.0126], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-31.7896, 2.2858, -53.363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-31.7896, 2.2858, -53.363], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.3891, 2.281, -52.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.3891, 2.281, -52.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-33.063, 2.125, -55.0071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-33.063, 2.125, -55.0071], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-34.7317, 2.119, -53.8176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-34.7317, 2.119, -53.8176], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-36.4379, 2.2673, -49.8584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-36.4379, 2.2673, -49.8584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.9018, 2.1033, -51.4199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.9018, 2.1033, -51.4199], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.9395, 2.2749, -51.0287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.9395, 2.2749, -51.0287], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.3462, 2.1117, -52.619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.3462, 2.1117, -52.619], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-40.8618, 1.7847, -54.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-40.8618, 1.7847, -54.5687], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.185, 1.7949, -55.8214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.185, 1.7949, -55.8214], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.3745, 1.9419, -52.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.3745, 1.9419, -52.9884], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.7598, 1.9512, -54.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.7598, 1.9512, -54.2152], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-35.6201, 1.8135, -58.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-35.6201, 1.8135, -58.3091], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-34.3393, 1.967, -56.6549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-34.3393, 1.967, -56.6549], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-37.4349, 1.8047, -57.0698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-37.4349, 1.8047, -57.0698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-36.0792, 1.9596, -55.4397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-36.0792, 1.9596, -55.4397], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.0575, 0.3204, -84.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.0575, 0.3204, -84.7855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-77.189, 0.3201, -83.6127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-77.189, 0.3201, -83.6127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-74.8471, 0.3201, -85.574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-74.8471, 0.3201, -85.574], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-78.0082, 0.32, -84.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-78.0082, 0.32, -84.4132], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-82.881, 0.32, -81.0834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-82.881, 0.32, -81.0834], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-83.6924, 0.32, -81.915], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-83.6924, 0.32, -81.915], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-80.1009, 0.32, -82.3693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-80.1009, 0.32, -82.3693], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-80.9274, 0.32, -83.1841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-80.9274, 0.32, -83.1841], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-84.3993, 0.32, -83.6825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-84.3993, 0.32, -83.6825], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-82.2482, 0.32, -84.8497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-82.2482, 0.32, -84.8497], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-84.2379, 0.32, -82.7768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-84.2379, 0.32, -82.7768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-81.6432, 0.32, -84.0108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-81.6432, 0.32, -84.0108], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-76.427, 0.32, -87.146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-76.427, 0.32, -87.146], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-75.6369, 0.32, -86.3605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-75.6369, 0.32, -86.3605], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-79.5808, 0.32, -86.0182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-79.5808, 0.32, -86.0182], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-78.8055, 0.32, -85.2149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-78.8055, 0.32, -85.2149], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-70.8505, 0.3236, -81.5519], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-70.8505, 0.3236, -81.5519], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-73.8213, 0.3213, -80.3369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-73.8213, 0.3213, -80.3369], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-71.6728, 0.3223, -82.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-71.6728, 0.3223, -82.3849], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.6881, 0.3208, -81.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.6881, 0.3208, -81.1814], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-79.2001, 0.32, -77.7274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-79.2001, 0.32, -77.7274], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-80.1521, 0.32, -78.5929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-80.1521, 0.32, -78.5929], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-76.5756, 0.3203, -79.0529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-76.5756, 0.3203, -79.0529], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-77.4855, 0.3202, -79.9081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-77.4855, 0.3202, -79.9081], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-81.981, 0.32, -80.2615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-81.981, 0.32, -80.2615], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-79.2376, 0.3201, -81.5575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-79.2376, 0.3201, -81.5575], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-81.0752, 0.32, -79.4345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-81.0752, 0.32, -79.4345], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-78.3693, 0.3201, -80.74], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-78.3693, 0.3201, -80.74], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-73.2685, 0.3208, -83.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-73.2685, 0.3208, -83.9944], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-72.4762, 0.3214, -83.1967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-72.4762, 0.3214, -83.1967], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-76.3627, 0.3203, -82.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-76.3627, 0.3203, -82.8112], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-75.5322, 0.3205, -82.0034], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-75.5322, 0.3205, -82.0034], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-67.1937, 0.3448, -77.846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-67.1937, 0.3448, -77.846], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.9317, 0.3366, -76.5685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.9317, 0.3366, -76.5685], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.1844, 0.3341, -78.8467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.1844, 0.3341, -78.8467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.9883, 0.3278, -77.5867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.9883, 0.3278, -77.5867], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-74.8858, 0.33, -73.8504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-74.8858, 0.33, -73.8504], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-76.0597, 0.3236, -74.8977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-76.0597, 0.3236, -74.8977], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-72.469, 0.3322, -75.2283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-72.469, 0.3322, -75.2283], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-73.5859, 0.3247, -76.2617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-73.5859, 0.3247, -76.2617], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-78.2075, 0.32, -76.8286], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-78.2075, 0.32, -76.8286], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-75.6292, 0.3204, -78.1658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-75.6292, 0.3204, -78.1658], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-77.1638, 0.3207, -75.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-77.1638, 0.3207, -75.8879], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-74.636, 0.3213, -77.2381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-74.636, 0.3213, -77.2381], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.0016, 0.3252, -80.6902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.0016, 0.3252, -80.6902], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-69.1167, 0.3282, -79.7916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-69.1167, 0.3282, -79.7916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-72.9225, 0.3219, -79.4621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-72.9225, 0.3219, -79.4621], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-71.9817, 0.3235, -78.5483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-71.9817, 0.3235, -78.5483], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-62.5172, 0.4584, -73.1788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-62.5172, 0.4584, -73.1788], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-64.9537, 0.4424, -71.832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-64.9537, 0.4424, -71.832], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-63.7928, 0.4183, -74.4445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-63.7928, 0.4183, -74.4445], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-66.3095, 0.4039, -73.1141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-66.3095, 0.4039, -73.1141], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-69.3898, 0.4195, -69.0116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-69.3898, 0.4195, -69.0116], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-70.8818, 0.3849, -70.3159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-70.8818, 0.3849, -70.3159], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.2222, 0.4299, -70.4364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.2222, 0.4299, -70.4364], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-68.6489, 0.3933, -71.7308], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-68.6489, 0.3933, -71.7308], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-73.6326, 0.3415, -72.7383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-73.6326, 0.3415, -72.7383], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-71.2751, 0.3453, -74.1296], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-71.2751, 0.3453, -74.1296], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-72.297, 0.3593, -71.5591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-72.297, 0.3593, -71.5591], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-70.0008, 0.3654, -72.9628], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-70.0008, 0.3654, -72.9628], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-66.1334, 0.3618, -76.7802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-66.1334, 0.3618, -76.7802], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.999, 0.3862, -75.6457], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.999, 0.3862, -75.6457], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-68.8012, 0.3516, -75.4848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-68.8012, 0.3516, -75.4848], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.5929, 0.3738, -74.3325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.5929, 0.3738, -74.3325], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-56.8013, 0.7036, -67.5408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-56.8013, 0.7036, -67.5408], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-58.9022, 0.6877, -66.1488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-58.9022, 0.6877, -66.1488], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-58.3092, 0.6292, -69.0253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-58.3092, 0.6292, -69.0253], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-60.4941, 0.6125, -67.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-60.4941, 0.6125, -67.6403], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.7665, 0.6628, -63.2811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.7665, 0.6628, -63.2811], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.5016, 0.5866, -64.7758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.5016, 0.5866, -64.7758], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-60.8733, 0.6744, -64.7246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-60.8733, 0.6744, -64.7246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-62.5396, 0.5987, -66.2189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-62.5396, 0.5987, -66.2189], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-67.8239, 0.4645, -67.6493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-67.8239, 0.4645, -67.6493], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-65.7237, 0.4762, -69.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-65.7237, 0.4762, -69.0824], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-66.1909, 0.5204, -66.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-66.1909, 0.5204, -66.2346], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-64.1596, 0.5326, -67.6741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-64.1596, 0.5326, -67.6741], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-61.1744, 0.5068, -71.8505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-61.1744, 0.5068, -71.8505], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-59.7694, 0.5636, -70.464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-59.7694, 0.5636, -70.464], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-63.5284, 0.4899, -70.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-63.5284, 0.4899, -70.4888], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-62.0389, 0.5466, -69.0893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-62.0389, 0.5466, -69.0893], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.4525, 1.0919, -61.2829], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.4525, 1.0919, -61.2829], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.2471, 1.0797, -59.9075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.2471, 1.0797, -59.9075], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-52.0691, 0.9811, -62.8796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-52.0691, 0.9811, -62.8796], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-53.934, 0.9681, -61.4927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-53.934, 0.9681, -61.4927], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.5935, 1.0601, -57.1142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.5935, 1.0601, -57.1142], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.3981, 0.9474, -58.6665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.3981, 0.9474, -58.6665], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.9483, 1.0694, -58.5157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.9483, 1.0694, -58.5157], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-55.6967, 0.9571, -60.0857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-55.6967, 0.9571, -60.0857], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-60.9966, 0.7485, -61.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-60.9966, 0.7485, -61.7589], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-59.1703, 0.7595, -63.1988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-59.1703, 0.7595, -63.1988], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-59.2032, 0.8434, -60.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-59.2032, 0.8434, -60.2177], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.4411, 0.8538, -61.6496], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.4411, 0.8538, -61.6496], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-55.2529, 0.787, -66.0168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-55.2529, 0.787, -66.0168], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-53.6724, 0.8795, -64.4603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-53.6724, 0.8795, -64.4603], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-57.2718, 0.772, -64.6218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-57.2718, 0.772, -64.6218], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-55.6123, 0.8655, -63.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-55.6123, 0.8655, -63.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-44.0213, 1.6226, -54.8858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-44.0213, 1.6226, -54.8858], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-45.588, 1.6122, -53.6042], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-45.588, 1.6122, -53.6042], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.6096, 1.4778, -56.4734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.6096, 1.4778, -56.4734], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-47.2263, 1.4673, -55.1624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-47.2263, 1.4673, -55.1624], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-48.5638, 1.5926, -51.0373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-48.5638, 1.5926, -51.0373], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.2822, 1.4483, -52.5275], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.2822, 1.4483, -52.5275], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.0941, 1.6023, -52.3212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.0941, 1.6023, -52.3212], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.7748, 1.4576, -53.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.7748, 1.4576, -53.8465], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-53.8013, 1.1815, -55.5698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-53.8013, 1.1815, -55.5698], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-52.207, 1.1905, -56.9484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-52.207, 1.1905, -56.9484], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-52.0295, 1.3111, -54.0396], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-52.0295, 1.3111, -54.0396], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-50.4807, 1.3201, -55.3904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-50.4807, 1.3201, -55.3904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-48.8319, 1.2119, -59.6783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-48.8319, 1.2119, -59.6783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-47.2154, 1.3407, -58.073], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-47.2154, 1.3407, -58.073], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-50.5618, 1.2004, -58.3196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-50.5618, 1.2004, -58.3196], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-48.8862, 1.3298, -56.7361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-48.8862, 1.3298, -56.7361], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-37.8812, 2.2579, -48.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-37.8812, 2.2579, -48.6998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-39.2823, 2.2433, -47.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-39.2823, 2.2433, -47.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-39.3939, 2.0937, -50.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-39.3939, 2.0937, -50.2289], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.8315, 2.0814, -49.0731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.8315, 2.0814, -49.0731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.069, 2.1751, -46.0746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.069, 2.1751, -46.0746], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.6273, 2.0419, -47.0007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.6273, 2.0419, -47.0007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.6702, 2.2171, -46.7147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.6702, 2.2171, -46.7147], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.2371, 2.0641, -47.9981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.2371, 2.0641, -47.9981], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-46.8783, 1.7433, -49.5726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-46.8783, 1.7433, -49.5726], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-45.4439, 1.7537, -50.8192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-45.4439, 1.7537, -50.8192], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-45.2307, 1.8959, -48.1904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-45.2307, 1.8959, -48.1904], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-43.8256, 1.9091, -49.3641], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-43.8256, 1.9091, -49.3641], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Object3D", - "position": [-42.4571, 1.7743, -53.3165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdeble", - "type": "Mesh", - "position": [-42.4571, 1.7743, -53.3165], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-40.9169, 1.9319, -51.766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-40.9169, 1.9319, -51.766], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Object3D", - "position": [-43.9773, 1.764, -52.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champsdetournesol", - "type": "Mesh", - "position": [-43.9773, 1.764, -52.067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Object3D", - "position": [-42.3939, 1.9211, -50.5553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "champdesoja", - "type": "Mesh", - "position": [-42.3939, 1.9211, -50.5553], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.2011, 1.4661, -73.2713], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.9739, 2.2208, -62.0513], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.1109, 2.2016, -62.5744], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.1109, 2.2016, -62.5744], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-1.2916, 2.1778, -63.1634], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-1.2916, 2.1778, -63.1634], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.5211, 2.1497, -63.8148], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.5211, 2.1497, -63.8148], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.1959, 2.1173, -64.5244], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.1959, 2.1173, -64.5244], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.855, 2.0809, -65.288], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.855, 2.0809, -65.288], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.452, 2.0408, -66.1008], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.452, 2.0408, -66.1008], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.9834, 1.9971, -66.9578], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.9834, 1.9971, -66.9578], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.4458, 1.9501, -67.8538], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.4458, 1.9501, -67.8538], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.8365, 1.9002, -68.7831], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.8365, 1.9002, -68.7831], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.1529, 1.8475, -69.7401], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.1529, 1.8475, -69.7401], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.3931, 1.7925, -70.7189], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.3931, 1.7925, -70.7189], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.5557, 1.7355, -71.7134], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.5557, 1.7355, -71.7134], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.6396, 1.6769, -72.7175], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.6396, 1.6769, -72.7175], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.6444, 1.6169, -73.725], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.6444, 1.6169, -73.725], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.57, 1.556, -74.7298], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.57, 1.556, -74.7298], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.4168, 1.4946, -75.7255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.4168, 1.4946, -75.7255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [3.1859, 1.433, -76.7061], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [3.1859, 1.433, -76.7061], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.8785, 1.3716, -77.6656], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.8785, 1.3716, -77.6656], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.4967, 1.3107, -78.5979], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.4967, 1.3107, -78.5979], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [2.0428, 1.2509, -79.4974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [2.0428, 1.2509, -79.4974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [1.5196, 1.1923, -80.3585], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [1.5196, 1.1923, -80.3585], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.9302, 1.1355, -81.176], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.9302, 1.1355, -81.176], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [0.2784, 1.0806, -81.9447], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [0.2784, 1.0806, -81.9447], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-0.4318, 1.0282, -82.6599], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-0.4318, 1.0282, -82.6599], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-1.1961, 0.9785, -83.3172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-1.1961, 0.9785, -83.3172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.0098, 0.9317, -83.9126], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.0098, 0.9317, -83.9126], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-2.8678, 0.8883, -84.4424], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-2.8678, 0.8883, -84.4424], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-3.7649, 0.8484, -84.9033], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-3.7649, 0.8484, -84.9033], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-4.6955, 0.8123, -85.2925], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-4.6955, 0.8123, -85.2925], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-5.6538, 0.7803, -85.6076], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-5.6538, 0.7803, -85.6076], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-6.634, 0.7525, -85.8466], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-6.634, 0.7525, -85.8466], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-7.6301, 0.7291, -86.0081], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-7.6301, 0.7291, -86.0081], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-8.6358, 0.7102, -86.0911], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-8.6358, 0.7102, -86.0911], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.645, 0.696, -86.095], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-9.645, 0.696, -86.095], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-10.6515, 0.6866, -86.0199], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-10.6515, 0.6866, -86.0199], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-11.649, 0.6819, -85.8662], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-11.649, 0.6819, -85.8662], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-12.6315, 0.6821, -85.6348], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-12.6315, 0.6821, -85.6348], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-13.5928, 0.6871, -85.3272], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-13.5928, 0.6871, -85.3272], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-14.527, 0.6969, -84.9453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-14.527, 0.6969, -84.9453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-15.4284, 0.7115, -84.4914], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-15.4284, 0.7115, -84.4914], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-16.2914, 0.7307, -83.9683], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-16.2914, 0.7307, -83.9683], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.1107, 0.7545, -83.3793], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.1107, 0.7545, -83.3793], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.8812, 0.7826, -82.7279], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.8812, 0.7826, -82.7279], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-18.5982, 0.8149, -82.0183], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-18.5982, 0.8149, -82.0183], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.2573, 0.8513, -81.2547], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.2573, 0.8513, -81.2547], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.8543, 0.8915, -80.4419], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.8543, 0.8915, -80.4419], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.3857, 0.9352, -79.5849], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.3857, 0.9352, -79.5849], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.8481, 0.9822, -78.6889], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.8481, 0.9822, -78.6889], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.2388, 1.0321, -77.7596], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.2388, 1.0321, -77.7596], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.5552, 1.0847, -76.8026], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.5552, 1.0847, -76.8026], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.7954, 1.1397, -75.8238], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.7954, 1.1397, -75.8238], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.958, 1.1967, -74.8293], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.958, 1.1967, -74.8293], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.0419, 1.2554, -73.8252], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.0419, 1.2554, -73.8252], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-22.0467, 1.3153, -72.8177], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-22.0467, 1.3153, -72.8177], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.9723, 1.3762, -71.8129], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.9723, 1.3762, -71.8129], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.8191, 1.4377, -70.8172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.8191, 1.4377, -70.8172], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.5882, 1.4993, -69.8366], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.5882, 1.4993, -69.8366], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-21.2808, 1.5607, -68.8771], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-21.2808, 1.5607, -68.8771], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.899, 1.6215, -67.9448], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.899, 1.6215, -67.9448], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-20.4451, 1.6814, -67.0453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-20.4451, 1.6814, -67.0453], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.9219, 1.74, -66.1842], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.9219, 1.74, -66.1842], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-19.3325, 1.7968, -65.3667], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-19.3325, 1.7968, -65.3667], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-18.6807, 1.8516, -64.598], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-18.6807, 1.8516, -64.598], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.9705, 1.9041, -63.8828], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.9705, 1.9041, -63.8828], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-17.2061, 1.9538, -63.2255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-17.2061, 1.9538, -63.2255], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-16.3925, 2.0005, -62.6301], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-16.3925, 2.0005, -62.6301], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-15.5345, 2.044, -62.1003], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-15.5345, 2.044, -62.1003], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-14.6374, 2.0839, -61.6394], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-14.6374, 2.0839, -61.6394], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-13.7068, 2.1199, -61.2502], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-13.7068, 2.1199, -61.2502], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-12.7485, 2.152, -60.9351], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-12.7485, 2.152, -60.9351], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-11.7683, 2.1798, -60.6961], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-11.7683, 2.1798, -60.6961], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-10.7722, 2.2032, -60.5346], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-10.7722, 2.2032, -60.5346], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-9.7665, 2.222, -60.4516], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-9.7665, 2.222, -60.4516], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Object3D", - "position": [-8.7573, 2.2363, -60.4477], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buissons", - "type": "Mesh", - "position": [-8.7573, 2.2363, -60.4477], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buisson", - "type": "Object3D", - "position": [-3.8753, 2.2353, -61.5974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "buisson", - "type": "Mesh", - "position": [-3.8753, 2.2353, -61.5974], - "rotation": [0, -1.3425, 0.0611], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [15.5934, 12.2303, -55.7924], - "rotation": [0, -1.3459, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [23.6042, 12.2056, -54.3256], - "rotation": [3.1416, -1.2064, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [25.1521, 4.5721, -52.7184], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [23.7445, 5.1185, -47.6378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [23.7445, 5.1185, -47.6378], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [22.4669, 5.6433, -42.8696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [22.4669, 5.6433, -42.8696], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [21.1892, 6.1667, -38.1014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [21.1892, 6.1667, -38.1014], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [19.9116, 6.6736, -33.3332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [19.9116, 6.6736, -33.3332], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.634, 7.1481, -28.565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.634, 7.1481, -28.565], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.0796, 4.4272, -56.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.0796, 4.4272, -56.0501], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.5428, 5.069, -49.8067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.5428, 5.069, -49.8067], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [7.875, 5.6433, -44.4033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [7.875, 5.6433, -44.4033], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.1334, 6.1667, -39.4736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.1334, 6.1667, -39.4736], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.3917, 6.6736, -34.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.3917, 6.6736, -34.544], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.6501, 7.1481, -29.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.6501, 7.1481, -29.6144], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.7733, 4.4663, -49.5524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.7733, 4.4663, -49.5524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-13.2497, 5.0877, -44.0609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-13.2497, 5.0877, -44.0609], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.9609, 5.6433, -39.3562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.9609, 5.6433, -39.3562], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-8.7198, 6.1667, -34.9578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-8.7198, 6.1667, -34.9578], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-6.4788, 6.6736, -30.5595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-6.4788, 6.6736, -30.5595], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-4.2377, 7.1481, -26.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-4.2377, 7.1481, -26.1611], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-31.2557, 4.4246, -38.8524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-31.2557, 4.4246, -38.8524], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-26.7041, 5.0683, -34.5246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-26.7041, 5.0683, -34.5246], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-22.831, 5.6433, -30.7321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-22.831, 5.6433, -30.7321], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-19.3404, 6.1667, -27.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-19.3404, 6.1667, -27.2415], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.8499, 6.6736, -23.751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.8499, 6.6736, -23.751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-12.3593, 7.1481, -20.2604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-12.3593, 7.1481, -20.2604], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "fermeverticale", - "type": "Object3D", - "position": [-9.0708, 6.2455, -73.4499], - "rotation": [3.1416, -1.1848, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "fermeverticale", - "type": "Mesh", - "position": [-9.0708, 6.2455, -73.4499], - "rotation": [3.1416, -1.1848, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_energie", - "type": "Object3D", - "position": [-27.5945, 21.397, 47.1257], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneaux_solaires", - "type": "Object3D", - "position": [-17.1413, 22.0484, 63.5207], - "rotation": [-3.1416, -0.9294, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-10.9609, 11.4533, 44.2127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-10.9609, 11.4533, 44.2127], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-13.3989, 10.8827, 49.007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-13.3989, 10.8827, 49.007], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-16.1713, 10.2534, 54.4731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-16.1713, 10.2534, 54.4731], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-19.2382, 9.5971, 60.6433], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-19.2382, 9.5971, 60.6433], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-22.68, 8.9223, 67.968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-22.68, 8.9223, 67.968], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-15.2119, 11.4533, 41.7584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-15.2119, 11.4533, 41.7584], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-18.0794, 10.8871, 46.2581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-18.0794, 10.8871, 46.2581], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-21.3082, 10.2619, 51.416], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-21.3082, 10.2619, 51.416], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-25.0016, 9.6041, 57.238], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-25.0016, 9.6041, 57.238], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-29.2323, 8.9386, 63.948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-29.2323, 8.9386, 63.948], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-31.6073, 11.4388, 23.7113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-31.6073, 11.4388, 23.7113], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-36.9334, 10.8263, 25.9768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-36.9334, 10.8263, 25.9768], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-43.5709, 10.1107, 28.4525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-43.5709, 10.1107, 28.4525], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-51.5494, 9.3386, 31.2783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-51.5494, 9.3386, 31.2783], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-60.7835, 8.5942, 34.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-60.7835, 8.5942, 34.4905], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-33.8988, 11.4093, 19.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-33.8988, 11.4093, 19.2129], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-39.9516, 10.7463, 20.9368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-39.9516, 10.7463, 20.9368], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-47.3876, 9.9812, 22.8252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-47.3876, 9.9812, 22.8252], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-56.5479, 9.1491, 25.0751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-56.5479, 9.1491, 25.0751], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Object3D", - "position": [-67.31, 8.3628, 27.6916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneausolaire", - "type": "Mesh", - "position": [-67.31, 8.3628, 27.6916], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "éoliennes", - "type": "Object3D", - "position": [-59.7973, 14.9524, 67.6246], - "rotation": [-3.0892, -0.5648, 3.1086], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-101.7219, 9.64, 35.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-101.7219, 9.64, 35.5855], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-96.3411, 9.6638, 34.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-96.3411, 9.6638, 34.2207], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-88.6595, 9.8136, 32.5998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-88.6595, 9.8136, 32.5998], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-78.6098, 10.179, 30.3728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-78.6098, 10.179, 30.3728], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-83.6124, 9.7039, 56.7266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-83.6124, 9.7039, 56.7266], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-77.4056, 9.8765, 53.0477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-77.4056, 9.8765, 53.0477], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-69.7499, 10.1964, 48.9467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-69.7499, 10.1964, 48.9467], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-54.0653, 9.7911, 84.0645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-54.0653, 9.7911, 84.0645], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-50.4377, 9.9939, 78.6954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-50.4377, 9.9939, 78.6954], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-46.0413, 10.3125, 72.4522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-46.0413, 10.3125, 72.4522], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-37.3404, 9.6853, 101.322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-37.3404, 9.6853, 101.322], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-33.848, 9.8609, 94.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-33.848, 9.8609, 94.2003], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-30.1569, 10.203, 85.6015], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-30.1569, 10.203, 85.6015], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Object3D", - "position": [-26.4013, 10.7082, 76.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "eoliennes", - "type": "Mesh", - "position": [-26.4013, 10.7082, 76.51], - "rotation": [0, 0, 0], - "scale": [1, 1, 1] - }, - { - "name": "generateur", - "type": "Object3D", - "position": [-42.8812, 6.8698, 49.3909], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "generateur", - "type": "Mesh", - "position": [-42.8812, 6.8698, 49.3909], - "rotation": [-3.1416, -1.1286, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_fabrik", - "type": "Object3D", - "position": [46.6166, 8.9438, 48.0178], - "rotation": [0, -1.5519, 0], - "scale": [1, 1, 1] - }, - { - "name": "lafabrik", - "type": "Object3D", - "position": [59.4973, 6.2746, 64.6354], - "rotation": [-3.1416, -0.7309, -3.1416], - "scale": [1, 2, 1] - }, - { - "name": "lafabrik", - "type": "Mesh", - "position": [59.4973, 6.2746, 64.6354], - "rotation": [-3.1416, -0.7309, -3.1416], - "scale": [1, 2, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [41.2436, 4.9268, 85.9236], - "rotation": [-3.1416, -0.7879, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [43.9828, 3.8964, 80.0347], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [43.9828, 3.8964, 80.0347], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [38.9058, 5.8659, 84.9543], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [38.9058, 5.8659, 84.9543], - "rotation": [3.0968, -0.7874, 3.1104], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [83.3002, 3.6735, 55.0352], - "rotation": [-3.1101, -0.35, 3.1367], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [83.3002, 3.6735, 55.0352], - "rotation": [-3.1101, -0.35, 3.1367], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Object3D", - "position": [34.7889, 5.1067, 66.1299], - "rotation": [-3.1416, -1.0563, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "maison1", - "type": "Mesh", - "position": [34.7889, 5.1067, 66.1299], - "rotation": [-3.1416, -1.0563, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [68.0365, 12.8264, 90.8185], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [72.189, 3.1922, 85.8558], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [72.189, 3.1922, 85.8558], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [66.1929, 5.1605, 89.6013], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [66.1929, 5.1605, 89.6013], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble1", - "type": "Object3D", - "position": [61.7855, 15.3193, 38.8586], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Object3D", - "position": [65.9379, 5.6851, 33.8958], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_2", - "type": "Mesh", - "position": [65.9379, 5.6851, 33.8958], - "rotation": [-3.1416, -0.5678, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Object3D", - "position": [59.9418, 7.6534, 37.6414], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "immeuble_1", - "type": "Mesh", - "position": [59.9418, 7.6534, 37.6414], - "rotation": [-3.1416, -0.5678, -3.1416], - "scale": [1, 1, 1] - }, - { - "name": "zone_ecole", - "type": "Object3D", - "position": [10.1419, 5.8757, 2.3941], - "rotation": [3.1416, -1.2697, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "panneauaffichage", - "type": "Object3D", - "position": [8.2972, 8.0037, 10.0366], - "rotation": [0, -0.9992, 0], - "scale": [1, 1, 1] - }, - { - "name": "panneauxquartier", - "type": "Mesh", - "position": [8.2972, 8.0037, 10.0366], - "rotation": [0, -0.9992, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [10.5089, 7.6513, 2.9349], - "rotation": [0, -1.0353, -0.0055], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [16.8482, 7.511, 28.974], - "rotation": [-3.1362, -0.2388, -3.1387], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [16.8482, 7.511, 28.974], - "rotation": [-3.1362, -0.2388, -3.1387], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [8.6632, 7.5306, 29.671], - "rotation": [-3.1371, 0.0689, -3.1388], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [8.6632, 7.5306, 29.671], - "rotation": [-3.1371, 0.0689, -3.1388], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [0.6516, 7.5615, 27.8561], - "rotation": [-3.138, 0.3766, -3.1386], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [0.6516, 7.5615, 27.8561], - "rotation": [-3.138, 0.3766, -3.1386], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-6.4338, 7.6009, 23.6998], - "rotation": [-3.1392, 0.6844, -3.138], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-6.4338, 7.6009, 23.6998], - "rotation": [-3.1392, 0.6844, -3.138], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-11.9275, 7.645, 17.5926], - "rotation": [-3.1412, 0.9921, -3.1365], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-11.9275, 7.645, 17.5926], - "rotation": [-3.1412, 0.9921, -3.1365], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-15.3132, 7.6897, 10.1083], - "rotation": [3.1362, 1.2998, -3.1312], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-15.3132, 7.6897, 10.1083], - "rotation": [3.1362, 1.2998, -3.1312], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-16.2729, 7.7307, 1.95], - "rotation": [0.0805, 1.5339, -0.0758], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-16.2729, 7.7307, 1.95], - "rotation": [0.0805, 1.5339, -0.0758], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-14.7164, 7.7644, -6.1157], - "rotation": [0.0125, 1.2263, -0.0083], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-14.7164, 7.7644, -6.1157], - "rotation": [0.0125, 1.2263, -0.0083], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-10.7899, 7.7874, -13.3312], - "rotation": [0.0084, 0.9186, -0.0046], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-10.7899, 7.7874, -13.3312], - "rotation": [0.0084, 0.9186, -0.0046], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-4.8623, 7.7976, -19.0184], - "rotation": [0.0067, 0.6108, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-4.8623, 7.7976, -19.0184], - "rotation": [0.0067, 0.6108, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [2.5094, 7.794, -22.643], - "rotation": [0.0056, 0.3031, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [2.5094, 7.794, -22.643], - "rotation": [0.0056, 0.3031, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [10.6327, 7.7771, -23.8645], - "rotation": [0.0047, -0.0046, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [10.6327, 7.7771, -23.8645], - "rotation": [0.0047, -0.0046, -0.0028], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.7443, 7.7484, -22.5682], - "rotation": [0.0038, -0.3123, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.7443, 7.7484, -22.5682], - "rotation": [0.0038, -0.3123, -0.0029], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.0822, 7.7105, -18.8758], - "rotation": [0.0027, -0.6201, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.0822, 7.7105, -18.8758], - "rotation": [0.0027, -0.6201, -0.0034], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [31.957, 7.667, -13.1342], - "rotation": [0.001, -0.9278, -0.0047], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [31.957, 7.667, -13.1342], - "rotation": [0.001, -0.9278, -0.0047], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [35.8167, 7.6221, -5.8829], - "rotation": [-0.0033, -1.2355, -0.0085], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [35.8167, 7.6221, -5.8829], - "rotation": [-0.0033, -1.2355, -0.0085], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [37.2986, 7.58, 2.1968], - "rotation": [-0.0964, -1.5431, -0.1011], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [37.2986, 7.58, 2.1968], - "rotation": [-0.0964, -1.5431, -0.1011], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [36.2636, 7.5445, 10.3459], - "rotation": [-3.1272, -1.2906, -3.1315], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [36.2636, 7.5445, 10.3459], - "rotation": [-3.1272, -1.2906, -3.1315], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [32.8088, 7.5191, 17.7987], - "rotation": [-3.1327, -0.9829, -3.1366], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [32.8088, 7.5191, 17.7987], - "rotation": [-3.1327, -0.9829, -3.1366], - "scale": [1, 1, 1] - }, - { - "name": "arbres", - "type": "Object3D", - "position": [10.5369, 8.853, 2.8109], - "rotation": [0, -1.068, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [14.4287, 8.133, 21.4285], - "rotation": [3.1416, -0.2061, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [14.4287, 8.133, 21.4285], - "rotation": [3.1416, -0.2061, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [8.6067, 8.133, 21.7327], - "rotation": [3.1416, 0.1017, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [8.6067, 8.133, 21.7327], - "rotation": [3.1416, 0.1017, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [2.966, 8.133, 20.2592], - "rotation": [3.1416, 0.4094, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [2.966, 8.133, 20.2592], - "rotation": [3.1416, 0.4094, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-1.9633, 8.133, 17.1464], - "rotation": [3.1416, 0.7171, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-1.9633, 8.133, 17.1464], - "rotation": [3.1416, 0.7171, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-5.7183, 8.133, 12.6867], - "rotation": [3.1416, 1.0248, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-5.7183, 8.133, 12.6867], - "rotation": [3.1416, 1.0248, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-7.946, 8.133, 7.2992], - "rotation": [-3.1416, 1.3326, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-7.946, 8.133, 7.2992], - "rotation": [-3.1416, 1.3326, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-8.4372, 8.133, 1.4899], - "rotation": [0, 1.5013, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-8.4372, 8.133, 1.4899], - "rotation": [0, 1.5013, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [-7.1458, 8.133, -4.1952], - "rotation": [0, 1.1936, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [-7.1458, 8.133, -4.1952], - "rotation": [0, 1.1936, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [-4.193, 8.133, -9.222], - "rotation": [0, 0.8858, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [-4.193, 8.133, -9.222], - "rotation": [0, 0.8858, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [0.1437, 8.133, -13.1184], - "rotation": [0, 0.5781, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [0.1437, 8.133, -13.1184], - "rotation": [0, 0.5781, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [5.4568, 8.133, -15.5181], - "rotation": [0, 0.2704, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [5.4568, 8.133, -15.5181], - "rotation": [0, 0.2704, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [11.2472, 8.133, -16.1958], - "rotation": [0, -0.0374, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [11.2472, 8.133, -16.1958], - "rotation": [0, -0.0374, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [16.9709, 8.133, -15.0878], - "rotation": [0, -0.3451, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [16.9709, 8.133, -15.0878], - "rotation": [0, -0.3451, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.0901, 8.133, -12.2982], - "rotation": [0, -0.6528, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.0901, 8.133, -12.2982], - "rotation": [0, -0.6528, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.1238, 8.133, -8.089], - "rotation": [0, -0.9605, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.1238, 8.133, -8.089], - "rotation": [0, -0.9605, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [28.6931, 8.133, -2.8557], - "rotation": [0, -1.2683, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [28.6931, 8.133, -2.8557], - "rotation": [0, -1.2683, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.5566, 8.133, 2.9099], - "rotation": [3.1416, -1.5656, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.5566, 8.133, 2.9099], - "rotation": [3.1416, -1.5656, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [28.6332, 8.133, 8.6663], - "rotation": [3.1416, -1.2579, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [28.6332, 8.133, 8.6663], - "rotation": [3.1416, -1.2579, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [26.0095, 8.133, 13.8725], - "rotation": [3.1416, -0.9501, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [26.0095, 8.133, 13.8725], - "rotation": [3.1416, -0.9501, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbres-école", - "type": "Object3D", - "position": [18.8994, 5.8757, 33.6246], - "rotation": [3.1416, -1.2697, 3.1416], - "scale": [1, 1, 1] - }, - { - "name": "arbres_1", - "type": "Object3D", - "position": [5.7855, 5.9004, 30.7708], - "rotation": [0, -1.0401, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [19.0257, 8.3175, 11.2279], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [19.0257, 8.3175, 11.2279], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.5162, 8.1211, 14.7185], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.5162, 8.1211, 14.7185], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [26.0068, 7.8363, 18.2091], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [26.0068, 7.8363, 18.2091], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [29.4973, 7.4741, 21.6996], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [29.4973, 7.4741, 21.6996], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [32.9879, 7.0481, 25.1902], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [32.9879, 7.0481, 25.1902], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [15.902, 8.3175, 13.4974], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [15.902, 8.3175, 13.4974], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [18.143, 8.1211, 17.8958], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [18.143, 8.1211, 17.8958], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Object3D", - "position": [20.3841, 7.8363, 22.2942], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "arbre", - "type": "Mesh", - "position": [20.3841, 7.8363, 22.2942], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [22.6252, 7.4741, 26.6925], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [22.6252, 7.4741, 26.6925], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Object3D", - "position": [24.8663, 7.0481, 31.0909], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "sapin", - "type": "Mesh", - "position": [24.8663, 7.0481, 31.0909], - "rotation": [0, -0.4189, 0], - "scale": [1, 1, 1] - }, - { - "name": "lecole", - "type": "Object3D", - "position": [10.1128, 12.1274, 2.4945], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [-0.3102, 11.6246, 9.1989], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [-0.3102, 11.6246, 9.1989], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [20.5307, 11.6246, -4.2067], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [20.5307, 11.6246, -4.2067], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Object3D", - "position": [10.1178, 13.133, 2.4913], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - }, - { - "name": "bati-ecole", - "type": "Mesh", - "position": [10.1178, 13.133, 2.4913], - "rotation": [0, -0.9992, 0], - "scale": [1, 2, 1] - } -] +{ + "name": "Scene", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "terrain", + "type": "Mesh", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "blocking", + "type": "Object3D", + "role": "group", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "vegetation", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Object3D", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [79.3065, 3.69, 15.1507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [82.795, 3.69, 16.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.982, 6.565, 30.9555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [37.8635, 6.565, 29.3621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [17.95, 4.1144, 63.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.2656, 4.1144, 64.4037], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-40.4325, 5.0887, -8.7557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-41.8874, 5.0887, -7.1572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.824, 3.2927, 67.6624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [40.3303, 3.2927, 67.5174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-98.4532, 1.4956, -0.1679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-97.6134, 1.4956, 2.2996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [88.9324, 2.6236, 16.4933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [88.8868, 2.6236, 18.784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "arbre", + "type": "Mesh", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Object3D", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6722, 2.1095, 90.6089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [28.2738, 2.1095, 90.0912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [4.4093, 2.8308, 79.0566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [3.1305, 2.8308, 82.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-23.4508, 6.2418, -20.9354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-21.4351, 6.2418, -21.348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "sapin", + "type": "Mesh", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "agriculture", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champs", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "ferme", + "type": "Object3D", + "role": "group", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1], + "children": [ + { + "name": "buisson", + "type": "Mesh", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "fermeverticale", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "fermeverticale", + "type": "Object3D", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "fermeverticale", + "type": "Mesh", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "tuyauxlac", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "tuyauxlac", + "type": "Object3D", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1], + "children": [ + { + "name": "tuyauxlac", + "type": "Mesh", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "residence", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "ebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "ebike", + "type": "Object3D", + "position": [42.2399, 4.5484, 34.6468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "zone1_residence", + "type": "Object3D", + "role": "group", + "position": [-51.3574, 8.2405, -13.9443], + "rotation": [-3.1416, -1.1003, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [-33.4517, 8.4233, -14.3777], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-61.1478, 6.0441, 5.1504], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-36.6903, 8.3502, 9.731], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-68.7111, 4.651, -50.5238], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-100.9035, 4.19, -31.7676], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-79.1874, 4.7345, -23.9129], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-107.9151, 4.19, 1.755], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "zone2_residence", + "type": "Object3D", + "role": "group", + "position": [7.1718, 9.4131, 68.5991], + "rotation": [3.1416, 0.1131, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8967, 4.1992, 114.363], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [8.3955, 4.7997, 93.7519], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8601, 7.8395, 54.7639], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Mesh", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Object3D", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "zone3_residence", + "type": "Object3D", + "role": "group", + "position": [69.3487, -0.4334, -18.4482], + "rotation": [3.1416, 1.1456, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [55.6272, 8.4233, 14.5658], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [77.6876, 6.2066, 19.0807], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [35.8706, 8.4233, -36.9019], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [79.3194, 6.2278, -2.0972], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [96.5106, 4.567, -41.6063], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [72.7641, 6.4192, -21.5489], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [56.6478, 8.4233, -4.9078], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [110.4581, 4.4084, -16.153], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Object3D", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "parcebike", + "type": "Object3D", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "parcebike", + "type": "Mesh", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "boiteauxlettres", + "type": "Mesh", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "energie", + "type": "Object3D", + "role": "group", + "position": [-27.5945, 21.397, 47.1257], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Object3D", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ], + "id": "repair:pylon" + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "pylone", + "type": "Object3D", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1], + "children": [ + { + "name": "pylone", + "type": "Mesh", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Object3D", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "eolienne", + "type": "Object3D", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "eolienne", + "type": "Mesh", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "generateur", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "generateur", + "type": "Object3D", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "generateur", + "type": "Mesh", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "direction", + "type": "Object3D", + "role": "group", + "position": [9.3468, 7.1426, -1.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Object3D", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Mesh", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneauclassique", + "type": "Object3D", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauclassique", + "type": "Mesh", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Object3D", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "panneaufleche", + "type": "Object3D", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneaufleche", + "type": "Mesh", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "panneauaffichage", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauaffichage", + "type": "Object3D", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "panneauaffichage", + "type": "Mesh", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "lafabrik", + "type": "Object3D", + "role": "group", + "position": [46.6166, 8.9438, 48.0178], + "rotation": [0, -1.5519, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble1", + "type": "Object3D", + "position": [41.2436, 4.9268, 85.9236], + "rotation": [-3.1416, -0.7879, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [68.0365, 12.8264, 90.8185], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [61.7855, 15.3193, 38.8586], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "immeuble_2", + "type": "Mesh", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Mesh", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + }, + { + "name": "lafabrik", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "lafabrik", + "type": "Object3D", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1], + "children": [ + { + "name": "lafabrik", + "type": "Mesh", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + } + ] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "role": "group", + "position": [0, 0, 0], + "rotation": [0, 0, 0], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Object3D", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + } + ] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1], + "children": [ + { + "name": "maison1", + "type": "Mesh", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + } + ] + } + ] + } + ] + }, + { + "name": "ecole", + "type": "Object3D", + "position": [10.1419, 5.8757, 2.3941], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1], + "children": [] + } + ] + } + ] +} diff --git a/public/map_raw.json b/public/map_raw.json new file mode 100644 index 0000000..651f465 --- /dev/null +++ b/public/map_raw.json @@ -0,0 +1,35051 @@ +[ + { + "name": "Scene", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "ROOT", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "terrain", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "terrain", + "type": "Mesh", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "Neutre", + "type": "Object3D", + "position": [10.3293, 0, 2.4283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneaux", + "type": "Object3D", + "position": [9.3468, 7.1426, -1.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneauxcentre", + "type": "Mesh", + "position": [-35.2895, 3.8515, 40.1864], + "rotation": [-3.0988, 0.9934, -3.1367], + "scale": [1, 1, 1] + }, + { + "name": "panneauxdomaine", + "type": "Mesh", + "position": [-2.4347, 3.7803, -56.1439], + "rotation": [0.0474, 0.2148, -0.0027], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirresidences2", + "type": "Mesh", + "position": [30.1743, 7.1944, -13.5781], + "rotation": [0.0374, -1.297, -0.0099], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirdomaine", + "type": "Mesh", + "position": [8.1032, 7.1918, -23.0004], + "rotation": [0.0462, -0.2443, -0.0027], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirresidences1", + "type": "Mesh", + "position": [-10.1125, 7.2582, -11.4511], + "rotation": [0.0478, 0.3436, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "panneaudircentre", + "type": "Mesh", + "position": [-10.5207, 7.0874, 19.3819], + "rotation": [-3.1416, 1.5139, -3.0947], + "scale": [1, 1, 1] + }, + { + "name": "panneaudirfabrik", + "type": "Mesh", + "position": [29.0899, 6.9811, 23.4988], + "rotation": [3.1416, -0.8852, 3.1253], + "scale": [1, 1, 1] + }, + { + "name": "ebike", + "type": "Object3D", + "position": [42.2399, 4.5484, 34.6468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [67.7458, 1.4821, 63.7819], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [67.1206, 1.4887, 64.3699], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [66.5341, 1.4946, 64.9282], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [65.1742, 1.5067, 66.1592], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [65.8844, 1.5007, 65.5434], + "rotation": [0, 0.7397, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [19.4416, 7.5898, 3.4208], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [18.7164, 7.5964, 3.88], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [18.0349, 7.6023, 4.3172], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [16.4667, 7.6144, 5.2687], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "parcebike", + "type": "Mesh", + "position": [17.2806, 7.6084, 4.7984], + "rotation": [0, 0.5494, 0], + "scale": [1, 1, 1] + }, + { + "name": "boiteauxlettres", + "type": "Object3D", + "position": [49.1596, 2.525, 28.8545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-104.1204, 0.5129, -0.7662], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-96.8377, 0.5, -31.1025], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-79.3857, 0.5263, -61.4399], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-64.0582, 1.0758, -52.226], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-81.277, 1.1055, 1.3358], + "rotation": [3.1416, -1.3473, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-75.2198, 1.2104, -23.1038], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-56.9327, 2.6898, 6.1248], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-51.7473, 2.9535, -14.5455], + "rotation": [-3.1416, -0.6184, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-39.7211, 3.1375, -34.9252], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-29.0775, 5.161, -14.5387], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [-31.8927, 5.1813, 8.6532], + "rotation": [3.1416, -1.155, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [58.2739, 3.6477, 33.7065], + "rotation": [-3.1416, 0.9528, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [56.1107, 4.5042, 20.0032], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [14.1159, 3.7557, 58.4794], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [75.8551, 2.7785, 12.4052], + "rotation": [-3.1416, 0.6847, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [106.2764, 0.8527, -15.8142], + "rotation": [-3.1416, -0.3611, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [92.1561, 1.1165, -37.2395], + "rotation": [-3.1416, 0.2021, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [82.3515, 0.9993, -57.4067], + "rotation": [-3.1416, -0.22, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [50.4536, 2.6897, -51.7015], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [31.9228, 5.1089, -35.2384], + "rotation": [3.1416, -1.412, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [45.5694, 5.1282, -22.591], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [52.7216, 5.1705, -3.3827], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [77.4367, 2.7142, 2.2734], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [69.3931, 3.1282, -18.1737], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [61.7688, 2.9974, -35.5676], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [102.9262, 0.9745, 20.2838], + "rotation": [-3.1416, -0.514, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [9.2361, 0.5, 118.264], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [10.4371, 0.9333, 97.6797], + "rotation": [3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [9.7363, 1.8881, 79.8485], + "rotation": [-3.1416, -1.1321, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [80.0836, 1.3999, 51.7373], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [66.0075, 0.7927, 84.7143], + "rotation": [-3.1416, 1.1496, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [34.0013, 1.4556, 83.4348], + "rotation": [0, 0.4327, 0], + "scale": [1, 1, 1] + }, + { + "name": "boitesauxlettres", + "type": "Mesh", + "position": [35.7007, 2.9935, 61.236], + "rotation": [0, -0.54, 0], + "scale": [1, 1, 1] + }, + { + "name": "pylones", + "type": "Object3D", + "position": [-21.7782, 7.0853, 32.3996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pylones", + "type": "Object3D", + "position": [-24.0279, 6.5492, 29.7542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-56.8838, 3.0005, -47.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-95.094, 2.1426, -0.5771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-100.3223, 2.0014, -22.2644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-82.0862, 2.0834, -53.515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-70.774, 2.8875, -24.7895], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-73.9666, 2.9857, 4.5429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-52.106, 4.631, -1.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-26.5737, 7.0928, 14.3374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-36.6039, 5.3667, -26.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-30.0515, 6.8227, -6.5629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [102.1244, 2.5464, -10.5003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [78.9167, 2.9962, -45.4231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [54.714, 4.5794, -42.3575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [64.9061, 4.8047, -24.1268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [26.9053, 7.2177, -31.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.5292, 7.1082, -2.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [67.6376, 5.1366, 4.9956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [102.3214, 2.5537, 12.914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [72.7401, 2.3107, 79.1138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.1178, 3.3021, 71.6993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [26.5268, 2.1431, 105.3955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [17.7069, 3.0989, 84.2328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [65.4447, 3.6966, 50.8731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [48.0501, 6.5234, 25.4575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [40.2634, 5.1191, 51.6028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [21.7171, 5.7394, 52.7445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [27.0898, 7.1369, 36.8596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-12.8668, 7.5342, 28.3256], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-18.1869, 6.8326, 32.7022], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-26.9046, 5.5753, 40.7744], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-22.7586, 6.1779, 36.8574], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-17.5018, 7.4685, 23.8001], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-22.8219, 6.7669, 28.1767], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-31.5396, 5.5095, 36.2489], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "pyloneelectrique", + "type": "Mesh", + "position": [-27.3936, 6.1122, 32.3319], + "rotation": [0, 0.0027, 0.0819], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-69.8845, 2.3577, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-69.8845, 2.0453, -40.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [121.276, 1.73, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [121.276, 1.5021, 33.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.6561, 2.5066, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [94.6561, 2.1751, 26.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [79.3065, 3.69, 15.1507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [82.795, 3.69, 16.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-86.0245, 1.9076, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-86.0245, 1.6584, -35.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.982, 6.7216, 30.9555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [37.8635, 6.565, 29.3621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.6205, 5.3697, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.6205, 4.8536, 51.2508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.6785, 2.0178, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [43.6785, 1.7013, 96.2199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.6178, 2.6552, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-74.6178, 2.3115, 9.5979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-75.4654, 2.5559, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-75.4654, 2.2701, 16.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-74.2835, 2.5536, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-74.2835, 2.2678, 22.7387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [86.629, 2.7422, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [86.629, 2.4407, -31.3242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-63.3935, 3.1961, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-63.3935, 2.9078, -18.2155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.481, 4.0343, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [0.481, 3.6547, 67.7846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [36.4304, 6.9609, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [36.4304, 6.718, -24.2903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.4929, 1.8153, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [116.4929, 1.427, 13.289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [97.4749, 1.7989, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [97.4749, 1.5226, 65.6281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [62.2092, 2.0778, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [64.5595, 1.8863, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [124.3065, 1.73, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [124.3065, 1.4655, -13.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.65, 3.4716, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [78.65, 3.0954, 27.1949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [76.6262, 3.5066, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [76.6262, 3.1873, 31.3087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.0891, 1.7376, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-100.0891, 1.445, 11.5984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [40.8805, 6.8406, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [40.8805, 6.5976, -21.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [51.1326, 4.9082, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [51.1326, 4.3922, 42.1663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [107.585, 2.0754, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [107.585, 1.7648, -9.2064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-94.7678, 1.8289, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-94.7678, 1.5849, -16.9536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-71.703, 2.1745, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [116.9822, 1.7625, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [116.9822, 1.4197, 26.4244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.4407, 4.6971, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.4407, 4.181, 59.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [103.8144, 2.238, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [103.8144, 1.9274, -2.979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [42.8316, 4.7811, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [42.8316, 4.4314, -45.8639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [94.3453, 1.755, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [94.3453, 1.416, 74.5333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.072, 2.6003, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [50.072, 2.2583, 78.7082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [48.1475, 2.0144, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [48.1475, 1.6979, 94.4155], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [33.6819, 6.0748, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [33.6819, 5.5588, 41.9355], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [55.485, 6.0505, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-103.5232, 1.7593, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-103.5232, 1.4716, -4.9283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [45.7062, 4.8094, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [45.7062, 4.4597, -43.4591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-39.193, 5.1507, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-39.193, 4.8052, -20.5904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.2481, 3.6042, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [14.2481, 3.2246, 73.495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.8931, 1.73, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.8931, 1.4202, 122.7132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [65.0769, 4.874, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [65.0769, 4.5437, -14.5488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [14.4329, 3.9184, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [14.4329, 3.5387, 69.6626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [92.08, 2.249, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [92.08, 1.944, 47.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [82.0165, 2.4617, 54.6852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [15.8967, 2.1664, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [15.8967, 1.8369, 97.556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [87.1983, 3.1685, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [87.1983, 2.8744, 4.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.4859, 4.8279, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [61.4859, 4.5221, -24.328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [93.3467, 2.177, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [93.3467, 1.8721, 48.8426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-62.9162, 3.2697, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-62.9162, 2.9577, -15.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-116.2891, 1.73, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-116.2891, 1.4446, 9.5757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [59.1794, 2.5978, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [59.1794, 2.2557, 73.349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-114.7275, 1.73, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-114.7275, 1.424, -9.0295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [64.0578, 5.175, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [64.0578, 4.8663, 10.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.4135, 2.1324, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [106.4135, 1.8218, 4.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [50.5661, 6.4452, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [69.9845, 1.914, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [61.8189, 5.3955, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [61.8189, 5.0867, 11.2704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-89.9371, 1.9245, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-89.9371, 1.6387, 24.3503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [106.5106, 1.7455, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [106.5106, 1.4693, 58.4254], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [85.5663, 1.7985, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [85.5663, 1.4203, 79.0421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [53.7555, 6.0424, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-105.7379, 1.73, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-105.7379, 1.4476, -55.9911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [98.6825, 2.0477, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [98.6825, 1.7427, 45.6252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [80.8168, 3.5714, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [80.8168, 3.2385, -9.1306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [74.0452, 2.6362, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [74.0452, 2.309, 59.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-54.4886, 3.0828, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-54.4886, 2.6773, -41.0096], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-124.3983, 1.73, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-124.3983, 1.4256, -13.1213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-91.0013, 1.7467, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-91.0013, 1.4474, -47.9181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-93.3362, 1.7383, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-93.3362, 1.3615, -47.5484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-106.7784, 1.73, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-106.7784, 1.4278, -38.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-95.473, 1.8589, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-95.473, 1.5663, 7.6623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.9067, 2.7479, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [63.9067, 2.4019, -61.4631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [119.0658, 1.73, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [119.0658, 1.5021, 36.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [63.6675, 1.73, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [63.6675, 1.5126, 105.888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-52.4236, 3.6593, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-52.4236, 3.3925, -29.3635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-100.203, 1.7844, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-100.203, 1.532, 4.1061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [9.1464, 2.265, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.4888, 6.8456, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-26.4888, 6.5968, -8.9158], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.739, 1.73, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [35.739, 1.4453, 114.0022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [78.1002, 2.121, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [78.1002, 1.7427, 71.1874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-51.6422, 2.52, -12.2406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [62.2092, 0.3478, 85.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.5595, 0.1563, 90.9259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-71.703, 0.4445, -46.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [55.485, 4.3205, -7.0367], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.0165, 0.7317, 54.6851], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.5661, 4.7152, -10.9378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.9845, 0.184, 86.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.7556, 4.3124, -13.2374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [11.8039, 2.7568, 61.415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [9.1464, 0.535, 95.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.1503, 0.2862, 55.657], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.5702, 0.0477, -66.4841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-120.3052, 0, -27.3137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [116.7042, 0.0875, -6.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [68.3687, 2.7606, 21.8088], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.7964, 1.8233, -30.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-110.1324, 0, -34.9505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.6731, 2.1717, 64.2153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-48.7502, 2.7225, -14.8937], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-37.2933, 4.0877, -5.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [8.4533, 1.0586, 85.2594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-95.1242, 0.1297, 11.5124], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.7334, 1.1132, 54.1382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.1883, 2.3067, -23.2176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [114.4287, 0.1241, -17.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [38.4276, 0.5794, 89.8772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.4119, 1.1264, -53.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [17.9986, 0, 122.7399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [27.6518, 4.2635, 45.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [49.0181, 5.0952, 3.7245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.3073, 0, 98.9511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [43.5109, 1.0962, 77.4342], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [107.6094, 0.0076, 58.0385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-77.3377, 0.6377, -21.4115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.9989, 0.0314, 94.7216], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.4599, 0.6779, 92.2769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [16.2186, 3.9431, 51.7305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.7305, 0.96, 4.1248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [33.2653, 2.6356, 60.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-49.0104, 2.4669, -22.313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [86.7424, 1.3349, -14.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [108.3422, 0.0024, 57.7562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.6839, 0.0766, -4.0048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.5365, 0.3577, 94.9066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-113.1553, 0, -3.1298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [120.7837, 0.0277, -17.0044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-119.6527, 0, 28.7422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-54.6894, 2.0418, -21.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-58.5072, 2.0327, -5.9743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [105.8384, 0.3328, -20.6711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.6266, 0, 30.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.8022, 2.6473, -29.6552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-111.8043, 0, -35.2373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-67.5292, 1.2789, 17.5897], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.4026, 1.5819, -45.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [20.9737, 5.0111, 40.5108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-63.4585, 1.6657, -1.1002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [85.457, 1.1508, 33.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.9046, 0.5562, 74.8395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.233, 5.096, -18.478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-78.2559, 0.3484, -39.157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [45.109, 0, 112.7404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.1224, 2.3407, -26.7178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [93.3695, 0.9744, -11.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.9308, 0.0163, 97.5092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-125.8378, 0, -22.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.106, 0.0938, -7.3497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-61.7672, 1.5654, -18.6193], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [98.0097, 0.6519, 24.118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.1058, 0, -63.0882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.4583, 0.9483, 11.6703], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.1487, 2.8225, 25.8388], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.4022, 0.5153, 94.6797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-87.9504, 0.0023, -54.5598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [74.0243, 2.5024, 8.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-93.3634, 0.0078, -46.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [113.5835, 0.1652, -5.1028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.6829, 1.782, 40.4534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.909, 0.9237, 81.2843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [80.0051, 1.125, -39.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [26.9849, 0.5518, 93.4012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.141, 0, -53.7695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [73.5205, 0.3748, 75.9136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.5548, 0.0029, 87.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [35.7781, 3.9238, 45.2753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-81.6115, 0.1115, -50.3969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [80.3146, 0.4472, 66.4729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-57.8185, 1.6499, -26.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-32.5297, 4.4857, 14.5423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-38.37, 3.806, 17.4321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [48.2394, 0.0346, 105.2301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.999, 1.7223, 48.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.2901, 1.3379, -55.2754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.1151, 0.3136, 92.5938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [58.3898, 4.1032, 4.692], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.0841, 1.9021, -61.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [91.3492, 0, 84.0503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.7047, 1.4203, -44.1854], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-99.8223, 0.074, -6.95], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.1677, 0.1386, -5.8102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-104.0219, 0.0216, -10.1818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-96.7418, 0.0391, -25.229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [75.0677, 2.1688, 22.1195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.7173, 0.3644, 65.236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [85.4718, 0.5324, -52.0536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [118.1296, 0.0522, 9.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [23.0244, 0.0243, 111.4956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-80.7292, 0.6045, 11.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [106.7693, 0.2348, -28.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-108.5615, 0, 6.1162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [52.8805, 0, 108.2958], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-52.0816, 2.4117, 20.4282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.2942, 3.0905, -12.045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-95.5767, 0.0282, -29.7591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [81.9692, 1.4261, 30.6453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-122.9545, 0, -0.8412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.6534, 1.4725, 24.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [103.3508, 0.5298, 7.4174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.0095, 0.3734, 67.818], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.8102, 2.9493, -37.8014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-84.5098, 0.0436, -52.5207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [110.7357, 0.1051, 35.1584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [43.4765, 0.9046, 81.0134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [60.2704, 0.033, 99.9493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [97.1123, 0.5973, 31.0509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [47.9176, 2.3568, 56.0651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [77.75, 1.3738, -36.3749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-36.9489, 3.9108, -13.7035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [9.0581, 3.7723, 53.6595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.3554, 4.4306, 36.0819], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [86.3545, 0.9582, -33.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [62.4145, 2.7879, 33.9838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.7148, 0.0177, 96.2759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.5679, 3.2128, -36.3841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [77.4693, 1.8672, -21.207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [36.7499, 3.3567, 50.902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [32.3763, 4.8083, 37.5566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [88.5051, 1.3085, -6.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [52.155, 4.2007, 24.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-121.3491, 0, -29.0092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.3696, 1.4847, -61.8316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-68.696, 0.7042, -39.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-65.5597, 0.8535, -38.7524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.4628, 3.4394, 8.2649], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [91.9938, 1.1205, 2.012], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-97.8438, 0.0924, 5.6529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.6062, 4.7962, -28.9914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [46.8798, 1.531, -63.7401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-43.6563, 3.3094, -11.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [76.751, 1.7517, 31.8121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [89.9826, 0.5712, 48.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [64.0601, 1.7365, -46.8097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.2364, 0.1446, 105.5301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-112.2809, 0, -13.5281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-107.8748, 0, -29.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.2807, 0, -60.778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.9591, 1.1755, 33.5335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [61.3924, 0.4621, 82.2195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [18.543, 1.5934, 76.7394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.2347, 0.681, 90.8332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-63.7977, 1.1706, -29.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-84.4099, 0.3857, -19.6634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [108.2268, 0.1487, 37.4803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [119.158, 0.0326, -19.7894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-52.1712, 2.0936, -25.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [50.3105, 4.9548, -0.4141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-98.487, 0.0179, 27.2226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-7.8512, 0.139, 105.4095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-96.5648, 0, -49.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [100.032, 0.2726, 45.9741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [61.1082, 0.6236, 77.7642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [44.9352, 4.8636, -19.4577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [66.9581, 1.9987, -37.9646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.1033, 1.6054, 63.3842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-105.5376, 0, -16.3149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [46.8625, 3.5409, 41.4387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-49.8562, 2.6176, -14.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [75.5973, 1.0345, 53.9759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [82.8749, 1.4598, -21.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [59.647, 1.5484, 59.429], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.784, 0.164, 101.2671], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [53.3326, 3.365, 36.8984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [6.7198, 1.0701, 85.0327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [114.6773, 0.021, 35.6132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-109.206, 0, -10.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [84.343, 1.6286, -3.775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [116.7796, 0.064, -12.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [6.6943, 0, 124.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.2496, 0.6286, 71.5478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.5306, 1.7453, 69.8839], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [78.3387, 2.1234, 6.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [59.685, 3.9223, 9.2175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [95.267, 0.9135, -4.3796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [68.2704, 1.6394, 48.6603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.4675, 0, -48.187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [99.5712, 0.0947, 59.9612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [34.1968, 0.299, 98.6462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-81.9691, 0.3754, -28.0261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-102.786, 0.0003, 7.5178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [71.3894, 1.4811, 48.2021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [67.1693, 1.662, -44.5376], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [54.4241, 0.5397, 84.0664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.0678, 0.3724, 66.7247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [100.9699, 0.4286, -27.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [14.9082, 1.0236, 85.715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [110.4298, 0.2548, 12.3089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [35.0174, 5.3392, 29.0322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-103.3664, 0, -32.2683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-120.1867, 0, -8.7982], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [48.483, 4.874, 17.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [63.9295, 3.3252, 16.8488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-101.3982, 0, -51.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-53.07, 2.3607, 18.5993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.7169, 0.9125, 87.6165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-100.2199, 0.0121, 10.2211], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-75.4406, 0.6715, -25.9669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.4463, 0.0007, -38.3534], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [41.8341, 1.2869, 74.9974], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [13.6996, 4.0867, 50.5852], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [39.2329, 5.4422, 22.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [45.6433, 2.9417, -45.2571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-114.8267, 0, 21.39], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [25.7036, 0, 116.4245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [37.1304, 2.7508, 57.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [92.4688, 0.1025, 69.5072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-80.1465, 0.6512, 7.0935], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [31.7289, 5.0828, 34.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [83.5804, 0.3462, 67.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.7366, 0, 113.5917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-94.1802, 0.1245, -12.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [117.0531, 0.0104, 33.6559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [125.442, 0, 7.1473], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [55.8504, 2.6374, 45.2265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [7.0036, 1.8112, 74.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [118.1517, 0.0495, 10.9929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-39.5302, 3.1988, -24.7092], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [94.24, 0.1948, -56.0977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.5834, 0, 119.3313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [69.4349, 1.6158, 47.7346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [58.3126, 0.686, 77.9828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-122.2515, 0, 12.2679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [40.8431, 0.3805, 94.1261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-72.5547, 0.513, -40.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [51.9403, 3.9133, -25.1068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [88.4521, 1.1849, -17.8536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [10.2758, 8.2885, 8.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres_quartier", + "type": "Object3D", + "position": [10.1688, 24.8656, 21.5969], + "rotation": [0, -0.7007, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [106.303, 1.5537, 41.3326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6722, 2.1095, 90.6089], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [28.2738, 2.1095, 90.0912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [38.3874, 6.0104, -30.5097], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [75.6188, 1.405, 92.4838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [17.95, 4.1144, 63.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.2656, 4.1144, 64.4037], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [4.4093, 2.8308, 79.0566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [3.1305, 2.8308, 82.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-127.6053, 1.39, 6.5501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [125.7973, 1.39, 21.9691], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [113.3925, 1.4755, -26.9434], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [70.091, 2.0242, 70.6713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-82.7908, 1.39, -74.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-80.3519, 1.9275, 23.8045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-57.2007, 2.1607, -53.5708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-107.2756, 1.39, -60.0639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-40.4325, 5.0887, -8.7557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-41.8874, 5.0887, -7.1572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [67.3191, 3.3578, 43.1045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-23.4508, 6.2418, -20.9354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-21.4351, 6.2418, -21.348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.6329, 1.39, 118.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-45.1945, 3.7868, -31.5903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-83.9177, 1.4614, -49.8224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-116.1539, 1.39, -39.5995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-64.0032, 3.0003, -3.5136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [37.824, 3.2927, 67.6624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [40.3303, 3.2927, 67.5174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [43.4117, 5.752, 33.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-44.4315, 4.6804, 13.709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [124.057, 1.3966, -6.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-98.4532, 1.4956, -0.1679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-97.6134, 1.4956, 2.2996], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [56.8354, 3.5621, -46.5503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [69.717, 4.1732, -11.3043], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [103.0174, 1.9168, -6.5555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [90.5309, 1.5918, 65.8542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [81.9374, 2.4716, -38.0597], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9636, 1.4267, 110.8328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.9686, 6.1758, 42.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [83.7699, 1.6331, -66.8107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [46.1492, 1.6243, 96.9535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [88.9324, 2.6236, 16.4933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [88.8868, 2.6236, 18.784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [-51.3574, 8.2405, -13.9443], + "rotation": [-3.1416, -1.1003, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-44.7536, 6.5105, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-44.7536, 5.4185, -33.8088], + "rotation": [0, 1.3151, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-33.4517, 8.4233, -14.3777], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble", + "type": "Object3D", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-35.0952, 7.4391, -11.2481], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble", + "type": "Object3D", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-31.8081, 9.4074, -17.5073], + "rotation": [0, 1.0967, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-56.3613, 6.2423, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-56.3613, 4.9693, -15.6316], + "rotation": [0, 0.8463, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-61.1478, 6.0441, 5.1504], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-63.5018, 5.0599, 7.7876], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-58.7939, 7.0283, 2.5133], + "rotation": [0, 0.8515, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-36.6903, 8.3502, 9.731], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-38.0051, 7.366, 13.0123], + "rotation": [0, 1.1992, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-35.3756, 9.3343, 6.4496], + "rotation": [0, 1.1991, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-84.3828, 4.1993, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-84.3828, 3.2803, -61.5091], + "rotation": [0, 1.1767, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-68.7111, 4.651, -50.5238], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-69.6533, 3.6669, -47.1168], + "rotation": [0, 1.3105, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-67.7689, 5.6352, -53.9309], + "rotation": [0, 1.3104, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-100.9035, 4.19, -31.7676], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-103.0387, 3.2058, -28.9504], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-98.7682, 5.1742, -34.5848], + "rotation": [0, 0.9317, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-79.1874, 4.7345, -23.9129], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-81.0293, 3.7503, -20.8958], + "rotation": [0, 1.0322, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-77.3455, 5.7187, -26.9301], + "rotation": [0, 1.0321, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [-107.9151, 4.19, 1.755], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [-107.7927, 3.2058, 5.2878], + "rotation": [3.1416, 1.5267, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [-108.0375, 5.1742, -1.7778], + "rotation": [3.1416, 1.5267, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [-85.2787, 4.6413, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [-85.2787, 3.6193, 3.4477], + "rotation": [3.1416, 1.5431, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [7.1718, 9.4131, 68.5991], + "rotation": [3.1416, 0.1131, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8967, 4.1992, 114.363], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.3643, 3.2151, 114.4985], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.429, 5.1834, 114.2275], + "rotation": [0, 0.0478, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [8.3955, 4.7997, 93.7519], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.8661, 3.8156, 93.9483], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.925, 5.7839, 93.5555], + "rotation": [0, 0.065, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [8.1016, 5.9085, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [8.1016, 4.5891, 75.5432], + "rotation": [0, -0.116, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [7.8601, 7.8395, 54.7639], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [4.328, 6.8554, 54.6231], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [11.3922, 8.8237, 54.9046], + "rotation": [0, -0.0304, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeubles", + "type": "Object3D", + "position": [69.3487, -0.4334, -18.4482], + "rotation": [3.1416, 1.1456, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [55.6272, 8.4233, 14.5658], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [58.5315, 7.4391, 16.5809], + "rotation": [3.1416, 0.5971, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [52.7229, 9.4074, 12.5507], + "rotation": [3.1416, 0.5972, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [77.6876, 6.2066, 19.0807], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [80.4667, 5.2224, 21.2652], + "rotation": [3.1416, 0.6567, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [74.9084, 7.1908, 16.8962], + "rotation": [3.1416, 0.6567, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [107.643, 4.4872, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [107.643, 3.0547, 21.6635], + "rotation": [3.1416, 0.7261, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [35.8706, 8.4233, -36.9019], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [38.4102, 7.4391, -34.443], + "rotation": [3.1416, 0.7598, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [33.331, 9.4074, -39.3608], + "rotation": [3.1416, 0.7598, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [48.7038, 6.157, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [48.7038, 4.532, -56.1174], + "rotation": [0, 1.4495, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [62.838, 6.3419, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [62.838, 4.759, -40.4284], + "rotation": [3.1416, 0.6961, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [85.4777, 4.5325, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [85.4777, 3.2953, -60.3785], + "rotation": [3.1416, 1.1427, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [79.3194, 6.2278, -2.0972], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [81.4108, 5.2437, 0.7526], + "rotation": [3.1416, 0.9283, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [77.2281, 7.212, -4.9471], + "rotation": [3.1416, 0.9283, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [49.6595, 8.4233, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [49.6595, 7.1077, -23.113], + "rotation": [0, 1.5065, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [96.5106, 4.567, -41.6063], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [96.2087, 3.5829, -38.0843], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [96.8126, 5.5512, -45.1283], + "rotation": [0, 1.4947, 0], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [72.7641, 6.4192, -21.5489], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [73.8823, 5.435, -18.1955], + "rotation": [3.1416, 1.2395, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [71.646, 7.4033, -24.9023], + "rotation": [3.1416, 1.2395, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [56.6478, 8.4233, -4.9078], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [57.2363, 7.4391, -1.4223], + "rotation": [3.1416, 1.3941, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [56.0593, 9.4074, -8.3934], + "rotation": [3.1416, 1.3941, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [110.4581, 4.4084, -16.153], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [112.0712, 3.4242, -13.0076], + "rotation": [3.1416, 1.0875, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [108.8451, 5.3925, -19.2984], + "rotation": [3.1416, 1.0875, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_domaine", + "type": "Object3D", + "position": [-5.1095, 5.1349, -49.4551], + "rotation": [0, -1.3459, 0], + "scale": [1, 1, 1] + }, + { + "name": "tuyauxlac", + "type": "Mesh", + "position": [13.5709, -2.7158, -90.5087], + "rotation": [-3.0738, 0.8046, 3.0896], + "scale": [1, 1, 1] + }, + { + "name": "champ2", + "type": "Object3D", + "position": [14.4035, 16.0553, -33.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.1857, 6.2284, -19.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7702, 6.2258, -19.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0231, 6.1146, -20.6707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.626, 6.1135, -20.119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0062, 6.1929, -18.541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.841, 6.1013, -19.1106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.372, 6.2151, -18.8306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2308, 6.109, -19.5977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6115, 5.8833, -20.6261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.9807, 5.8833, -21.2528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7132, 5.9971, -19.82], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.1003, 5.9986, -20.4051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6978, 5.8833, -22.4823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.8604, 5.9997, -21.5765], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.3441, 5.8833, -21.873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.484, 5.9995, -20.992], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.5351, 5.7647, -23.3882], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.205, 5.7647, -22.7566], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3725, 5.6437, -24.294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0658, 5.6437, -23.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5185, 5.7647, -21.4644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.4254, 5.6437, -22.3028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.8647, 5.7647, -22.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.7487, 5.6437, -22.975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2393, 5.3954, -23.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.5168, 5.3954, -24.6973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3323, 5.5205, -23.1411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6328, 5.5205, -23.8362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0472, 5.3954, -26.1057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.2098, 5.5205, -25.1999], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7875, 5.3954, -25.4077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.9267, 5.5205, -24.524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8845, 5.2687, -27.0115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6484, 5.2687, -26.2914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7219, 5.1406, -27.9174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5092, 5.1406, -27.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.1462, 5.2687, -24.8178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0532, 5.1406, -25.6562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.4008, 5.2687, -25.5584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.2848, 5.1406, -26.4195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.867, 4.8811, -27.3328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0528, 4.8811, -28.1418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9601, 5.0113, -26.4945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1688, 5.0113, -27.2807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3966, 4.8811, -29.7291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5592, 5.0113, -28.8232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.231, 4.8811, -28.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.3701, 5.0113, -28.0587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.2339, 4.7502, -30.6349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0918, 4.7502, -29.8261], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0766, 4.6183, -31.5449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9584, 4.6182, -30.7143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.774, 4.7502, -28.1712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6874, 4.6181, -29.0146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9368, 4.7502, -29.0029], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8269, 4.6182, -29.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.5848, 4.3442, -30.7572], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6744, 4.3448, -31.6539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.62, 4.4833, -29.8732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7353, 4.4835, -30.7493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8206, 4.3463, -33.4113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.9353, 4.484, -32.4676], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.755, 4.3455, -32.5407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.8423, 4.4837, -31.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7431, 4.204, -34.3844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7079, 4.2022, -33.4971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7078, 4.0567, -35.3911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.7058, 4.0536, -34.4891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.5946, 4.1994, -31.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.654, 4.0488, -32.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6562, 4.2007, -32.5922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.6854, 4.051, -33.568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.907, 3.7334, -34.6586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8743, 3.7381, -35.6227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7594, 3.8931, -33.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7591, 3.8966, -34.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7592, 3.7493, -37.5047], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.7135, 3.9049, -36.4312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8281, 3.7433, -36.5742], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.7466, 3.9004, -35.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8437, 3.5903, -38.6115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9481, 3.583, -37.6645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.9619, 3.4285, -39.7474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0961, 3.4206, -38.7814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.0932, 3.5706, -35.7173], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.2542, 3.4098, -36.7998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0279, 3.5766, -36.697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1901, 3.4145, -37.7964], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0431, 3.127, -38.9949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.3592, 3.1015, -40.0368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.2661, 3.2598, -37.8955], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.3036, 3.2559, -38.9121], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.2604, 3.0998, -42.0729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.104, 3.2647, -40.9039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.4099, 3.0943, -41.0638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.2531, 3.2574, -39.917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7535, 6.2284, -21.7876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3812, 6.2284, -21.306], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4916, 6.1146, -22.7761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1449, 6.1146, -22.2747], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5978, 6.2284, -20.2942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4111, 6.1146, -21.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.9961, 6.2284, -20.8081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.7849, 6.1146, -21.7565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0378, 5.8833, -23.0766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.3625, 5.8833, -23.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2245, 5.9997, -22.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.5737, 5.9997, -22.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9678, 5.8833, -24.7529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2297, 5.9997, -23.7645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6723, 5.8833, -24.2122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9086, 5.9997, -23.2435], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.7058, 5.7647, -25.7413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.436, 5.7647, -25.181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.4439, 5.6437, -26.7297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.1997, 5.6437, -26.1497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.8512, 5.7647, -24.004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6645, 5.6437, -24.9315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1513, 5.7647, -24.6018], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.9401, 5.6437, -25.5502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.2912, 5.3954, -26.7864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5177, 5.3954, -27.447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.4779, 5.5205, -25.8589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7289, 5.5205, -26.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9201, 5.3954, -28.7065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.182, 5.5205, -27.7181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.7271, 5.3954, -28.0872], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9634, 5.5205, -27.1185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.6581, 5.2687, -29.6949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4908, 5.2687, -29.0559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3962, 5.1406, -30.6833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2545, 5.1406, -30.0247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.1046, 5.2687, -27.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.9179, 5.1406, -28.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3065, 5.2687, -28.3954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0953, 5.1406, -29.3439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5446, 4.8811, -30.4962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6728, 4.8811, -31.2407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7313, 5.0113, -29.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.8841, 5.0113, -30.2923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8724, 4.8811, -32.6601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.1343, 5.0113, -31.6717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.7819, 4.8811, -31.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.0182, 5.0113, -30.9934], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.6105, 4.7502, -33.6485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5456, 4.7502, -32.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.3514, 4.6186, -34.6394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.3128, 4.6185, -33.9025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.358, 4.7502, -31.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.1761, 4.6183, -32.3549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.4616, 4.7502, -32.1891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2546, 4.6184, -33.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8652, 4.3473, -34.259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.8866, 4.3484, -35.0809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.0087, 4.4844, -33.2975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0601, 4.4848, -34.1026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.8647, 4.3505, -36.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.1009, 4.4855, -35.638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.8859, 4.3495, -35.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0906, 4.4852, -34.8828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6484, 4.2131, -37.6781], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7059, 4.2109, -36.8922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.4577, 4.0724, -38.7319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.5559, 4.0687, -37.9334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7553, 4.2061, -35.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6841, 4.0604, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.7422, 4.2085, -36.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.6324, 4.0646, -37.1126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.6587, 3.7564, -38.4059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5244, 3.7643, -39.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6517, 3.9104, -37.3187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.5591, 3.9165, -38.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.1752, 3.7788, -40.9518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2982, 3.9279, -39.8201], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3616, 3.772, -40.1232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.4399, 3.9226, -39.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0944, 3.6244, -42.1366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.325, 3.6167, -41.2858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.0529, 3.465, -43.3718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.3266, 3.4569, -42.4929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7053, 3.5986, -39.53], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.7867, 3.4377, -40.6871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.5305, 3.6078, -40.4192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.5731, 3.4475, -41.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.0144, 3.1099, -43.0624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.726, 3.12, -44.0334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.8931, 3.2745, -41.8677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.6417, 3.2845, -42.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0428, 3.137, -45.9359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.0394, 3.3021, -44.643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.4004, 3.1293, -44.9898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.3553, 3.2941, -43.7318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1232, 6.2284, -23.5452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.7978, 6.2284, -23.1318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7539, 6.1146, -24.6053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4561, 6.1146, -24.175], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1134, 6.2284, -22.2527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.8254, 6.1146, -23.2601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4614, 6.2284, -22.7008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.1467, 6.1146, -23.7265], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2493, 5.8833, -25.2749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.5174, 5.8833, -25.7779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5373, 5.9997, -24.2675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8321, 5.9997, -24.7522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0154, 5.8833, -26.7256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.3847, 5.9997, -25.6654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.7726, 5.8833, -26.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.1143, 5.9997, -25.2183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.6461, 5.7647, -27.7857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4308, 5.7647, -27.3048], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.2768, 5.6437, -28.8459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0891, 5.6437, -28.3481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.9612, 5.7647, -26.2822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.6732, 5.6437, -27.2896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.2027, 5.7647, -26.8036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8881, 5.6437, -27.8292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.0971, 5.3954, -29.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2587, 5.3954, -29.8806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3851, 5.5205, -28.297], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.5734, 5.5205, -28.8549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.5382, 5.3954, -30.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9075, 5.5205, -29.906], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4056, 5.3954, -30.4346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.7473, 5.5205, -29.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.169, 5.2687, -32.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.0638, 5.2687, -31.4779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.7997, 5.1406, -33.0864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7221, 5.1406, -32.5212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.809, 5.2687, -30.3118], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.521, 5.1406, -31.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.9441, 5.2687, -30.9063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.6294, 5.1406, -31.9319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.9449, 4.8811, -33.334], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.0001, 4.8811, -33.9833], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.2329, 5.0113, -32.3266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3147, 5.0113, -32.9576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0611, 4.8811, -35.2067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.4304, 5.0113, -34.1466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0386, 4.8811, -34.6077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.3803, 5.0113, -33.5644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.6918, 4.7502, -36.2668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.6969, 4.7502, -35.651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.3235, 4.6186, -37.3301], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3564, 4.6187, -36.6969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6568, 4.7502, -34.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.371, 4.6186, -35.3511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.6854, 4.7502, -35.009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3725, 4.6187, -36.0371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.824, 4.3513, -37.3966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.7653, 4.3516, -38.1197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.0919, 4.4858, -36.3679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0646, 4.4859, -37.0724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.5975, 4.3514, -39.4903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.9581, 4.4858, -38.4025], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.6894, 4.3517, -38.8179], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0197, 4.4859, -37.7507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.2436, 4.2149, -40.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.368, 4.2155, -39.9035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.9012, 4.0756, -41.7392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.0608, 4.0767, -41.0164], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5718, 4.2146, -38.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.3409, 4.0751, -39.5116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.4779, 4.2154, -39.184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.208, 4.0765, -40.2734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9703, 3.7838, -41.7687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.751, 3.7864, -42.5759], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1382, 3.9318, -40.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.9631, 3.9339, -41.4001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.2814, 3.7845, -44.1529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.578, 3.9324, -42.9199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5203, 3.7866, -43.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.7756, 3.9341, -42.1683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.0192, 3.6309, -45.4491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.303, 3.6332, -44.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7903, 3.4716, -46.8056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1222, 3.4741, -45.9638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.8443, 3.63, -42.9783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.7578, 3.4708, -44.2432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.5792, 3.6329, -43.8128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4461, 3.4738, -45.1084], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.6581, 3.1424, -46.8757], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2517, 3.1451, -47.8085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.6995, 3.3078, -45.5476], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3406, 3.3107, -46.4459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.3944, 3.143, -49.6305], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.5852, 3.3085, -48.2052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.8287, 3.1453, -48.7287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9676, 3.3109, -47.3333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.7115, 6.1929, -25.2939], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.1829, 6.2151, -24.7803], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9954, 6.1013, -26.2639], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.6471, 6.109, -25.8341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.438, 6.2284, -23.9408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.0408, 6.1146, -25.0171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.7717, 6.2258, -24.3389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.3298, 6.1135, -25.42], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2463, 5.8833, -27.1696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.467, 5.8833, -27.596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6435, 5.9997, -26.0933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.8949, 5.9995, -26.5058], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.8895, 5.8833, -28.4161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4005, 5.9971, -27.3127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.6804, 5.8833, -28.0098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.1463, 5.9986, -26.9106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.4066, 5.7647, -29.5377], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2262, 5.7647, -29.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.9236, 5.6437, -30.6593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.7721, 5.6437, -30.2235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.849, 5.7647, -28.2459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.4518, 5.6437, -29.3222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.0414, 5.7647, -28.6878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.6158, 5.6437, -29.7796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.6573, 5.3954, -31.4748], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.7646, 5.3954, -31.9632], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0545, 5.5205, -30.3985], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1902, 5.5205, -30.8714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9577, 5.3954, -32.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.4407, 5.5205, -31.7809], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.8637, 5.3954, -32.4372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3179, 5.5205, -31.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.4748, 5.2687, -34.0242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.4095, 5.2687, -33.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.9918, 5.1406, -35.1458], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.9553, 5.1406, -34.6509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.26, 5.2687, -32.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8628, 5.1406, -33.6273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.3391, 5.2687, -33.055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.9135, 5.1406, -34.1468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.0683, 4.8811, -35.7799], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0623, 4.8811, -36.3304], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4655, 5.0113, -34.7036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.4879, 5.0113, -35.2386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0259, 4.8811, -37.389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.5089, 5.0113, -36.2674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.0469, 4.8811, -36.8646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.5011, 5.0113, -35.7577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.543, 4.7502, -38.5106], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5927, 4.7502, -37.9714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.061, 4.6183, -39.6384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.1394, 4.6184, -39.0835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.671, 4.7502, -36.8562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.2746, 4.6186, -37.9362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6367, 4.7502, -37.4222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2119, 4.6185, -38.5184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.4905, 4.3507, -40.1365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.3707, 4.3498, -40.7595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.8805, 4.4856, -39.0272], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.7894, 4.4852, -39.6279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1076, 4.3473, -41.9621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.5819, 4.4844, -40.7848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2419, 4.3486, -41.3658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6885, 4.4848, -40.2115], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6401, 4.206, -43.1827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.8011, 4.2088, -42.557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1808, 4.0603, -44.4529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.3686, 4.0652, -43.7922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.106, 4.2135, -41.2716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7312, 4.0731, -42.4408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.9575, 4.2114, -41.922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.5529, 4.0696, -43.1233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.0374, 3.7801, -44.9183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.7902, 3.7737, -45.6688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.3728, 3.9289, -43.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1621, 3.9238, -44.37], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.29, 3.757, -47.142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.7304, 3.9105, -45.7726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5408, 3.7658, -46.4086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.9475, 3.9175, -45.0749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8605, 3.6001, -48.5609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.1517, 3.6099, -47.7968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.462, 3.4444, -49.9679], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7883, 3.452, -49.2113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.7316, 3.6259, -46.2452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4546, 3.4666, -47.6303], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.4423, 3.6187, -47.0263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.1193, 3.4596, -48.4336], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9542, 3.1385, -50.5085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.5324, 3.1362, -51.3077], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1983, 3.3037, -49.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.8182, 3.2984, -49.8659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.904, 3.1694, -52.2913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.1347, 3.2988, -51.2401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1726, 3.1445, -51.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.4635, 3.2965, -50.5918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.9337, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.1577, 6.2258, -27.8033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9176, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.1004, 6.1135, -29.0187], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.762, 6.1929, -28.1003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.5228, 6.1013, -29.0822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.427, 6.2151, -27.8912], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.3021, 6.109, -29.0359], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.2211, 5.8833, -31.3932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.1091, 5.8833, -31.4368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.3492, 5.9971, -30.1931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1962, 5.9986, -30.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8853, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.9014, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9972, 5.8833, -31.4717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.0469, 5.9995, -30.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.8692, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.9488, 5.7647, -32.7044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.853, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.9003, 5.6437, -33.9372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.108, 5.7647, -32.623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.995, 5.6437, -33.8529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.0284, 5.7647, -32.6683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.9477, 5.6437, -33.8997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.7689, 5.3954, -36.3126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7862, 5.3954, -36.3626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.882, 5.5205, -35.0828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.8669, 5.5205, -35.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8207, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.8369, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8035, 5.3954, -36.4026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.8519, 5.5205, -35.1699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.8046, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.755, 5.2687, -37.6353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7884, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.7066, 5.1406, -38.8681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6559, 5.2687, -37.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.5429, 5.1406, -38.7724], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.7055, 5.2687, -37.5941], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.6247, 5.1406, -38.8255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.3168, 4.8811, -41.2321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.4633, 4.8811, -41.2885], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.4299, 5.0113, -40.0023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.544, 5.0113, -40.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.7561, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7723, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6097, 4.8811, -41.3335], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.6581, 5.0113, -40.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.74, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.5613, 4.7502, -42.5662], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.7228, 4.6183, -43.8333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5117, 4.6182, -43.8061], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.2038, 4.7502, -42.462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.0895, 4.6181, -43.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3825, 4.7502, -42.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.3006, 4.6182, -43.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8473, 4.3444, -46.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [7.1238, 4.345, -46.3203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.9715, 4.4833, -44.9615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.2152, 4.4835, -45.0207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.6771, 4.3464, -46.386], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.7025, 4.4841, -45.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.4004, 4.3456, -46.3642], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4588, 4.4838, -45.0673], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.6445, 4.2042, -47.725], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3341, 4.2025, -47.711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.6038, 4.0572, -49.116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2593, 4.0542, -49.1134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.7144, 4.1998, -47.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.572, 4.0494, -49.039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0242, 4.2011, -47.6729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.9154, 4.0517, -49.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2612, 3.7349, -52.0424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6727, 3.7396, -52.0681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.4207, 3.8942, -50.5145], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.798, 3.8976, -50.5505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4991, 3.7511, -52.0474], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [9.5553, 3.906, -50.5573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.0852, 3.7449, -52.0741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1761, 3.9014, -50.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.4356, 3.5932, -53.5845], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.9868, 3.5853, -53.6268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [9.3658, 3.4329, -55.1621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.8857, 3.4237, -55.2165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.0942, 3.5727, -53.6181], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.9624, 3.4124, -55.1942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5399, 3.5786, -53.6332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4182, 3.4171, -55.222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.114, 3.1306, -58.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3179, 3.1053, -58.3259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.95, 3.2629, -56.6804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.3435, 3.2591, -56.79], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2145, 3.1078, -58.3925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [9.2915, 3.2708, -56.7686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.7027, 3.0993, -58.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [7.7904, 3.2615, -56.825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.0948, 6.2284, -27.6675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.306, 6.2284, -27.7295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.2076, 6.1146, -28.8959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3867, 6.1146, -28.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7249, 6.2284, -27.7917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.7411, 6.1146, -29.0251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.5159, 6.2284, -27.771], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.5643, 6.1146, -29.0036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.7734, 5.8833, -31.4921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.6612, 5.8833, -31.4688], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7572, 5.9997, -30.2586], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.6127, 5.9997, -30.2362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.4334, 5.8833, -31.3527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.3205, 5.9997, -30.1243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.548, 5.8833, -31.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.4673, 5.9997, -30.1914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5462, 5.7647, -32.5811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.6287, 5.7647, -32.6533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.6591, 5.6437, -33.8095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.7094, 5.6437, -33.8842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.7895, 5.7647, -32.7255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8057, 5.6437, -33.959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.7096, 5.7647, -32.7014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.758, 5.6437, -33.9341], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.838, 5.3954, -36.4259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.8549, 5.3954, -36.3993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8218, 5.5205, -35.1925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [11.8065, 5.5205, -35.1667], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8849, 5.3954, -36.2663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.772, 5.5205, -35.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.8707, 5.3954, -36.3461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.7901, 5.5205, -35.1151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.9977, 5.2687, -37.4947], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.9514, 5.2687, -37.577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1106, 5.1406, -38.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.0321, 5.1406, -38.8079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8541, 5.2687, -37.6594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8703, 5.1406, -38.8929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [11.9033, 5.2687, -37.6319], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [11.9517, 5.1406, -38.8645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9026, 4.8811, -41.3598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.0486, 4.8811, -41.3298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.8864, 5.0113, -40.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.0002, 5.0113, -40.0972], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3364, 4.8811, -41.1798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.2235, 5.0113, -39.9514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.1935, 4.8811, -41.2698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.1128, 5.0113, -40.0389], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.4492, 4.7502, -42.4082], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.2741, 4.7502, -42.5007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.5616, 4.6186, -43.6401], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.3541, 4.6185, -43.736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9187, 4.7502, -42.5933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9339, 4.6183, -43.8327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.097, 4.7502, -42.5624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.1447, 4.6184, -43.8002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.9542, 4.3474, -46.3769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.231, 4.3485, -46.3327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9464, 4.4844, -45.0899], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.1899, 4.4848, -45.0535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.7803, 4.351, -46.1421], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6723, 4.4857, -44.8824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5067, 4.3498, -46.2542], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.4321, 4.4853, -44.9842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8845, 4.2141, -47.426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.5766, 4.2114, -47.5544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.9842, 4.0746, -48.7403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.6409, 4.0699, -48.891], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.9555, 4.2063, -47.7054], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9494, 4.0609, -49.0814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2666, 4.2088, -47.6481], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.2955, 4.0652, -49.0055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.9152, 3.7587, -51.9749], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.333, 3.7677, -51.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.936, 3.9116, -50.5046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [12.3178, 3.9181, -50.4066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1683, 3.7873, -51.4796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0789, 3.9324, -50.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.7512, 3.7774, -51.6857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [13.6992, 3.9252, -50.267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.2519, 3.639, -52.9146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.7965, 3.6265, -53.1504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3303, 3.488, -54.3914], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8357, 3.4729, -54.6567], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.8872, 3.6029, -53.4919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8527, 3.4445, -55.0497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3412, 3.6142, -53.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.343, 3.4581, -54.8787], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.772, 3.1231, -58.2414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3348, 3.1411, -58.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.8138, 3.2843, -56.6368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3402, 3.3002, -56.4419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4774, 3.1809, -57.4226], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.405, 3.335, -55.898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.9031, 3.1607, -57.7466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [13.8707, 3.3174, -56.1928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2255, 6.2284, -27.2135], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4475, 6.2284, -27.3577], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4661, 6.1146, -28.4234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.6564, 6.1146, -28.5735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [13.8816, 6.2284, -27.5848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.0266, 6.1146, -28.8098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.666, 6.2284, -27.4815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.8431, 6.1146, -28.7023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3166, 5.8833, -31.2598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.1971, 5.8833, -31.1439], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.1716, 5.9997, -30.0348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.0201, 5.9997, -29.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9474, 5.8833, -30.8432], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7068, 5.9997, -29.6333], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0742, 5.8833, -31.005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.8653, 5.9997, -29.7892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.1881, 5.7647, -32.053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.2831, 5.7647, -32.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.4288, 5.6437, -33.2629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.492, 5.6437, -33.4365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4616, 5.7647, -32.4849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6066, 5.6437, -33.7099], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3741, 5.7647, -32.3647], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.5511, 5.6437, -33.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.8966, 5.3954, -36.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.9051, 5.3954, -36.0271], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7516, 5.5205, -34.9349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.7281, 5.5205, -34.8063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9101, 5.3954, -35.6826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6694, 5.5205, -34.4728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9098, 5.3954, -35.868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.7009, 5.5205, -34.6522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1507, 5.2687, -36.8925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.1187, 5.2687, -37.0838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3914, 5.1406, -38.1024], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3277, 5.1406, -38.2995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [15.0415, 5.2687, -37.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.1865, 5.1406, -38.61], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0821, 5.2687, -37.2479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.2591, 5.1406, -38.4687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.4765, 4.8811, -41.06], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.6131, 4.8811, -40.9104], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.3315, 5.0113, -39.835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.4361, 5.0113, -39.6896], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.8727, 4.8811, -40.5221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.632, 5.0113, -39.3122], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.7455, 4.8811, -40.731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.5366, 5.0113, -39.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1134, 4.7502, -41.732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9544, 4.7502, -41.9468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.3539, 4.6189, -42.9425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.1631, 4.6188, -43.1637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.6215, 4.7502, -42.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [15.7661, 4.6187, -43.5127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7902, 4.7502, -42.1312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.9669, 4.6188, -43.3538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.0507, 4.3522, -45.9971], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.3171, 4.3533, -45.8199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [15.9094, 4.4861, -44.7483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.1427, 4.4865, -44.5822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8338, 4.3551, -45.3711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.5941, 4.4871, -44.1551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5784, 4.3543, -45.611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3712, 4.4869, -44.3843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0728, 4.2227, -46.5919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.7843, 4.2211, -46.8462], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3117, 4.0898, -47.8231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.9891, 4.087, -48.0956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.1891, 4.2167, -47.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.3241, 4.0792, -48.5561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.4894, 4.2191, -47.0707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.6595, 4.0834, -48.3405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.5829, 3.7968, -51.2392], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.9935, 3.8056, -50.9693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.4554, 3.9394, -49.8788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.8274, 3.9457, -49.6374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7954, 3.8193, -50.3555], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.552, 3.9556, -49.0744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.3982, 3.8132, -50.6735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.1934, 3.9512, -49.3683], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.0433, 3.68, -51.6763], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.6041, 3.6721, -52.02], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2959, 3.5379, -53.0361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.8114, 3.5282, -53.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7062, 3.6512, -52.644], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.8258, 3.5027, -54.0903], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.1577, 3.6624, -52.3442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3205, 3.5163, -53.7602], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.0581, 3.2006, -57.0603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6432, 3.2189, -56.6687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.9427, 3.3523, -55.5664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4821, 3.3682, -55.2056], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8097, 3.2485, -55.8279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.5518, 3.3938, -54.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.2285, 3.2351, -56.2553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.0197, 3.3823, -54.8225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1879, 6.1929, -26.8994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.4939, 6.2151, -26.8331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.626, 6.1013, -27.8101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.854, 6.109, -27.9268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.9994, 6.2284, -27.049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [17.2716, 6.1146, -28.2522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.7609, 6.2258, -26.8991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0696, 6.1135, -28.076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.8161, 5.8833, -30.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.6806, 5.8833, -30.4539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.5439, 5.9997, -29.4554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.3762, 5.9995, -29.2609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.4016, 5.8833, -30.0078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [20.0267, 5.9971, -28.8606], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.542, 5.8833, -30.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.2034, 5.9986, -29.0608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.7678, 5.7647, -31.1873], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.877, 5.7647, -31.4229], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.1341, 5.6437, -32.3668], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.212, 5.6437, -32.6107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.0884, 5.7647, -31.8617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3606, 5.6437, -33.0648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9842, 5.7647, -31.6497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.2879, 5.6437, -32.8454], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.9051, 5.3954, -35.4711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.8953, 5.3954, -35.2368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.6329, 5.5205, -34.268], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.5916, 5.5205, -34.0411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.8666, 5.3954, -34.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5004, 5.5205, -33.5463], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.882, 5.3954, -34.9862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.547, 5.5205, -33.7984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.2329, 5.2687, -35.9053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.217, 5.2687, -36.174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.5992, 5.1406, -37.0848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.552, 5.1406, -37.3617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1773, 5.2687, -36.6743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [19.4496, 5.1406, -37.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.199, 5.2687, -36.4325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.5026, 5.1406, -37.6282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.9941, 4.8811, -40.2837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.11, 4.8811, -40.0197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7218, 5.0113, -39.0806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8063, 5.0113, -38.824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.3317, 4.8811, -39.4438], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.9654, 5.0113, -38.2643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.222, 4.8811, -39.7372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.887, 5.0113, -38.5495], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.6979, 4.7502, -40.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.557, 4.7502, -40.925], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.0642, 4.619, -41.8028], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.892, 4.619, -42.1128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.2663, 4.7502, -41.4869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.5385, 4.6189, -42.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.4137, 4.7502, -41.2154], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.7173, 4.619, -42.4112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.0824, 4.3556, -45.1008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.3245, 4.3559, -44.8041], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.8106, 4.4873, -43.8948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.021, 4.4874, -43.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7967, 4.356, -44.1618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.4305, 4.4875, -42.9823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.562, 4.356, -44.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.227, 4.4875, -43.3006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.163, 4.2248, -45.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.8969, 4.2248, -45.6767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.5322, 4.0936, -46.5251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2342, 4.0934, -46.8697], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.3538, 4.2239, -46.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.6261, 4.0918, -47.5249], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.6279, 4.2245, -46.0017], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.9329, 4.0929, -47.205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.1832, 3.8235, -50.0192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.562, 3.826, -49.6685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.9017, 3.9587, -48.7583], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [23.2431, 3.9604, -48.424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.303, 3.8278, -48.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.9102, 3.9615, -47.7219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.9344, 3.8273, -49.3075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.5785, 3.9612, -48.0769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [26.7164, 3.6916, -50.1892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.3068, 3.6908, -50.5711], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.102, 3.5562, -51.4482], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [25.6753, 3.553, -51.859], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [22.4729, 3.6856, -51.3177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.771, 3.5449, -52.6535], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.8932, 3.689, -50.9483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.2326, 3.5495, -52.2616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.3826, 3.2583, -55.3943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.8979, 3.2679, -54.9383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.075, 3.4022, -54.0159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.5686, 3.4089, -53.5949], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.4118, 3.3146, -53.8143], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.3572, 3.4289, -52.6684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.2616, 3.2849, -54.4204], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.9952, 3.4175, -53.1453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champ1", + "type": "Object3D", + "position": [14.4035, 16.0553, -33.523], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.8412, 1.9388, -65.5569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.0336, 1.9401, -66.2608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [41.6682, 1.8031, -67.2069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.8586, 1.8018, -67.953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [35.3363, 1.9376, -67.686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.0976, 1.797, -69.4428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [37.2037, 1.94, -66.9695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.0073, 1.8001, -68.6975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.6607, 1.5216, -73.0074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.6064, 1.5278, -72.1916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [36.8745, 1.6587, -71.2192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.8104, 1.663, -70.4409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [42.6674, 1.5689, -70.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [42.3093, 1.6786, -68.8166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [41.2987, 1.542, -71.3151], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [40.6159, 1.6693, -69.6406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [37.2328, 2.4725, -59.8074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [35.7397, 2.5055, -59.9705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [38.2046, 2.3531, -60.969], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.5719, 2.3671, -61.4329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.4836, 2.5263, -60.9031], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [33.1766, 2.3763, -62.5732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1517, 2.5224, -60.3559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8995, 2.3753, -61.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.5967, 2.0811, -65.9568], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [36.4174, 2.083, -65.2686], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.8789, 2.2276, -64.2552], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.6526, 2.2285, -63.6008], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [39.971, 2.0801, -63.9171], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [39.1068, 2.2206, -62.3579], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [38.2043, 2.0823, -64.59], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [37.3912, 2.2258, -62.9698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [33.4166, 1.9319, -68.4137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [31.4402, 1.9226, -69.1505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [34.1244, 1.7914, -70.1948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [32.0884, 1.7825, -70.9537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.3419, 1.894, -70.6236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [27.8562, 1.7549, -72.4709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [29.4132, 1.9099, -69.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.9967, 1.7703, -71.7142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.9072, 1.4839, -76.2036], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [31.1916, 1.4978, -75.405], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [28.3791, 1.6185, -74.3329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [30.591, 1.6332, -73.5548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [35.5772, 1.5164, -73.8051], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [34.8465, 1.6532, -71.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [33.4179, 1.5086, -74.6049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.7494, 1.6448, -72.7741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.7624, 2.5226, -61.5189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.0038, 2.5141, -62.1508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [31.4074, 2.3719, -63.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [29.5965, 2.363, -63.8784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [25.3902, 2.486, -63.4147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.867, 2.3343, -65.198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [27.2117, 2.5016, -62.7867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [27.7482, 2.3502, -64.5418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.8394, 2.0372, -68.7966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [28.8446, 2.0533, -68.0868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.349, 2.1843, -66.99], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [28.2911, 2.2005, -66.3064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [32.7288, 2.0756, -66.6585], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [32.0609, 2.2226, -64.9293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.8096, 2.0663, -67.3713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [30.1967, 2.2134, -65.6162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.2323, 1.8751, -71.3459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.0933, 1.8534, -72.0498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [25.6739, 1.7363, -73.2185], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.4596, 1.7148, -73.951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.772, 1.8035, -73.3772], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [18.9856, 1.6644, -75.3448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.9361, 1.8294, -72.729], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.2259, 1.6907, -74.6619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [19.4128, 1.3952, -79.3142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [21.8102, 1.4218, -78.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.1992, 1.5288, -77.3255], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [21.5175, 1.5552, -76.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [26.5733, 1.4665, -76.9988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [26.1217, 1.6005, -75.1046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [24.2023, 1.4457, -77.7866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.8298, 1.5793, -75.865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [23.5431, 2.4679, -64.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [21.6767, 2.4478, -64.6035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [23.9573, 2.3157, -65.836], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.0258, 2.295, -66.4485], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [17.9189, 2.4025, -65.6702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.1321, 2.2483, -67.5798], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [19.7992, 2.4259, -65.1537], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.0811, 2.2725, -67.0311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [18.5586, 1.9474, -71.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [20.6489, 1.9729, -70.8138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [18.3453, 2.0961, -69.4973], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [20.3641, 2.121, -68.9161], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [24.7994, 2.0181, -69.4922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [24.3753, 2.1654, -67.6574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [22.7325, 1.9966, -70.1665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [22.3772, 2.1442, -68.3011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.6123, 1.776, -73.988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.4691, 1.7476, -74.5521], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.7512, 1.6364, -75.993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.5398, 1.6072, -76.6001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.2841, 1.6927, -75.4904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.2568, 1.5492, -77.6479], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3554, 1.7195, -75.057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.3728, 1.5776, -77.159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.6463, 1.2518, -82.4808], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.5686, 1.2955, -81.5838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.3379, 1.4046, -79.9409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.4436, 1.4367, -79.3372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [17.0262, 1.3662, -80.0414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [16.889, 1.5002, -78.0128], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.7102, 1.3338, -80.7743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.6199, 1.4697, -78.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.044, 2.3778, -66.1502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.1815, 2.3524, -66.5868], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.1874, 2.2228, -68.0905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [14.2554, 2.1966, -68.5559], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.5168, 2.3035, -67.2892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [10.4611, 2.1463, -69.3103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3372, 2.3272, -66.9699], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [12.344, 2.1708, -68.966], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [10.3455, 1.8395, -73.402], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3539, 1.8656, -73.0016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [10.4043, 1.9912, -71.345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [12.3499, 2.0164, -70.9739], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [16.472, 1.9205, -72.0035], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [16.3302, 2.0699, -70.0397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [14.3999, 1.8929, -72.5318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [14.3285, 2.043, -70.5353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.6197, 0.32, -118.856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.8613, 0.32, -119.7351], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.5486, 0.32, -120.0033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.794, 0.32, -120.9059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.5891, 0.32, -121.0369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.6984, 0.32, -122.2427], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.121, 0.32, -120.4898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.0409, 0.32, -121.6806], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9171, 0.32, -124.654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.1704, 0.32, -124.0592], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.8078, 0.32, -123.4484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-0.0563, 0.32, -122.8704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.7028, 0.32, -122.2631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.2732, 0.32, -121.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4041, 0.32, -123.2343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.6416, 0.32, -122.0722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6506, 0.3207, -114.1322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.0354, 0.3205, -114.928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6356, 0.3203, -115.3594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.9848, 0.3202, -116.1753], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.1339, 0.3202, -116.0998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.2546, 0.3201, -117.3784], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.4369, 0.3203, -115.6093], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.3509, 0.3201, -116.8743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4797, 0.32, -119.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.1955, 0.32, -119.2984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.3691, 0.32, -118.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.2713, 0.32, -118.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6227, 0.32, -117.7049], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.6272, 0.3201, -116.5448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9002, 0.32, -118.5626], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [2.9406, 0.32, -117.3814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.8183, 0.343, -108.5311], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.3458, 0.3397, -109.247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7571, 0.3303, -110.0548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.2487, 0.3286, -110.7923], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.5434, 0.3341, -110.2945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.711, 0.3256, -111.8736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.8886, 0.3366, -109.8581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.7559, 0.3269, -111.4224], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.0044, 0.3204, -114.7648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.5317, 0.3207, -114.2874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.864, 0.3216, -113.3599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.6375, 0.3223, -112.8953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.6746, 0.3216, -112.8468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.7096, 0.324, -111.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.095, 0.3211, -113.6231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.1656, 0.3231, -112.2478], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.2218, 0.4826, -101.5142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.894, 0.4668, -102.1111], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.0957, 0.4349, -103.3921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.7325, 0.4223, -104.0244], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.712, 0.4407, -102.9702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-0.943, 0.4015, -104.9398], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [1.5797, 0.4525, -102.6168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.3832, 0.4109, -104.5614], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.3597, 0.3489, -108.6114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.0371, 0.3532, -108.1917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.1592, 0.3711, -106.8233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.2021, 0.3779, -106.423], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.8945, 0.3644, -106.9107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9868, 0.3953, -105.1944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.4584, 0.3585, -107.6022], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.5873, 0.3862, -105.858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.8748, 0.7465, -93.4232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.6773, 0.7259, -93.8475], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.6966, 0.6692, -95.5183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.4672, 0.6488, -95.9881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [0.3309, 0.692, -94.4299], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.057, 0.6153, -96.6436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.493, 0.7073, -94.1993], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.251, 0.6304, -96.3805], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.4671, 0.4893, -100.9243], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7912, 0.5029, -100.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-0.2099, 0.5476, -98.8119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [2.016, 0.5622, -98.5168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3657, 0.5376, -99.5705], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.5254, 0.5996, -97.5696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.0718, 0.5193, -100.1281], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.2641, 0.58, -98.0844], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.2558, 1.1086, -85.1918], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.7121, 1.1109, -85.112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.677, 1.0161, -87.1221], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [5.4094, 1.0038, -87.2957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.9609, 1.1097, -84.7442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.0016, 0.9828, -87.4159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.3501, 1.1073, -85.0436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.1701, 0.9929, -87.3933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [0.6095, 0.7776, -92.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7391, 0.7929, -91.9826], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [0.8564, 0.8735, -89.8674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.9739, 0.8877, -89.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.0556, 0.832, -91.2911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [7.2885, 0.9234, -89.1646], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8907, 0.8114, -91.6708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.1231, 0.9046, -89.4769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.2683, 1.6682, -75.8397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.3066, 1.6462, -76.11], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.1836, 1.5242, -78.0298], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [6.1487, 1.503, -78.3044], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.4838, 1.6069, -76.5039], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.181, 1.466, -78.6712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [4.3836, 1.626, -76.3239], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.1511, 1.484, -78.5078], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [1.1957, 1.2291, -82.4886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.5858, 1.2267, -82.796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [1.7594, 1.3392, -80.6842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.8771, 1.3511, -80.6551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.4213, 1.2311, -82.9085], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.2065, 1.38, -80.3581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.9209, 1.231, -82.8651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.0322, 1.3638, -80.5674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.7263, 2.2821, -67.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [6.998, 2.2598, -67.7581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [8.6145, 2.1241, -69.5789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.8173, 2.103, -69.7965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [3.9427, 2.1844, -68.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [3.4146, 2.0524, -70.279], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [5.3912, 2.229, -68.0754], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [5.0873, 2.0793, -70.0232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [2.7429, 1.7565, -74.3146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [4.5989, 1.775, -74.1565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [3.0302, 1.9078, -72.2116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [4.8236, 1.9275, -72.0466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [8.3864, 1.8158, -73.7217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [8.5015, 1.9682, -71.6381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.4754, 1.7945, -73.9661], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [6.6434, 1.9474, -71.8624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.2569, 0.32, -121.2936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.8807, 0.32, -121.2515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4002, 0.32, -122.5081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.0571, 0.32, -122.4685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.0302, 0.32, -120.5362], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2709, 0.32, -121.7461], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.4689, 0.32, -120.9769], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6777, 0.32, -122.1919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.7522, 0.32, -124.1659], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.0953, 0.32, -124.6219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.5115, 0.32, -122.956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.8865, 0.32, -123.4069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.6869, 0.32, -124.9369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.5436, 0.32, -123.7225], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.4099, 0.32, -124.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2335, 0.32, -123.6856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.666, 0.3201, -116.3232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.1576, 0.32, -116.2717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.8206, 0.32, -117.6098], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.3452, 0.32, -117.5605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.0502, 0.32, -115.5856], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.302, 0.32, -116.8669], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.6164, 0.32, -116.0057], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.8364, 0.32, -117.2922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.7895, 0.32, -119.3264], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2601, 0.32, -119.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-12.5476, 0.32, -118.1086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.0501, 0.32, -118.539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.1135, 0.32, -120.0791], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.9689, 0.32, -118.8565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.7042, 0.32, -120.0344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.5266, 0.32, -118.8094], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.94, 0.3323, -110.4865], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.2996, 0.3314, -110.4266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.1415, 0.3247, -112.0743], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-6.5342, 0.3242, -112.0169], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.9354, 0.3309, -109.7702], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.2343, 0.3239, -111.3533], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.6291, 0.3309, -110.1695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8961, 0.3239, -111.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7898, 0.32, -114.2486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.3878, 0.32, -114.6635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.5184, 0.3208, -112.842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-9.1483, 0.3208, -113.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5027, 0.3202, -114.9807], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.3285, 0.3212, -113.5684], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.9613, 0.3201, -114.9273], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.7541, 0.3209, -113.513], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9721, 0.4326, -103.1107], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.1992, 0.428, -103.0309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.2369, 0.395, -105.0959], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.4968, 0.3914, -105.0228], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.5779, 0.4259, -102.3979], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.9397, 0.3897, -104.3848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.3991, 0.4261, -102.7778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-7.729, 0.3899, -104.7694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6199, 0.3433, -108.0802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-8.3455, 0.3434, -108.4746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.2876, 0.3625, -106.282], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.045, 0.3627, -106.6714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.722, 0.3458, -108.7933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.4872, 0.3664, -106.9933], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.0484, 0.3441, -108.73], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-5.7803, 0.3638, -106.9256], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.8001, 0.6814, -94.4911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-3.8988, 0.6755, -94.3761], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.106, 0.6048, -96.7258], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-4.2366, 0.5989, -96.6203], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.0227, 0.6728, -93.7578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.4242, 0.5962, -95.9987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.9709, 0.673, -94.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3406, 0.5965, -96.3652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.2036, 0.4723, -100.3307], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-7.0566, 0.4725, -100.706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.8184, 0.5292, -98.1936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7031, 0.5295, -98.5645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-2.6942, 0.48, -101.0468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.4048, 0.5375, -98.9148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8887, 0.4747, -100.9594], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.5672, 0.5318, -98.8186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-1.0612, 1.0966, -84.6864], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-2.7144, 1.0695, -84.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-1.0299, 0.9711, -87.4162], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-2.9454, 0.9592, -87.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-6.3772, 1.0532, -84.5383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-6.7922, 0.9509, -86.866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-4.4938, 1.0562, -84.8349], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-4.8529, 0.9523, -87.195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.616, 0.7585, -91.4828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-5.596, 0.7587, -91.8406], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-7.2055, 0.8519, -89.1832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-5.2207, 0.8524, -89.5325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.4893, 0.7671, -92.2219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-1.2093, 0.8628, -89.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-3.5557, 0.7612, -92.0976], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-3.2262, 0.8557, -89.7745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.573, 0.32, -119.9957], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0957, 0.32, -119.3558], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.8453, 0.32, -121.1989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.3993, 0.32, -120.5507], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.0325, 0.32, -117.5153], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.3966, 0.32, -118.6828], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5862, 0.32, -118.5509], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.9205, 0.32, -119.7344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1249, 0.32, -121.0178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.589, 0.32, -122.1013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.7608, 0.32, -119.8503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.2547, 0.32, -120.9178], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.3898, 0.32, -123.6052], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.1175, 0.32, -122.4021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.0063, 0.32, -122.9404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.7028, 0.32, -121.7455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4667, 0.32, -115.0719], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.8643, 0.32, -114.4651], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.7501, 0.32, -116.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1789, 0.32, -115.7315], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.5583, 0.3202, -112.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9337, 0.3201, -113.9723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.2318, 0.3201, -113.7053], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5772, 0.32, -114.9605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.6683, 0.32, -116.3477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.2519, 0.32, -117.3674], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.3029, 0.32, -115.172], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.9164, 0.32, -116.1758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.3008, 0.32, -118.7926], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.0273, 0.32, -117.5815], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7922, 0.32, -118.1609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-17.4874, 0.32, -116.9581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.2256, 0.3309, -109.2834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.4979, 0.3312, -108.7095], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.556, 0.3239, -110.8598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.8597, 0.324, -110.2776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.9491, 0.3334, -107.0837], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.3714, 0.3253, -108.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.7425, 0.3319, -107.9943], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1349, 0.3244, -109.5511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-21.1742, 0.3204, -111.4371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8777, 0.3201, -112.3944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.7792, 0.3216, -110.0717], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.5127, 0.3211, -111.0137], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.1747, 0.32, -113.7417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8717, 0.3208, -112.3418], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.5409, 0.32, -113.1431], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-16.2067, 0.3208, -111.7514], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-11.7417, 0.4263, -101.938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.8892, 0.4275, -101.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-12.1351, 0.39, -103.9182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.3138, 0.391, -103.3698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.1015, 0.4361, -99.8951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.5848, 0.3979, -101.8338], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.012, 0.4305, -100.7327], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.4667, 0.3933, -102.6911], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.5102, 0.3474, -105.4374], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.3334, 0.345, -106.3312], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.0549, 0.3686, -103.6843], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.9076, 0.3652, -104.5604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.8785, 0.3434, -107.6002], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5145, 0.3628, -105.8087], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.1196, 0.3439, -107.0347], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.7244, 0.3634, -105.2517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.0602, 0.6735, -93.3247], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.084, 0.6752, -92.821], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-10.4932, 0.5969, -95.5589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5478, 0.5985, -95.046], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.0722, 0.6862, -91.4629], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.5905, 0.6095, -93.65], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-14.0895, 0.679, -92.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-14.5821, 0.6023, -94.4223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.6069, 0.4841, -97.8778], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5452, 0.4776, -98.6945], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-17.1026, 0.542, -95.7921], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.068, 0.535, -96.5871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.3358, 0.4728, -99.8774], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.919, 0.5299, -97.7471], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.4523, 0.4742, -99.3466], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-13.0045, 0.5314, -97.2252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-8.2883, 1.0541, -84.1321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-10.1895, 1.0557, -83.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-8.7349, 0.9517, -86.4531], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-10.6666, 0.9534, -85.977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.9679, 1.0655, -82.4655], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-14.4968, 0.9636, -84.7371], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.0822, 1.0592, -83.1167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-12.5873, 0.957, -85.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-15.5498, 0.7718, -89.2426], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-13.592, 0.7647, -89.9677], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-15.0243, 0.865, -86.9984], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-13.0909, 0.8581, -87.6991], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-9.6219, 0.7592, -91.0564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-9.1797, 0.8527, -88.7636], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-11.6149, 0.7609, -90.5619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-11.1421, 0.8544, -88.2782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.4225, 0.32, -116.1835], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.757, 0.32, -114.525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8155, 0.32, -117.329], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.1772, 0.32, -115.6417], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.3135, 0.3206, -110.2453], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.7794, 0.3202, -111.2846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.0495, 0.3202, -112.5441], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.4943, 0.3201, -113.6253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.7108, 0.32, -113.3623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.3837, 0.32, -115.7871], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.2452, 0.32, -112.3235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.939, 0.32, -114.7063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.6014, 0.32, -119.6197], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.2085, 0.32, -118.4744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.0175, 0.32, -117.8745], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.5973, 0.32, -116.7582], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.8328, 0.3204, -111.4876], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.0584, 0.3211, -109.9424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.2371, 0.3201, -112.7059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.49, 0.3205, -111.1328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.4325, 0.3265, -105.9707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9089, 0.324, -107.0842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2525, 0.3229, -108.1019], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.7085, 0.3216, -109.2575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8473, 0.3212, -109.2055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.6046, 0.3204, -111.4624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3799, 0.3223, -108.1571], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.1584, 0.3209, -110.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0295, 0.32, -115.0379], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.6352, 0.32, -113.884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.3368, 0.3201, -113.408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.9153, 0.3202, -112.2827], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1077, 0.3359, -105.9235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.2254, 0.3403, -104.491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5589, 0.3268, -107.4422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.7032, 0.3297, -105.9801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.4346, 0.3595, -100.8449], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.9507, 0.3446, -102.246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.3263, 0.3477, -102.7951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.8264, 0.3352, -104.2455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.9484, 0.3299, -104.8006], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.788, 0.3247, -106.8894], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4549, 0.3353, -103.5618], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.3132, 0.3282, -105.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.4196, 0.3209, -110.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.9956, 0.3224, -108.8682], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.618, 0.322, -108.6952], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.1668, 0.3243, -107.378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1494, 0.4455, -98.8394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.1678, 0.459, -97.5506], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.6591, 0.4056, -100.7492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.7007, 0.4168, -99.4205], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.2487, 0.4976, -94.3381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-26.81, 0.4513, -96.0884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.1899, 0.4764, -96.0448], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.7406, 0.432, -97.8621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.9051, 0.3819, -99.3502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.8113, 0.3675, -101.2464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.3629, 0.4126, -97.7619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.2819, 0.3957, -99.599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6403, 0.3514, -104.3007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.1567, 0.3744, -102.5728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.7318, 0.3577, -102.9001], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.2228, 0.3832, -101.2068], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.0275, 0.698, -90.5394], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.9701, 0.7143, -89.4331], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.5669, 0.6212, -92.6913], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.5261, 0.6376, -91.5366], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9537, 0.7562, -86.7452], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.5329, 0.6805, -88.7136], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9341, 0.7341, -88.1623], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.5031, 0.6577, -90.2045], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6812, 0.5513, -92.5195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-23.6323, 0.5289, -94.1561], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.109, 0.6122, -90.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.0696, 0.5893, -92.2059], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.6296, 0.4947, -96.8527], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-19.1015, 0.5534, -94.7995], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.6266, 0.5098, -95.6063], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.0788, 0.5694, -93.598], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-15.8482, 1.0754, -81.6904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.6683, 1.0917, -80.7704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-16.3948, 0.9742, -83.9242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.2668, 0.9897, -82.9622], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7743, 1.1571, -78.4313], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.9257, 1.0362, -80.617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-19.3179, 1.1186, -79.6841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-20.0835, 1.0115, -81.8511], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.3721, 0.8395, -84.7459], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.364, 0.8184, -86.0898], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-22.7331, 0.9319, -82.71], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.7655, 0.9107, -83.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-17.485, 0.7833, -88.3553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-16.9406, 0.8761, -86.148], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.4124, 0.7992, -87.2986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-18.8482, 0.8916, -85.1404], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.5624, 0.3212, -107.633], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.8463, 0.3221, -104.7883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.045, 0.3204, -108.624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.3421, 0.3208, -105.7269], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.8663, 0.3238, -99.032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3868, 0.3214, -99.8721], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.252, 0.323, -101.8687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7596, 0.3211, -102.7556], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.4264, 0.32, -101.5504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.7734, 0.32, -104.528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.9068, 0.3203, -100.7114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.2667, 0.3202, -103.6419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0097, 0.32, -110.605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-35.5274, 0.3201, -109.6146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.3325, 0.32, -107.6032], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8374, 0.3202, -106.6652], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.6158, 0.3326, -103.5536], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.8497, 0.3407, -100.9222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.1076, 0.3281, -104.6174], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.3525, 0.3336, -101.931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.7798, 0.3561, -95.5712], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.3011, 0.344, -96.4732], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.2119, 0.3491, -98.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7237, 0.3393, -99.1685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.3449, 0.3282, -98.1909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.7436, 0.3265, -100.9812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.823, 0.3348, -97.3422], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.2342, 0.3319, -100.0858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0793, 0.3226, -106.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5949, 0.3249, -105.6415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.3498, 0.3245, -103.849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8522, 0.3283, -102.9016], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.5744, 0.3768, -98.6492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.7892, 0.3984, -96.2714], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.0982, 0.359, -99.989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.3137, 0.3774, -97.54], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.6955, 0.4386, -91.4407], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.2194, 0.412, -92.5616], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.142, 0.4203, -93.8293], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.6649, 0.3962, -95.023], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.2597, 0.3712, -94.6233], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6987, 0.3614, -97.2117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.7402, 0.3897, -93.6213], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1834, 0.3769, -96.1491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.1178, 0.3385, -102.4343], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6123, 0.3467, -101.2484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.343, 0.3498, -99.8601], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.8313, 0.3616, -98.7345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.3771, 0.5225, -92.4469], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.609, 0.549, -90.4214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.9398, 0.4751, -94.1139], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.1669, 0.5015, -91.9928], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-35.5223, 0.593, -86.3069], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0833, 0.5467, -87.6866], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.9792, 0.5737, -88.3465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.5339, 0.5267, -89.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.1667, 0.4697, -90.2548], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.6135, 0.4499, -92.5637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.6304, 0.5057, -89.003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.0781, 0.4854, -91.2259], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0398, 0.4019, -97.2222], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4945, 0.4347, -95.708], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.2569, 0.4259, -94.9231], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.7162, 0.4604, -93.4951], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.0628, 0.7795, -85.2], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.2821, 0.8021, -83.5608], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.6505, 0.7048, -87.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.8798, 0.7289, -85.3492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-33.0783, 0.8357, -80.2005], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.7246, 0.7654, -81.8083], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.6183, 0.8217, -81.8776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.2336, 0.75, -83.5718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.944, 0.6446, -84.8654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.4121, 0.6265, -86.8114], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.3456, 0.7019, -83.3645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.8309, 0.6851, -85.2182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.8076, 0.5765, -90.7141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.2321, 0.6372, -88.9232], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.0423, 0.6027, -88.7862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.4662, 0.6625, -87.0932], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.8451, 1.1775, -77.2119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.4703, 1.1788, -76.0236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.9841, 1.0565, -79.3123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.2706, 1.0706, -77.9599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.2023, 1.1933, -73.3413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.967, 1.0917, -75.1101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.8829, 1.1858, -74.7123], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.6178, 1.0822, -76.5528], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-32.4042, 0.9132, -78.545], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.9831, 0.9005, -80.1408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-31.7007, 0.9984, -76.8464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-29.3205, 0.9872, -78.365], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.4691, 0.8615, -83.2842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.8134, 0.9527, -81.3287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-27.6721, 0.8826, -81.7348], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.0206, 0.9714, -79.8706], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.8335, 1.6623, -69.5486], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.8342, 1.6721, -68.3975], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.4623, 1.5255, -71.5199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-23.5541, 1.5355, -70.3251], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.8577, 1.6861, -66.0694], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.7288, 1.5505, -67.9013], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.841, 1.6804, -67.2393], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.6408, 1.5442, -69.1199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.4059, 1.3037, -71.5455], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.1455, 1.2972, -72.8575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-28.5798, 1.4229, -69.7294], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.4069, 1.4165, -70.9942], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.1205, 1.2937, -75.2491], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-21.9037, 1.4021, -73.4288], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.7739, 1.2917, -74.1117], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-24.1844, 1.4091, -72.227], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-18.7376, 2.2281, -62.0384], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.0258, 2.2642, -60.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-18.9873, 2.099, -63.779], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-20.644, 2.1163, -62.7064], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.2565, 2.2913, -58.7956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-24.1673, 2.1339, -60.6071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.558, 2.2838, -59.8125], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-22.3709, 2.1281, -61.6518], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-25.9712, 1.8295, -64.2419], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-24.0206, 1.8243, -65.3643], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0733, 1.9793, -62.4219], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-23.1929, 1.9743, -63.5014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-20.1334, 1.8083, -67.5695], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-19.479, 1.9569, -65.6318], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-22.0754, 1.8169, -66.4715], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-21.3284, 1.9666, -64.569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.7759, 0.3242, -96.4356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.9993, 0.3242, -94.1532], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.3128, 0.3215, -97.2385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.557, 0.3215, -94.9302], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.187, 0.3233, -90.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7983, 0.3212, -91.242], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.4863, 0.3239, -92.1744], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.0689, 0.3214, -92.9353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.0225, 0.32, -92.7408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.235, 0.32, -94.4508], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.4102, 0.3202, -91.9922], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.6519, 0.3203, -93.6938], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3856, 0.32, -98.8415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.8493, 0.3203, -98.0403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.6723, 0.32, -96.4797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.1147, 0.3203, -95.7055], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.6308, 0.3599, -93.1289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.7784, 0.3602, -90.9551], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.1647, 0.3466, -93.9887], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.3294, 0.3466, -91.7838], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.7587, 0.3528, -87.3927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.3614, 0.3415, -88.1893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.1713, 0.3575, -89.0447], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.745, 0.3447, -89.8526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.5766, 0.3271, -89.7317], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.9041, 0.3283, -91.4102], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9677, 0.333, -88.967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3231, 0.3351, -90.6387], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.2384, 0.329, -95.631], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.701, 0.3364, -94.8191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.4414, 0.329, -93.3738], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8843, 0.3363, -92.587], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.5127, 0.4493, -89.2234], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5961, 0.4511, -87.2316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.0449, 0.4213, -90.2797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.147, 0.4228, -88.2352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.3297, 0.4334, -83.8862], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.9558, 0.4077, -84.8267], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.8877, 0.4454, -85.4557], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4695, 0.4179, -86.4202], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.1607, 0.3675, -86.5716], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.6036, 0.3739, -88.208], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5629, 0.3857, -85.7191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.0389, 0.3941, -87.3354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.1007, 0.3767, -92.2285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.5731, 0.3971, -91.2801], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.2328, 0.3773, -90.0919], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.6908, 0.3982, -89.1869], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.273, 0.6032, -84.3874], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.2209, 0.6032, -82.6248], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.8577, 0.5578, -85.6893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.8495, 0.5585, -83.8685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.4854, 0.5786, -79.526], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.256, 0.5351, -80.7103], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.3102, 0.5945, -81.0081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.0015, 0.5505, -82.2126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-49.6748, 0.463, -82.8892], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.2861, 0.4764, -84.4352], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.9847, 0.4967, -81.831], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.6587, 0.5113, -83.3546], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.9734, 0.4812, -88.1072], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.4231, 0.5172, -86.9292], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.0327, 0.483, -86.1709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.452, 0.5186, -85.0502], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.669, 0.8418, -78.5796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.372, 0.8393, -77.0363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3656, 0.7725, -80.1166], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.1394, 0.7705, -78.5215], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.9405, 0.8139, -74.1554], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.8971, 0.7447, -75.5886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.1437, 0.8296, -75.5638], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-41.9989, 0.7608, -77.0149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.6695, 0.6276, -78.2767], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.5809, 0.6439, -79.7395], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.8067, 0.6828, -76.9634], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.8109, 0.6991, -78.4076], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.6649, 0.6537, -83.0235], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.03, 0.71, -81.5989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.5617, 0.653, -81.3183], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.8686, 0.7086, -79.9497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.5312, 1.1966, -71.9625], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9066, 1.1938, -70.6009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.368, 1.0955, -73.6764], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.8293, 1.0925, -72.2726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.6786, 1.1737, -67.9218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8013, 1.0707, -69.5425], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.2989, 1.1858, -69.2547], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-38.318, 1.0839, -70.8956], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-42.937, 0.8911, -72.6663], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-40.244, 0.9061, -74.0569], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-41.889, 0.9766, -71.1263], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.3009, 0.9907, -72.4986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.9376, 0.9184, -76.9907], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.1704, 1.0028, -75.3544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.5642, 0.9156, -75.4965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.7159, 0.9999, -73.9065], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-28.8883, 1.6884, -64.883], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.9262, 1.687, -63.6786], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.8337, 1.5529, -66.6704], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.9533, 1.5511, -65.428], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-34.9533, 1.6754, -61.2217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.1559, 1.5373, -62.9126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9537, 1.6824, -62.4576], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.0674, 1.5456, -64.1752], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.5259, 1.286, -66.2713], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.2469, 1.2969, -67.5823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-37.3492, 1.4073, -64.5987], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.1674, 1.417, -65.8863], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-31.6607, 1.3066, -70.2186], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-30.7597, 1.4255, -68.4517], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.9498, 1.3041, -68.8978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-32.9633, 1.4233, -67.1707], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-25.0056, 2.2933, -57.7718], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-26.7428, 2.2936, -56.7138], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-25.9852, 2.136, -59.5442], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-27.7948, 2.1358, -58.4501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-30.1441, 2.2896, -54.5066], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.3449, 2.13, -56.1789], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.4587, 2.2922, -55.6245], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-29.5851, 2.1337, -57.3274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-33.749, 1.8211, -59.5344], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.8334, 1.8269, -60.7424], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-32.5463, 1.9732, -57.8541], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-30.7102, 1.978, -59.0328], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-27.9293, 1.8316, -63.0981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-26.9606, 1.9815, -61.3191], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-29.8884, 1.8306, -61.9309], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-28.844, 1.9809, -60.1886], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0513, 0.3227, -89.086], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.9931, 0.322, -87.9119], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.6946, 0.321, -89.8385], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.6711, 0.3207, -88.6693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.6187, 0.3208, -85.8593], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.3707, 0.3203, -86.6364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.8897, 0.3213, -86.8689], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.6042, 0.3205, -87.635], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.8761, 0.32, -88.1842], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.0351, 0.32, -89.1599], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.1232, 0.3201, -87.411], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.3195, 0.3201, -88.3983], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9832, 0.32, -91.3353], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.3387, 0.3202, -90.5878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.0291, 0.32, -90.176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.3499, 0.3201, -89.4236], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.4895, 0.3467, -85.994], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.2801, 0.3399, -84.8009], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.1284, 0.3373, -86.7881], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9615, 0.3329, -85.5997], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.5767, 0.3276, -82.6701], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-68.3523, 0.3249, -83.4909], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.0145, 0.3333, -83.723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.7424, 0.3286, -84.5316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-69.8673, 0.3216, -85.079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.176, 0.3228, -86.0989], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1139, 0.323, -84.2917], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.4616, 0.3252, -85.3217], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.4092, 0.3257, -88.3291], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-57.7682, 0.3305, -87.5648], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.3162, 0.3242, -87.1503], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.6396, 0.3278, -86.3812], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.864, 0.4165, -82.5134], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-57.4138, 0.3966, -81.2962], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-54.5498, 0.3934, -83.4468], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.172, 0.3768, -82.2372], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-64.1748, 0.3582, -79.0356], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.0917, 0.345, -80.0156], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-60.8827, 0.3763, -80.1612], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-61.7201, 0.3599, -81.1196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.781, 0.3312, -81.823], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.2741, 0.3396, -82.8904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-65.9566, 0.3365, -80.9414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5133, 0.348, -82.026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.8514, 0.3589, -85.1776], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.2086, 0.3743, -84.3316], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.5934, 0.3492, -83.9795], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-58.8947, 0.3612, -83.1283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6906, 0.5568, -78.1675], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.8642, 0.5311, -76.9026], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5556, 0.5137, -79.3501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.8342, 0.4885, -78.0986], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.8453, 0.4793, -74.4573], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-61.0278, 0.438, -75.7011], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-56.9384, 0.5044, -75.6822], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.0166, 0.4624, -76.9007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-63.1941, 0.3777, -77.9916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.9891, 0.3985, -79.1409], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.1446, 0.4042, -76.8797], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.0336, 0.4271, -78.0538], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.1401, 0.444, -81.5223], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.3714, 0.4763, -80.4681], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.608, 0.4216, -80.2953], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.7485, 0.4521, -79.2295], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-46.7187, 0.7936, -72.804], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.4358, 0.7704, -71.4931], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.7867, 0.7236, -74.2345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.6204, 0.6993, -72.9326], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-54.5189, 0.7233, -68.8878], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.9294, 0.6499, -70.3596], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0497, 0.7462, -70.1965], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.3506, 0.674, -71.6515], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.5985, 0.5282, -73.1498], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.7993, 0.5535, -74.399], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2913, 0.5849, -71.782], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-54.6019, 0.6099, -73.0539], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-49.7741, 0.6057, -76.9196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8056, 0.6612, -75.6074], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.8376, 0.5802, -75.6413], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-51.7554, 0.6361, -74.3167], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0164, 1.1585, -66.6004], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-44.2858, 1.1413, -65.285], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.246, 1.054, -68.2101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6224, 1.0351, -66.8905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.5271, 1.1066, -62.6354], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.0611, 0.9971, -64.2382], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-46.4638, 1.1235, -63.9664], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-47.9031, 1.0156, -65.5709], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-53.0656, 0.8055, -67.3723], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-50.7039, 0.8271, -68.6936], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-51.5768, 0.8968, -65.8198], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-49.3191, 0.9168, -67.1492], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.6031, 0.8718, -71.3192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.4436, 0.9585, -69.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.2042, 0.8498, -70.0021], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9308, 0.938, -68.4654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-36.9075, 1.6663, -59.9722], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-38.8021, 1.656, -58.7112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-38.1985, 1.5267, -61.6412], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.1785, 1.5147, -60.3615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.3697, 1.6335, -56.1654], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8974, 1.4895, -57.7775], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6264, 1.6449, -57.4414], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.0825, 1.5021, -59.0735], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.9833, 1.2254, -61.0195], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.0088, 1.2408, -62.3436], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.4376, 1.3533, -59.3978], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-43.5459, 1.3672, -60.7101], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.7606, 1.2723, -64.9637], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-39.4854, 1.3952, -63.3079], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.9281, 1.2568, -63.6564], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-41.5564, 1.3815, -62.0126], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-31.7896, 2.2858, -53.363], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.3891, 2.281, -52.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-33.063, 2.125, -55.0071], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-34.7317, 2.119, -53.8176], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-36.4379, 2.2673, -49.8584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.9018, 2.1033, -51.4199], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.9395, 2.2749, -51.0287], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.3462, 2.1117, -52.619], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-40.8618, 1.7847, -54.5687], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.185, 1.7949, -55.8214], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3745, 1.9419, -52.9884], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.7598, 1.9512, -54.2152], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-35.6201, 1.8135, -58.3091], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-34.3393, 1.967, -56.6549], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-37.4349, 1.8047, -57.0698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-36.0792, 1.9596, -55.4397], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.0575, 0.3204, -84.7855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-77.189, 0.3201, -83.6127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-74.8471, 0.3201, -85.574], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-78.0082, 0.32, -84.4132], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-82.881, 0.32, -81.0834], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-83.6924, 0.32, -81.915], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-80.1009, 0.32, -82.3693], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.9274, 0.32, -83.1841], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-84.3993, 0.32, -83.6825], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-82.2482, 0.32, -84.8497], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-84.2379, 0.32, -82.7768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.6432, 0.32, -84.0108], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.427, 0.32, -87.146], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.6369, 0.32, -86.3605], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.5808, 0.32, -86.0182], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-78.8055, 0.32, -85.2149], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8505, 0.3236, -81.5519], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-73.8213, 0.3213, -80.3369], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-71.6728, 0.3223, -82.3849], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.6881, 0.3208, -81.1814], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-79.2001, 0.32, -77.7274], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-80.1521, 0.32, -78.5929], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-76.5756, 0.3203, -79.0529], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.4855, 0.3202, -79.9081], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-81.981, 0.32, -80.2615], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-79.2376, 0.3201, -81.5575], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-81.0752, 0.32, -79.4345], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.3693, 0.3201, -80.74], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.2685, 0.3208, -83.9944], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-72.4762, 0.3214, -83.1967], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-76.3627, 0.3203, -82.8112], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-75.5322, 0.3205, -82.0034], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-67.1937, 0.3448, -77.846], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.9317, 0.3366, -76.5685], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.1844, 0.3341, -78.8467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.9883, 0.3278, -77.5867], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-74.8858, 0.33, -73.8504], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-76.0597, 0.3236, -74.8977], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.469, 0.3322, -75.2283], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-73.5859, 0.3247, -76.2617], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-78.2075, 0.32, -76.8286], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-75.6292, 0.3204, -78.1658], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-77.1638, 0.3207, -75.8879], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-74.636, 0.3213, -77.2381], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0016, 0.3252, -80.6902], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-69.1167, 0.3282, -79.7916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-72.9225, 0.3219, -79.4621], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.9817, 0.3235, -78.5483], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-62.5172, 0.4584, -73.1788], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-64.9537, 0.4424, -71.832], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-63.7928, 0.4183, -74.4445], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-66.3095, 0.4039, -73.1141], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-69.3898, 0.4195, -69.0116], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-70.8818, 0.3849, -70.3159], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.2222, 0.4299, -70.4364], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-68.6489, 0.3933, -71.7308], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-73.6326, 0.3415, -72.7383], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-71.2751, 0.3453, -74.1296], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-72.297, 0.3593, -71.5591], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-70.0008, 0.3654, -72.9628], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-66.1334, 0.3618, -76.7802], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.999, 0.3862, -75.6457], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-68.8012, 0.3516, -75.4848], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.5929, 0.3738, -74.3325], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-56.8013, 0.7036, -67.5408], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-58.9022, 0.6877, -66.1488], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-58.3092, 0.6292, -69.0253], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.4941, 0.6125, -67.6403], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.7665, 0.6628, -63.2811], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.5016, 0.5866, -64.7758], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-60.8733, 0.6744, -64.7246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-62.5396, 0.5987, -66.2189], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-67.8239, 0.4645, -67.6493], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-65.7237, 0.4762, -69.0824], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-66.1909, 0.5204, -66.2346], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-64.1596, 0.5326, -67.6741], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-61.1744, 0.5068, -71.8505], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-59.7694, 0.5636, -70.464], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-63.5284, 0.4899, -70.4888], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-62.0389, 0.5466, -69.0893], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.4525, 1.0919, -61.2829], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.2471, 1.0797, -59.9075], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-52.0691, 0.9811, -62.8796], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.934, 0.9681, -61.4927], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.5935, 1.0601, -57.1142], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.3981, 0.9474, -58.6665], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.9483, 1.0694, -58.5157], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-55.6967, 0.9571, -60.0857], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-60.9966, 0.7485, -61.7589], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-59.1703, 0.7595, -63.1988], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-59.2032, 0.8434, -60.2177], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.4411, 0.8538, -61.6496], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-55.2529, 0.787, -66.0168], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-53.6724, 0.8795, -64.4603], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-57.2718, 0.772, -64.6218], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-55.6123, 0.8655, -63.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-44.0213, 1.6226, -54.8858], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-45.588, 1.6122, -53.6042], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.6096, 1.4778, -56.4734], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-47.2263, 1.4673, -55.1624], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-48.5638, 1.5926, -51.0373], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.2822, 1.4483, -52.5275], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.0941, 1.6023, -52.3212], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.7748, 1.4576, -53.8465], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-53.8013, 1.1815, -55.5698], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-52.207, 1.1905, -56.9484], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-52.0295, 1.3111, -54.0396], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-50.4807, 1.3201, -55.3904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-48.8319, 1.2119, -59.6783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-47.2154, 1.3407, -58.073], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-50.5618, 1.2004, -58.3196], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-48.8862, 1.3298, -56.7361], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-37.8812, 2.2579, -48.6998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-39.2823, 2.2433, -47.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-39.3939, 2.0937, -50.2289], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.8315, 2.0814, -49.0731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.069, 2.1751, -46.0746], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.6273, 2.0419, -47.0007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.6702, 2.2171, -46.7147], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.2371, 2.0641, -47.9981], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-46.8783, 1.7433, -49.5726], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-45.4439, 1.7537, -50.8192], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-45.2307, 1.8959, -48.1904], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-43.8256, 1.9091, -49.3641], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Object3D", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdeble", + "type": "Mesh", + "position": [-42.4571, 1.7743, -53.3165], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-40.9169, 1.9319, -51.766], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Object3D", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champsdetournesol", + "type": "Mesh", + "position": [-43.9773, 1.764, -52.067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Object3D", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "champdesoja", + "type": "Mesh", + "position": [-42.3939, 1.9211, -50.5553], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.2011, 1.4661, -73.2713], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.9739, 2.2208, -62.0513], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.1109, 2.2016, -62.5744], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-1.2916, 2.1778, -63.1634], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.5211, 2.1497, -63.8148], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.1959, 2.1173, -64.5244], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.855, 2.0809, -65.288], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.452, 2.0408, -66.1008], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.9834, 1.9971, -66.9578], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.4458, 1.9501, -67.8538], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.8365, 1.9002, -68.7831], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.1529, 1.8475, -69.7401], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.3931, 1.7925, -70.7189], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.5557, 1.7355, -71.7134], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.6396, 1.6769, -72.7175], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.6444, 1.6169, -73.725], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.57, 1.556, -74.7298], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.4168, 1.4946, -75.7255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [3.1859, 1.433, -76.7061], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.8785, 1.3716, -77.6656], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.4967, 1.3107, -78.5979], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [2.0428, 1.2509, -79.4974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [1.5196, 1.1923, -80.3585], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.9302, 1.1355, -81.176], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [0.2784, 1.0806, -81.9447], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-0.4318, 1.0282, -82.6599], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-1.1961, 0.9785, -83.3172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.0098, 0.9317, -83.9126], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-2.8678, 0.8883, -84.4424], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-3.7649, 0.8484, -84.9033], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-4.6955, 0.8123, -85.2925], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-5.6538, 0.7803, -85.6076], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-6.634, 0.7525, -85.8466], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-7.6301, 0.7291, -86.0081], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-8.6358, 0.7102, -86.0911], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-9.645, 0.696, -86.095], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-10.6515, 0.6866, -86.0199], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-11.649, 0.6819, -85.8662], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-12.6315, 0.6821, -85.6348], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-13.5928, 0.6871, -85.3272], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-14.527, 0.6969, -84.9453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-15.4284, 0.7115, -84.4914], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-16.2914, 0.7307, -83.9683], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.1107, 0.7545, -83.3793], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.8812, 0.7826, -82.7279], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-18.5982, 0.8149, -82.0183], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.2573, 0.8513, -81.2547], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.8543, 0.8915, -80.4419], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.3857, 0.9352, -79.5849], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.8481, 0.9822, -78.6889], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.2388, 1.0321, -77.7596], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.5552, 1.0847, -76.8026], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.7954, 1.1397, -75.8238], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.958, 1.1967, -74.8293], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.0419, 1.2554, -73.8252], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-22.0467, 1.3153, -72.8177], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.9723, 1.3762, -71.8129], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.8191, 1.4377, -70.8172], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.5882, 1.4993, -69.8366], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-21.2808, 1.5607, -68.8771], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.899, 1.6215, -67.9448], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-20.4451, 1.6814, -67.0453], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.9219, 1.74, -66.1842], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-19.3325, 1.7968, -65.3667], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-18.6807, 1.8516, -64.598], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.9705, 1.9041, -63.8828], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-17.2061, 1.9538, -63.2255], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-16.3925, 2.0005, -62.6301], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-15.5345, 2.044, -62.1003], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-14.6374, 2.0839, -61.6394], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-13.7068, 2.1199, -61.2502], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-12.7485, 2.152, -60.9351], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-11.7683, 2.1798, -60.6961], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-10.7722, 2.2032, -60.5346], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-9.7665, 2.222, -60.4516], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Object3D", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buissons", + "type": "Mesh", + "position": [-8.7573, 2.2363, -60.4477], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buisson", + "type": "Object3D", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "buisson", + "type": "Mesh", + "position": [-3.8753, 2.2353, -61.5974], + "rotation": [0, -1.3425, 0.0611], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [15.5934, 12.2303, -55.7924], + "rotation": [0, -1.3459, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [23.6042, 12.2056, -54.3256], + "rotation": [3.1416, -1.2064, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [25.1521, 4.5721, -52.7184], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [23.7445, 5.1185, -47.6378], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [22.4669, 5.6433, -42.8696], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [21.1892, 6.1667, -38.1014], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [19.9116, 6.6736, -33.3332], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.634, 7.1481, -28.565], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.0796, 4.4272, -56.0501], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.5428, 5.069, -49.8067], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [7.875, 5.6433, -44.4033], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.1334, 6.1667, -39.4736], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.3917, 6.6736, -34.544], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.6501, 7.1481, -29.6144], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.7733, 4.4663, -49.5524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-13.2497, 5.0877, -44.0609], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.9609, 5.6433, -39.3562], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-8.7198, 6.1667, -34.9578], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-6.4788, 6.6736, -30.5595], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-4.2377, 7.1481, -26.1611], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-31.2557, 4.4246, -38.8524], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-26.7041, 5.0683, -34.5246], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-22.831, 5.6433, -30.7321], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-19.3404, 6.1667, -27.2415], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.8499, 6.6736, -23.751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-12.3593, 7.1481, -20.2604], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "fermeverticale", + "type": "Object3D", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "fermeverticale", + "type": "Mesh", + "position": [-9.0708, 6.2455, -73.4499], + "rotation": [3.1416, -1.1848, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_energie", + "type": "Object3D", + "position": [-27.5945, 21.397, 47.1257], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneaux_solaires", + "type": "Object3D", + "position": [-17.1413, 22.0484, 63.5207], + "rotation": [-3.1416, -0.9294, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-10.9609, 11.4533, 44.2127], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-13.3989, 10.8827, 49.007], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-16.1713, 10.2534, 54.4731], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-19.2382, 9.5971, 60.6433], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-22.68, 8.9223, 67.968], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-15.2119, 11.4533, 41.7584], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-18.0794, 10.8871, 46.2581], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-21.3082, 10.2619, 51.416], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-25.0016, 9.6041, 57.238], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-29.2323, 8.9386, 63.948], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-31.6073, 11.4388, 23.7113], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-36.9334, 10.8263, 25.9768], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-43.5709, 10.1107, 28.4525], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-51.5494, 9.3386, 31.2783], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-60.7835, 8.5942, 34.4905], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-33.8988, 11.4093, 19.2129], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-39.9516, 10.7463, 20.9368], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-47.3876, 9.9812, 22.8252], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-56.5479, 9.1491, 25.0751], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Object3D", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneausolaire", + "type": "Mesh", + "position": [-67.31, 8.3628, 27.6916], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "éoliennes", + "type": "Object3D", + "position": [-59.7973, 14.9524, 67.6246], + "rotation": [-3.0892, -0.5648, 3.1086], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-101.7219, 9.64, 35.5855], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-96.3411, 9.6638, 34.2207], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-88.6595, 9.8136, 32.5998], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-78.6098, 10.179, 30.3728], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-83.6124, 9.7039, 56.7266], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-77.4056, 9.8765, 53.0477], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-69.7499, 10.1964, 48.9467], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-54.0653, 9.7911, 84.0645], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-50.4377, 9.9939, 78.6954], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-46.0413, 10.3125, 72.4522], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-37.3404, 9.6853, 101.322], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-33.848, 9.8609, 94.2003], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-30.1569, 10.203, 85.6015], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Object3D", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "eoliennes", + "type": "Mesh", + "position": [-26.4013, 10.7082, 76.51], + "rotation": [0, 0, 0], + "scale": [1, 1, 1] + }, + { + "name": "generateur", + "type": "Object3D", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "generateur", + "type": "Mesh", + "position": [-42.8812, 6.8698, 49.3909], + "rotation": [-3.1416, -1.1286, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_fabrik", + "type": "Object3D", + "position": [46.6166, 8.9438, 48.0178], + "rotation": [0, -1.5519, 0], + "scale": [1, 1, 1] + }, + { + "name": "lafabrik", + "type": "Object3D", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + }, + { + "name": "lafabrik", + "type": "Mesh", + "position": [59.4973, 6.2746, 64.6354], + "rotation": [-3.1416, -0.7309, -3.1416], + "scale": [1, 2, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [41.2436, 4.9268, 85.9236], + "rotation": [-3.1416, -0.7879, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [43.9828, 3.8964, 80.0347], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [38.9058, 5.8659, 84.9543], + "rotation": [3.0968, -0.7874, 3.1104], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [83.3002, 3.6735, 55.0352], + "rotation": [-3.1101, -0.35, 3.1367], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Object3D", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "maison1", + "type": "Mesh", + "position": [34.7889, 5.1067, 66.1299], + "rotation": [-3.1416, -1.0563, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [68.0365, 12.8264, 90.8185], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [72.189, 3.1922, 85.8558], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [66.1929, 5.1605, 89.6013], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble1", + "type": "Object3D", + "position": [61.7855, 15.3193, 38.8586], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Object3D", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_2", + "type": "Mesh", + "position": [65.9379, 5.6851, 33.8958], + "rotation": [-3.1416, -0.5678, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Object3D", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "immeuble_1", + "type": "Mesh", + "position": [59.9418, 7.6534, 37.6414], + "rotation": [-3.1416, -0.5678, -3.1416], + "scale": [1, 1, 1] + }, + { + "name": "zone_ecole", + "type": "Object3D", + "position": [10.1419, 5.8757, 2.3941], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "panneauaffichage", + "type": "Object3D", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + }, + { + "name": "panneauxquartier", + "type": "Mesh", + "position": [8.2972, 8.0037, 10.0366], + "rotation": [0, -0.9992, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [10.5089, 7.6513, 2.9349], + "rotation": [0, -1.0353, -0.0055], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [16.8482, 7.511, 28.974], + "rotation": [-3.1362, -0.2388, -3.1387], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [8.6632, 7.5306, 29.671], + "rotation": [-3.1371, 0.0689, -3.1388], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [0.6516, 7.5615, 27.8561], + "rotation": [-3.138, 0.3766, -3.1386], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-6.4338, 7.6009, 23.6998], + "rotation": [-3.1392, 0.6844, -3.138], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-11.9275, 7.645, 17.5926], + "rotation": [-3.1412, 0.9921, -3.1365], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-15.3132, 7.6897, 10.1083], + "rotation": [3.1362, 1.2998, -3.1312], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-16.2729, 7.7307, 1.95], + "rotation": [0.0805, 1.5339, -0.0758], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-14.7164, 7.7644, -6.1157], + "rotation": [0.0125, 1.2263, -0.0083], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-10.7899, 7.7874, -13.3312], + "rotation": [0.0084, 0.9186, -0.0046], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-4.8623, 7.7976, -19.0184], + "rotation": [0.0067, 0.6108, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [2.5094, 7.794, -22.643], + "rotation": [0.0056, 0.3031, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [10.6327, 7.7771, -23.8645], + "rotation": [0.0047, -0.0046, -0.0028], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.7443, 7.7484, -22.5682], + "rotation": [0.0038, -0.3123, -0.0029], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.0822, 7.7105, -18.8758], + "rotation": [0.0027, -0.6201, -0.0034], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [31.957, 7.667, -13.1342], + "rotation": [0.001, -0.9278, -0.0047], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [35.8167, 7.6221, -5.8829], + "rotation": [-0.0033, -1.2355, -0.0085], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [37.2986, 7.58, 2.1968], + "rotation": [-0.0964, -1.5431, -0.1011], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [36.2636, 7.5445, 10.3459], + "rotation": [-3.1272, -1.2906, -3.1315], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [32.8088, 7.5191, 17.7987], + "rotation": [-3.1327, -0.9829, -3.1366], + "scale": [1, 1, 1] + }, + { + "name": "arbres", + "type": "Object3D", + "position": [10.5369, 8.853, 2.8109], + "rotation": [0, -1.068, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [14.4287, 8.133, 21.4285], + "rotation": [3.1416, -0.2061, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [8.6067, 8.133, 21.7327], + "rotation": [3.1416, 0.1017, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [2.966, 8.133, 20.2592], + "rotation": [3.1416, 0.4094, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-1.9633, 8.133, 17.1464], + "rotation": [3.1416, 0.7171, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-5.7183, 8.133, 12.6867], + "rotation": [3.1416, 1.0248, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-7.946, 8.133, 7.2992], + "rotation": [-3.1416, 1.3326, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-8.4372, 8.133, 1.4899], + "rotation": [0, 1.5013, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [-7.1458, 8.133, -4.1952], + "rotation": [0, 1.1936, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [-4.193, 8.133, -9.222], + "rotation": [0, 0.8858, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [0.1437, 8.133, -13.1184], + "rotation": [0, 0.5781, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [5.4568, 8.133, -15.5181], + "rotation": [0, 0.2704, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [11.2472, 8.133, -16.1958], + "rotation": [0, -0.0374, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [16.9709, 8.133, -15.0878], + "rotation": [0, -0.3451, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.0901, 8.133, -12.2982], + "rotation": [0, -0.6528, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.1238, 8.133, -8.089], + "rotation": [0, -0.9605, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [28.6931, 8.133, -2.8557], + "rotation": [0, -1.2683, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.5566, 8.133, 2.9099], + "rotation": [3.1416, -1.5656, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [28.6332, 8.133, 8.6663], + "rotation": [3.1416, -1.2579, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [26.0095, 8.133, 13.8725], + "rotation": [3.1416, -0.9501, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbres-école", + "type": "Object3D", + "position": [18.8994, 5.8757, 33.6246], + "rotation": [3.1416, -1.2697, 3.1416], + "scale": [1, 1, 1] + }, + { + "name": "arbres_1", + "type": "Object3D", + "position": [5.7855, 5.9004, 30.7708], + "rotation": [0, -1.0401, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [19.0257, 8.3175, 11.2279], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.5162, 8.1211, 14.7185], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [26.0068, 7.8363, 18.2091], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [29.4973, 7.4741, 21.6996], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [32.9879, 7.0481, 25.1902], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [15.902, 8.3175, 13.4974], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [18.143, 8.1211, 17.8958], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Object3D", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "arbre", + "type": "Mesh", + "position": [20.3841, 7.8363, 22.2942], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [22.6252, 7.4741, 26.6925], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Object3D", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "sapin", + "type": "Mesh", + "position": [24.8663, 7.0481, 31.0909], + "rotation": [0, -0.4189, 0], + "scale": [1, 1, 1] + }, + { + "name": "lecole", + "type": "Object3D", + "position": [10.1128, 12.1274, 2.4945], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [-0.3102, 11.6246, 9.1989], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [-0.3102, 11.6246, 9.1989], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [20.5307, 11.6246, -4.2067], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [20.5307, 11.6246, -4.2067], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Object3D", + "position": [10.1178, 13.133, 2.4913], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "bati-ecole", + "type": "Mesh", + "position": [10.1178, 13.133, 2.4913], + "rotation": [0, -0.9992, 0], + "scale": [1, 2, 1] + }, + { + "name": "mc", + "type": "Object3D", + "position": [62.5671, 1.7151, 69.806], + "rotation": [0.0343, 0.0005, 0.0245], + "scale": [1, 1, 1] + }, + { + "name": "mc", + "type": "Mesh", + "position": [62.5671, 1.7151, 69.806], + "rotation": [0.0343, 0.0005, 0.0245], + "scale": [1, 1, 1] + } +] diff --git a/public/models/arbre-animated/arbre2.bin b/public/models/arbre-animated/arbre2.bin new file mode 100644 index 0000000..889456c --- /dev/null +++ b/public/models/arbre-animated/arbre2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20a47149173711dfb6b0f7cecdf562e8ec1d6524d68ac8631996bd9b617359 +size 2321496 diff --git a/public/models/arbre-animated/feuilles_baseColor.png b/public/models/arbre-animated/feuilles_baseColor.png new file mode 100644 index 0000000..c5c1385 --- /dev/null +++ b/public/models/arbre-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323f0ef891001c8d2bfc5a3bda119549054c8c28b65f4fdbe4e897aa8d16238d +size 2069601 diff --git a/public/models/arbre-animated/feuilles_normal.png b/public/models/arbre-animated/feuilles_normal.png new file mode 100644 index 0000000..11b0858 --- /dev/null +++ b/public/models/arbre-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9313948d3283b28ea6c6596025bbf4a64654dedae859707733dddad24ebaada +size 2749901 diff --git a/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..60e21c9 --- /dev/null +++ b/public/models/arbre-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be047bb366bd36681c5f9c9faccd5f392f35855dbef93d2b23182ccd71a7427d +size 364038 diff --git a/public/models/arbre-animated/model.gltf b/public/models/arbre-animated/model.gltf new file mode 100644 index 0000000..4482153 --- /dev/null +++ b/public/models/arbre-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9d1dfad5b9fd7aacfd1e5ccb14a1c766eddeb9923772b66b6ad5f980e3114b +size 2290342 diff --git a/public/models/arbre-animated/tronc_baseColor.png b/public/models/arbre-animated/tronc_baseColor.png new file mode 100644 index 0000000..8a3e879 --- /dev/null +++ b/public/models/arbre-animated/tronc_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a428d3a084e22871417a7ede7c0ba009ca12b6f67f2b06fdef57cb8819b60b +size 721296 diff --git a/public/models/arbre-animated/tronc_normal.png b/public/models/arbre-animated/tronc_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/arbre-animated/tronc_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png b/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..76246c0 --- /dev/null +++ b/public/models/arbre-animated/tronc_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb0286e3c0be4f7c5c2720eb56d85bb522e5a567ce1d5856b775a63cda1197e +size 16901 diff --git a/public/models/arbre/arbre.bin b/public/models/arbre/arbre.bin new file mode 100644 index 0000000..889456c --- /dev/null +++ b/public/models/arbre/arbre.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20a47149173711dfb6b0f7cecdf562e8ec1d6524d68ac8631996bd9b617359 +size 2321496 diff --git a/public/models/arbre/arbre.glb b/public/models/arbre/arbre.glb new file mode 100644 index 0000000..3dae041 --- /dev/null +++ b/public/models/arbre/arbre.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a55b404a579fd891c8bdf3e85519a38da73f81a4f5dc6e9355b48bba550d097d +size 14256732 diff --git a/public/models/arbre/feuilles_baseColor.png b/public/models/arbre/feuilles_baseColor.png new file mode 100644 index 0000000..5774648 --- /dev/null +++ b/public/models/arbre/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea960d6139edd7f4b488b5b9a9549331edad8aaad80d5c1de05dae0b523d5f15 +size 2396375 diff --git a/public/models/arbre/feuilles_normal.png b/public/models/arbre/feuilles_normal.png new file mode 100644 index 0000000..ebe7983 --- /dev/null +++ b/public/models/arbre/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ffb9add4169252be91a4ec8b53e707139a4e86910f1594d28c185bc5b536ae +size 3013728 diff --git a/public/models/arbre/feuilles_occlusionRoughnessMetallic.png b/public/models/arbre/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..7706c8f --- /dev/null +++ b/public/models/arbre/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16f1e24e32c13d3b4511664d7c93c8a4c1b00a0013bc870f46269fc933e07b9 +size 629215 diff --git a/public/models/arbre/model.gltf b/public/models/arbre/model.gltf new file mode 100644 index 0000000..979ab7d --- /dev/null +++ b/public/models/arbre/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcaafb1f5cb8cde2f144fde14e13021c3d59cd93a807238fab2c661cb8650679 +size 10808285 diff --git a/public/models/arbre/tronc_baseColor.png b/public/models/arbre/tronc_baseColor.png new file mode 100644 index 0000000..1a634a2 --- /dev/null +++ b/public/models/arbre/tronc_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d29e2a2144a873730d153e0d708fad6a616bb8355b48f4b1bada37c78e17ab +size 940797 diff --git a/public/models/arbre/tronc_normal.png b/public/models/arbre/tronc_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/arbre/tronc_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/arbre/tronc_occlusionRoughnessMetallic.png b/public/models/arbre/tronc_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..2048d29 --- /dev/null +++ b/public/models/arbre/tronc_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54f925bd271efb021fddbb9b29fc8cd1a3917e0f7fe7d7b312aaca94ad940af +size 505205 diff --git a/public/models/blocking/model.gltf b/public/models/blocking/model.gltf new file mode 100644 index 0000000..470dd24 --- /dev/null +++ b/public/models/blocking/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37652ebadbb4b71842a064bed561e37150a59ce12c1ff03a2ad3e19f5897ea5d +size 67459015 diff --git a/public/models/boiteauxlettres/boite_Base_color.png b/public/models/boiteauxlettres/boite_Base_color.png new file mode 100644 index 0000000..6f315af --- /dev/null +++ b/public/models/boiteauxlettres/boite_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ad1d479ecd3cdd9ec1484a4edfee2c924c2455024f9f416d518ef1015b64ce +size 388731 diff --git a/public/models/boiteauxlettres/boite_Height.png b/public/models/boiteauxlettres/boite_Height.png new file mode 100644 index 0000000..e5eaa64 --- /dev/null +++ b/public/models/boiteauxlettres/boite_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da35cfd373b35c9f73fcda13ced1ce34ec9f64b888f93b5c272974699ae1fcb +size 4331 diff --git a/public/models/boiteauxlettres/boite_Metallic.png b/public/models/boiteauxlettres/boite_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/boiteauxlettres/boite_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/boiteauxlettres/boite_Mixed_AO.png b/public/models/boiteauxlettres/boite_Mixed_AO.png new file mode 100644 index 0000000..f9f16a3 --- /dev/null +++ b/public/models/boiteauxlettres/boite_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90a512bba6884e498f86fab237330807b68c1667e6ebddb3a5fdc7e4d1b195c +size 224330 diff --git a/public/models/boiteauxlettres/boite_Normal.png b/public/models/boiteauxlettres/boite_Normal.png new file mode 100644 index 0000000..054aad6 --- /dev/null +++ b/public/models/boiteauxlettres/boite_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48df9d20987d208d1fc172507a8dcfe6c8f138babfdb49a9d94391756ac28491 +size 845959 diff --git a/public/models/boiteauxlettres/boite_Normal_OpenGL.png b/public/models/boiteauxlettres/boite_Normal_OpenGL.png new file mode 100644 index 0000000..fd6c00f --- /dev/null +++ b/public/models/boiteauxlettres/boite_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49133f880156e4de5b9678f17dd6515b3003bd55e7868088e9a576d8064492f9 +size 1168744 diff --git a/public/models/boiteauxlettres/boite_Roughness.png b/public/models/boiteauxlettres/boite_Roughness.png new file mode 100644 index 0000000..4c7afb0 --- /dev/null +++ b/public/models/boiteauxlettres/boite_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477b27ee9ccc04c06b14b6bddac32b50ff57558639924b5a2a7d6cd86efe1495 +size 141205 diff --git a/public/models/boiteauxlettres/model.gltf b/public/models/boiteauxlettres/model.gltf new file mode 100644 index 0000000..cafbab0 --- /dev/null +++ b/public/models/boiteauxlettres/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967e4110b96d2d6aed69ff8c74926171e3731d92cf46dc1f38e9ee1d2c5974dd +size 2042092 diff --git a/public/models/boiteauxlettres/notif_Base_color.png b/public/models/boiteauxlettres/notif_Base_color.png new file mode 100644 index 0000000..02ff60e --- /dev/null +++ b/public/models/boiteauxlettres/notif_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d037a6793de89773103988de4c0b3b7d35251596868c78b88c60ee99bf5415 +size 232084 diff --git a/public/models/boiteauxlettres/notif_Height.png b/public/models/boiteauxlettres/notif_Height.png new file mode 100644 index 0000000..e5eaa64 --- /dev/null +++ b/public/models/boiteauxlettres/notif_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da35cfd373b35c9f73fcda13ced1ce34ec9f64b888f93b5c272974699ae1fcb +size 4331 diff --git a/public/models/boiteauxlettres/notif_Metallic.png b/public/models/boiteauxlettres/notif_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/boiteauxlettres/notif_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/boiteauxlettres/notif_Mixed_AO.png b/public/models/boiteauxlettres/notif_Mixed_AO.png new file mode 100644 index 0000000..c73e7fd --- /dev/null +++ b/public/models/boiteauxlettres/notif_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9375f748420a85e80f0dad51065adb769186c49817206f0cb9f866d30c467a4f +size 185393 diff --git a/public/models/boiteauxlettres/notif_Normal.png b/public/models/boiteauxlettres/notif_Normal.png new file mode 100644 index 0000000..2ab6929 --- /dev/null +++ b/public/models/boiteauxlettres/notif_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6152c9fc3b695127dcd250fa153bb755231effde4e583313b8c2df0ceb8d3cb8 +size 302292 diff --git a/public/models/boiteauxlettres/notif_Normal_OpenGL.png b/public/models/boiteauxlettres/notif_Normal_OpenGL.png new file mode 100644 index 0000000..9399d41 --- /dev/null +++ b/public/models/boiteauxlettres/notif_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbfc19a7c3f291f7f2b3b63a2d97d20965b021a067ec5b9f679a1780dab214a7 +size 348778 diff --git a/public/models/boiteauxlettres/notif_Roughness.png b/public/models/boiteauxlettres/notif_Roughness.png new file mode 100644 index 0000000..03cbb54 --- /dev/null +++ b/public/models/boiteauxlettres/notif_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672b53c78a82ee6601fd6fda1f4dcca87dd53a43718e30b8e164c357795020cf +size 79739 diff --git a/public/models/boiteauxlettres/pied_Base_color.png b/public/models/boiteauxlettres/pied_Base_color.png new file mode 100644 index 0000000..bf64b06 --- /dev/null +++ b/public/models/boiteauxlettres/pied_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bdfbba738d018078ccef85f90daccedbd42649440aabddbf7ff5ceb889ed4de +size 73623 diff --git a/public/models/boiteauxlettres/pied_Height.png b/public/models/boiteauxlettres/pied_Height.png new file mode 100644 index 0000000..e5eaa64 --- /dev/null +++ b/public/models/boiteauxlettres/pied_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da35cfd373b35c9f73fcda13ced1ce34ec9f64b888f93b5c272974699ae1fcb +size 4331 diff --git a/public/models/boiteauxlettres/pied_Metallic.png b/public/models/boiteauxlettres/pied_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/boiteauxlettres/pied_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/boiteauxlettres/pied_Mixed_AO.png b/public/models/boiteauxlettres/pied_Mixed_AO.png new file mode 100644 index 0000000..23bae81 --- /dev/null +++ b/public/models/boiteauxlettres/pied_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6737229a00ba5428f6c295ad5b650bcc88e10c4678eaa8baf4c21ebc5ef0de4 +size 71031 diff --git a/public/models/boiteauxlettres/pied_Normal.png b/public/models/boiteauxlettres/pied_Normal.png new file mode 100644 index 0000000..42450ee --- /dev/null +++ b/public/models/boiteauxlettres/pied_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645c0e4f1d0c6c70bb24c30399eca8e8e8e764b6831429db427a938ac0c9a69f +size 320808 diff --git a/public/models/boiteauxlettres/pied_Normal_OpenGL.png b/public/models/boiteauxlettres/pied_Normal_OpenGL.png new file mode 100644 index 0000000..c02c303 --- /dev/null +++ b/public/models/boiteauxlettres/pied_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94347b6dc73866a59e931d64b6020ac074ef2c4fa409eb3546627e47fbed0a90 +size 575290 diff --git a/public/models/boiteauxlettres/pied_Roughness.png b/public/models/boiteauxlettres/pied_Roughness.png new file mode 100644 index 0000000..a2a4276 --- /dev/null +++ b/public/models/boiteauxlettres/pied_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a70837b1122a00a69b41f5f12d9100c7da26a4b70a85db8172f0ff0c70e13a +size 68955 diff --git a/public/models/boiteimmeuble/boite_Base_color.png b/public/models/boiteimmeuble/boite_Base_color.png new file mode 100644 index 0000000..4f03cb2 --- /dev/null +++ b/public/models/boiteimmeuble/boite_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29699637570c55e1f9d5089cb3523f66c69495345bdcc1e392c8caa1ec3b0f4a +size 222640 diff --git a/public/models/boiteimmeuble/boite_Height.png b/public/models/boiteimmeuble/boite_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/boiteimmeuble/boite_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/boiteimmeuble/boite_Metallic.png b/public/models/boiteimmeuble/boite_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/boiteimmeuble/boite_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/boiteimmeuble/boite_Mixed_AO.png b/public/models/boiteimmeuble/boite_Mixed_AO.png new file mode 100644 index 0000000..30ab1fa --- /dev/null +++ b/public/models/boiteimmeuble/boite_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7988fafad66127d2b3e0151449cefeac7774c09a1c2dcce348f32cdeb6650f01 +size 310150 diff --git a/public/models/boiteimmeuble/boite_Normal.png b/public/models/boiteimmeuble/boite_Normal.png new file mode 100644 index 0000000..a89d022 --- /dev/null +++ b/public/models/boiteimmeuble/boite_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5207192f0c75044acc3afa0fe2ccb0225c92d34a8c46a03c74a36bd13c5b1d +size 210467 diff --git a/public/models/boiteimmeuble/boite_Normal_OpenGL.png b/public/models/boiteimmeuble/boite_Normal_OpenGL.png new file mode 100644 index 0000000..3f4cffc --- /dev/null +++ b/public/models/boiteimmeuble/boite_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562382f9e3b17081a7db8b80bcc190d7100ec7cd431d3978e4eeff25c75356c5 +size 214788 diff --git a/public/models/boiteimmeuble/boite_Roughness.png b/public/models/boiteimmeuble/boite_Roughness.png new file mode 100644 index 0000000..996be3f --- /dev/null +++ b/public/models/boiteimmeuble/boite_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d2aed34f998f44d53decf223fb7c053a80b9e710d42424b0a7954115485769 +size 171958 diff --git a/public/models/boiteimmeuble/model.gltf b/public/models/boiteimmeuble/model.gltf new file mode 100644 index 0000000..6c386ba --- /dev/null +++ b/public/models/boiteimmeuble/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895098d5ce087d44822a37c996af2eeba0e9d7823767f5b8732dc828eae32d4c +size 169062 diff --git a/public/models/boiteimmeuble/pied_Base_color.png b/public/models/boiteimmeuble/pied_Base_color.png new file mode 100644 index 0000000..34e605c --- /dev/null +++ b/public/models/boiteimmeuble/pied_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbebc4d6ab29eb09ed1a4e88e660da0635f35340bd5b322c853b0bf3f86f095 +size 66194 diff --git a/public/models/boiteimmeuble/pied_Height.png b/public/models/boiteimmeuble/pied_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/boiteimmeuble/pied_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/boiteimmeuble/pied_Metallic.png b/public/models/boiteimmeuble/pied_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/boiteimmeuble/pied_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/boiteimmeuble/pied_Mixed_AO.png b/public/models/boiteimmeuble/pied_Mixed_AO.png new file mode 100644 index 0000000..0151c28 --- /dev/null +++ b/public/models/boiteimmeuble/pied_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7f361e5bd9e23188e52462fc216b6556a42734c969597c4ae577ac747d40a1 +size 62694 diff --git a/public/models/boiteimmeuble/pied_Normal.png b/public/models/boiteimmeuble/pied_Normal.png new file mode 100644 index 0000000..061f8a7 --- /dev/null +++ b/public/models/boiteimmeuble/pied_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b500d120aa1b34ae4ef6dd839449534f0b7e38e672a73b7c87ed8c93d9136d +size 56210 diff --git a/public/models/boiteimmeuble/pied_Normal_OpenGL.png b/public/models/boiteimmeuble/pied_Normal_OpenGL.png new file mode 100644 index 0000000..224f7c1 --- /dev/null +++ b/public/models/boiteimmeuble/pied_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1993b98507809ff757a3e0e16346813894643e3021f34a4e146491040dccf96f +size 56088 diff --git a/public/models/boiteimmeuble/pied_Roughness.png b/public/models/boiteimmeuble/pied_Roughness.png new file mode 100644 index 0000000..d84ec2a --- /dev/null +++ b/public/models/boiteimmeuble/pied_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9416f8b1a40df4c9ab2fac6c0d62851fd5b93d1602e03cdf08a4c71ac6cb9ac0 +size 52755 diff --git a/public/models/buisson-animated/buisson.bin b/public/models/buisson-animated/buisson.bin new file mode 100644 index 0000000..5a35c39 --- /dev/null +++ b/public/models/buisson-animated/buisson.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1114beb4e6591d4c73c2cdd9c182f1d844090a05130313d93fdb179550ec6c +size 2682000 diff --git a/public/models/buisson-animated/buisson.glb b/public/models/buisson-animated/buisson.glb new file mode 100644 index 0000000..c0dc8cc --- /dev/null +++ b/public/models/buisson-animated/buisson.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793b66fb3b9821dad62b6b4040c0b17d2303c5db61c02458eec400adbe76e113 +size 7551004 diff --git a/public/models/buisson-animated/buisson.spp b/public/models/buisson-animated/buisson.spp new file mode 100644 index 0000000..af53951 Binary files /dev/null and b/public/models/buisson-animated/buisson.spp differ diff --git a/public/models/buisson-animated/feuilles_baseColor.png b/public/models/buisson-animated/feuilles_baseColor.png new file mode 100644 index 0000000..7d3fbe8 --- /dev/null +++ b/public/models/buisson-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca47a38a026ffca3a356f9fc77447212b92dfae429be66ae845d8ef421c77da +size 1526186 diff --git a/public/models/buisson-animated/feuilles_normal.png b/public/models/buisson-animated/feuilles_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/buisson-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/buisson-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/buisson-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..145d3fb --- /dev/null +++ b/public/models/buisson-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a1f3354db419f861be956e192b52b1dda3df5b8e692a99336b3415fdda0134 +size 273656 diff --git a/public/models/buisson-animated/model.gltf b/public/models/buisson-animated/model.gltf new file mode 100644 index 0000000..4eb0a50 --- /dev/null +++ b/public/models/buisson-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21c6d2437c7fda8e258cd4824e75898682223bb9ff1bb23e0f799571d60f8dc +size 838699 diff --git a/public/models/buisson/buisson.bin b/public/models/buisson/buisson.bin new file mode 100644 index 0000000..ad2ce20 --- /dev/null +++ b/public/models/buisson/buisson.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d47f96ddd28b4ffaed28fa40741a984d507264f2efdf6309f05c509c7d1eef +size 2682000 diff --git a/public/models/buisson/feuilles_baseColor.png b/public/models/buisson/feuilles_baseColor.png new file mode 100644 index 0000000..ecd2570 --- /dev/null +++ b/public/models/buisson/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7dfb57dde5a5d3d210dc1481b4ff2f4c1f5a46e31c55a3fa9baa9c675623f1 +size 2634187 diff --git a/public/models/buisson/feuilles_normal.png b/public/models/buisson/feuilles_normal.png new file mode 100644 index 0000000..1c5d9b6 --- /dev/null +++ b/public/models/buisson/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60001dbfc98dffaaa2bcef3ba741add59a62e5a028c5d88d648333985685f4c4 +size 4354207 diff --git a/public/models/buisson/feuilles_occlusionRoughnessMetallic.png b/public/models/buisson/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..62ecb53 --- /dev/null +++ b/public/models/buisson/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4dd1ae1b24fba7d55a8aae41838983d58a518175f268c051581fa53d05b8a7 +size 969003 diff --git a/public/models/buisson/model.gltf b/public/models/buisson/model.gltf new file mode 100644 index 0000000..e4f7abc --- /dev/null +++ b/public/models/buisson/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6228829da0a06a0f325ab8d11daff5ab5199797700ea3ea23842f34472771935 +size 3110 diff --git a/public/models/cable1/cabledroit_Base_color.png b/public/models/cable1/cabledroit_Base_color.png new file mode 100644 index 0000000..17a1e8c --- /dev/null +++ b/public/models/cable1/cabledroit_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613f4ed9175f554bf1ec4b8425ecb2b81fde584414caaaab865bc47582f1ea61 +size 20078 diff --git a/public/models/cable1/cabledroit_Height.png b/public/models/cable1/cabledroit_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/cable1/cabledroit_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/cable1/cabledroit_Metallic.png b/public/models/cable1/cabledroit_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/cable1/cabledroit_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/cable1/cabledroit_Mixed_AO.png b/public/models/cable1/cabledroit_Mixed_AO.png new file mode 100644 index 0000000..5addc6e --- /dev/null +++ b/public/models/cable1/cabledroit_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4808a2bb7e3ae292484eab89442fe12ec00f0c9e60df1f0a3c0a07cd60d31d92 +size 100286 diff --git a/public/models/cable1/cabledroit_Normal.png b/public/models/cable1/cabledroit_Normal.png new file mode 100644 index 0000000..573e9ce --- /dev/null +++ b/public/models/cable1/cabledroit_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2870a832300161a35a832511aa6401a0ef8b301acf79d67eeb8aea6a6f0c6470 +size 144969 diff --git a/public/models/cable1/cabledroit_Normal_OpenGL.png b/public/models/cable1/cabledroit_Normal_OpenGL.png new file mode 100644 index 0000000..5f329f3 --- /dev/null +++ b/public/models/cable1/cabledroit_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300804d6b7edc1d1375366f4a88c78d5f5f11bceb404be860144041c638fd0e6 +size 145487 diff --git a/public/models/cable1/cabledroit_Roughness.png b/public/models/cable1/cabledroit_Roughness.png new file mode 100644 index 0000000..ad7f319 --- /dev/null +++ b/public/models/cable1/cabledroit_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c284c7d004b8ac903385f47bd837da38d89bd62d6cb0ca373d0e7fb13ccebf90 +size 53658 diff --git a/public/models/cable1/model.gltf b/public/models/cable1/model.gltf new file mode 100644 index 0000000..3aa626e --- /dev/null +++ b/public/models/cable1/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facc8c48d1ee272d9fda6e98143c62d9d75302378eaf2e916eebe5493cd1f1d3 +size 372008 diff --git a/public/models/cable2/cablegauche_Base_color.png b/public/models/cable2/cablegauche_Base_color.png new file mode 100644 index 0000000..d9adfcb --- /dev/null +++ b/public/models/cable2/cablegauche_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb15c724f623830d464d72abecd429406c7a4338e6e4a6bf1afd841dbdd0c6f5 +size 31886 diff --git a/public/models/cable2/cablegauche_Height.png b/public/models/cable2/cablegauche_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/cable2/cablegauche_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/cable2/cablegauche_Metallic.png b/public/models/cable2/cablegauche_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/cable2/cablegauche_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/cable2/cablegauche_Mixed_AO.png b/public/models/cable2/cablegauche_Mixed_AO.png new file mode 100644 index 0000000..c421b49 --- /dev/null +++ b/public/models/cable2/cablegauche_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf9d86a1f29600e4af115eb0d3f429240c4f8cdfb773dfc7ce7bff2785b6cd6 +size 98979 diff --git a/public/models/cable2/cablegauche_Normal.png b/public/models/cable2/cablegauche_Normal.png new file mode 100644 index 0000000..816c578 --- /dev/null +++ b/public/models/cable2/cablegauche_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050b424b60d026327146d44bf02cf5f8f3c06525b1ca99b234ade11bc6114ad2 +size 144355 diff --git a/public/models/cable2/cablegauche_Normal_OpenGL.png b/public/models/cable2/cablegauche_Normal_OpenGL.png new file mode 100644 index 0000000..8d99c85 --- /dev/null +++ b/public/models/cable2/cablegauche_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab8fd8bff205eea0af8292bc13ba4687b75e140645a654cdb3247c533ab646c +size 144797 diff --git a/public/models/cable2/cablegauche_Roughness.png b/public/models/cable2/cablegauche_Roughness.png new file mode 100644 index 0000000..f90ec1c --- /dev/null +++ b/public/models/cable2/cablegauche_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252defdb7a8f50a89c6cdad3937776f4aaf10578a6134b8dc8957b25fced770 +size 53435 diff --git a/public/models/cable2/model.gltf b/public/models/cable2/model.gltf new file mode 100644 index 0000000..e6b1c5e --- /dev/null +++ b/public/models/cable2/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8776e348ee8353a186cf0d1f6c3dbec569068bb6eb669e9469d0e8ad8d85e3b +size 388273 diff --git a/public/models/champdeble-animated/champdeble.bin b/public/models/champdeble-animated/champdeble.bin new file mode 100644 index 0000000..819fe47 --- /dev/null +++ b/public/models/champdeble-animated/champdeble.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd99931134d247365305a401d6a7b3c9006332066cfd2390530f69295abe33 +size 363936 diff --git a/public/models/champdeble-animated/grain_baseColor.png b/public/models/champdeble-animated/grain_baseColor.png new file mode 100644 index 0000000..a63f4a8 --- /dev/null +++ b/public/models/champdeble-animated/grain_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bd24ecc154330dbdef4a816c174ca0c4af89d496d13bc3970fc58b16d0bfd0 +size 842707 diff --git a/public/models/champdeble-animated/grain_normal.png b/public/models/champdeble-animated/grain_normal.png new file mode 100644 index 0000000..bdec542 --- /dev/null +++ b/public/models/champdeble-animated/grain_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee467bb3b63fde955ddd32a980fcabdc2ac225cec725836654a383f210b83dc5 +size 3594194 diff --git a/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png b/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..77b4a58 --- /dev/null +++ b/public/models/champdeble-animated/grain_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b8e7915dd41edaf3233a92bee44680a47ebd5ef0124e73f85db49c154e8f2 +size 312258 diff --git a/public/models/champdeble-animated/model.gltf b/public/models/champdeble-animated/model.gltf new file mode 100644 index 0000000..b36a43d --- /dev/null +++ b/public/models/champdeble-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c3941800c0ef3652639bd4417c4e839825b662aea957c6978945e11ce68acf +size 72936 diff --git a/public/models/champdeble-animated/tige_baseColor.png b/public/models/champdeble-animated/tige_baseColor.png new file mode 100644 index 0000000..745a816 --- /dev/null +++ b/public/models/champdeble-animated/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcfd9d1a29d30d1be2c2b3d41085b27005eda543c19cbb9a0c894d6a314a118 +size 469610 diff --git a/public/models/champdeble-animated/tige_normal.png b/public/models/champdeble-animated/tige_normal.png new file mode 100644 index 0000000..911ec51 --- /dev/null +++ b/public/models/champdeble-animated/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0364ad8628be72b90c02a4f18ebf75f15800d3ce2cf4ec70ca98d60b3ae810c9 +size 2877969 diff --git a/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png b/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..e0814bc --- /dev/null +++ b/public/models/champdeble-animated/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500ad09bab225363562bf671ae831f9d7f2d6c1bf8d2b2c8d8b3c4c57ae85fc +size 490442 diff --git a/public/models/champdeble/champdeble.bin b/public/models/champdeble/champdeble.bin new file mode 100644 index 0000000..819fe47 --- /dev/null +++ b/public/models/champdeble/champdeble.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd99931134d247365305a401d6a7b3c9006332066cfd2390530f69295abe33 +size 363936 diff --git a/public/models/champdeble/grain_baseColor.png b/public/models/champdeble/grain_baseColor.png new file mode 100644 index 0000000..a63f4a8 --- /dev/null +++ b/public/models/champdeble/grain_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bd24ecc154330dbdef4a816c174ca0c4af89d496d13bc3970fc58b16d0bfd0 +size 842707 diff --git a/public/models/champdeble/grain_normal.png b/public/models/champdeble/grain_normal.png new file mode 100644 index 0000000..bdec542 --- /dev/null +++ b/public/models/champdeble/grain_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee467bb3b63fde955ddd32a980fcabdc2ac225cec725836654a383f210b83dc5 +size 3594194 diff --git a/public/models/champdeble/grain_occlusionRoughnessMetallic.png b/public/models/champdeble/grain_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..77b4a58 --- /dev/null +++ b/public/models/champdeble/grain_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2b8e7915dd41edaf3233a92bee44680a47ebd5ef0124e73f85db49c154e8f2 +size 312258 diff --git a/public/models/champdeble/model.gltf b/public/models/champdeble/model.gltf new file mode 100644 index 0000000..60eefad --- /dev/null +++ b/public/models/champdeble/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24bc876f0a36d0520d2712bd7d76e0678baca6f1d69bc4fca90b36392fe256d +size 854975 diff --git a/public/models/champdeble/tige_baseColor.png b/public/models/champdeble/tige_baseColor.png new file mode 100644 index 0000000..745a816 --- /dev/null +++ b/public/models/champdeble/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcfd9d1a29d30d1be2c2b3d41085b27005eda543c19cbb9a0c894d6a314a118 +size 469610 diff --git a/public/models/champdeble/tige_normal.png b/public/models/champdeble/tige_normal.png new file mode 100644 index 0000000..911ec51 --- /dev/null +++ b/public/models/champdeble/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0364ad8628be72b90c02a4f18ebf75f15800d3ce2cf4ec70ca98d60b3ae810c9 +size 2877969 diff --git a/public/models/champdeble/tige_occlusionRoughnessMetallic.png b/public/models/champdeble/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..e0814bc --- /dev/null +++ b/public/models/champdeble/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500ad09bab225363562bf671ae831f9d7f2d6c1bf8d2b2c8d8b3c4c57ae85fc +size 490442 diff --git a/public/models/champdesoja-animated/champdesoja2.bin b/public/models/champdesoja-animated/champdesoja2.bin new file mode 100644 index 0000000..771f6ea --- /dev/null +++ b/public/models/champdesoja-animated/champdesoja2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa86e91c58365a48496be381d8b63163b7352af82b0581aeb065fa080e3236e +size 1128384 diff --git a/public/models/champdesoja-animated/feuilles_baseColor.png b/public/models/champdesoja-animated/feuilles_baseColor.png new file mode 100644 index 0000000..ecd2570 --- /dev/null +++ b/public/models/champdesoja-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7dfb57dde5a5d3d210dc1481b4ff2f4c1f5a46e31c55a3fa9baa9c675623f1 +size 2634187 diff --git a/public/models/champdesoja-animated/feuilles_normal.png b/public/models/champdesoja-animated/feuilles_normal.png new file mode 100644 index 0000000..63d51af --- /dev/null +++ b/public/models/champdesoja-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cc608eb53fb2d5115674bc5f59fd69a30acc5fb9f811e7b103e23f49027896 +size 4637388 diff --git a/public/models/champdesoja-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/champdesoja-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/champdesoja-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/champdesoja-animated/model.gltf b/public/models/champdesoja-animated/model.gltf new file mode 100644 index 0000000..8ab084c --- /dev/null +++ b/public/models/champdesoja-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a12b72d259494749d4ee5acced2a49aa90b4ab10cf824b8f2c49c756174b95 +size 357474 diff --git a/public/models/champdesoja-animated/soja_baseColor.png b/public/models/champdesoja-animated/soja_baseColor.png new file mode 100644 index 0000000..050ec5c --- /dev/null +++ b/public/models/champdesoja-animated/soja_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb4e757a7a3da20aff2510e2232787bca86ca86495b9e1de1fffe12122c239b +size 16905 diff --git a/public/models/champdesoja-animated/soja_normal.png b/public/models/champdesoja-animated/soja_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/champdesoja-animated/soja_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png b/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..3ab5386 --- /dev/null +++ b/public/models/champdesoja-animated/soja_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0a66c3d802fa9696aa0ae8d1a4604b66d3d3a3dccdf521d326d41e6f103349 +size 16901 diff --git a/public/models/champdesoja/champdesoja.bin b/public/models/champdesoja/champdesoja.bin new file mode 100644 index 0000000..771f6ea --- /dev/null +++ b/public/models/champdesoja/champdesoja.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa86e91c58365a48496be381d8b63163b7352af82b0581aeb065fa080e3236e +size 1128384 diff --git a/public/models/champdesoja/feuilles_baseColor.png b/public/models/champdesoja/feuilles_baseColor.png new file mode 100644 index 0000000..ecd2570 --- /dev/null +++ b/public/models/champdesoja/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7dfb57dde5a5d3d210dc1481b4ff2f4c1f5a46e31c55a3fa9baa9c675623f1 +size 2634187 diff --git a/public/models/champdesoja/feuilles_normal.png b/public/models/champdesoja/feuilles_normal.png new file mode 100644 index 0000000..63d51af --- /dev/null +++ b/public/models/champdesoja/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77cc608eb53fb2d5115674bc5f59fd69a30acc5fb9f811e7b103e23f49027896 +size 4637388 diff --git a/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png b/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/champdesoja/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/champdesoja/model.gltf b/public/models/champdesoja/model.gltf new file mode 100644 index 0000000..a83fad1 --- /dev/null +++ b/public/models/champdesoja/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d9561b1c9bd1b85f2d9a18c054ddf8edb9e57f6a5a88f9cf4dbde9f1d7e39a +size 12421538 diff --git a/public/models/champdesoja/soja_baseColor.png b/public/models/champdesoja/soja_baseColor.png new file mode 100644 index 0000000..7e090a1 --- /dev/null +++ b/public/models/champdesoja/soja_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce3c1ee8f239b4b20ad7bbb136aecb143caa07b992f4003125450ca573eedcf +size 173580 diff --git a/public/models/champdesoja/soja_normal.png b/public/models/champdesoja/soja_normal.png new file mode 100644 index 0000000..923a0d5 --- /dev/null +++ b/public/models/champdesoja/soja_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271a0bf20b3af0942b29e30014e4df581386ab9217c293fae02f7d3cee50cbab +size 2847749 diff --git a/public/models/champdesoja/soja_occlusionRoughnessMetallic.png b/public/models/champdesoja/soja_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..9a1fed4 --- /dev/null +++ b/public/models/champdesoja/soja_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50af1730efda9c6be0bf339d662bb86f25a4a1afa705e3b956176429f03565b +size 723985 diff --git a/public/models/champsdetournesol-animated/base_baseColor.png b/public/models/champsdetournesol-animated/base_baseColor.png new file mode 100644 index 0000000..9fe787f --- /dev/null +++ b/public/models/champsdetournesol-animated/base_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5cf85078ebdcca499489dcb32d07416db348e46a7aae0653d339bd2521680b +size 261704 diff --git a/public/models/champsdetournesol-animated/base_normal.png b/public/models/champsdetournesol-animated/base_normal.png new file mode 100644 index 0000000..124442f --- /dev/null +++ b/public/models/champsdetournesol-animated/base_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d10e24aa8d2779ddac2ac4b6a7148036ef7a3ba8970abd5a2e98fbb573df619 +size 2693289 diff --git a/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..2ae4877 --- /dev/null +++ b/public/models/champsdetournesol-animated/base_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a9a5d67a8e658da54b8c8cfb8f652c6f147da8fb12b83befb87fd6f6cbddd7 +size 510913 diff --git a/public/models/champsdetournesol-animated/champsdetournesol.bin b/public/models/champsdetournesol-animated/champsdetournesol.bin new file mode 100644 index 0000000..4e0c0e1 --- /dev/null +++ b/public/models/champsdetournesol-animated/champsdetournesol.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1afe0dc856ec63c0109eb28f9ce40b0332a860f438d4edaf4e478bbc0898089 +size 204672 diff --git a/public/models/champsdetournesol-animated/feuille_baseColor.png b/public/models/champsdetournesol-animated/feuille_baseColor.png new file mode 100644 index 0000000..6d0445b --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c787caae39e6f2499412671d7b421677ceccbce709002d527ec454d531ac7832 +size 721191 diff --git a/public/models/champsdetournesol-animated/feuille_normal.png b/public/models/champsdetournesol-animated/feuille_normal.png new file mode 100644 index 0000000..9f4ed74 --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e29eb72a6e680583ccb687b6cc755da903c790df791eb6fdd3169a8778edb9 +size 3102628 diff --git a/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..6213a36 --- /dev/null +++ b/public/models/champsdetournesol-animated/feuille_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68863dc80f0f33c033f90e09a8fc0fe9a29529f03cf163776a6bb747d8ad650a +size 415632 diff --git a/public/models/champsdetournesol-animated/model.gltf b/public/models/champsdetournesol-animated/model.gltf new file mode 100644 index 0000000..31f3c4b --- /dev/null +++ b/public/models/champsdetournesol-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0490deca6ca553c9db408a5b8128aaaeac31d9c4d76faed16697597e9aa047a +size 88399 diff --git a/public/models/champsdetournesol-animated/petale_baseColor.png b/public/models/champsdetournesol-animated/petale_baseColor.png new file mode 100644 index 0000000..fd00a52 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068e21478aa9a38eecb87a91c2a573de7979753b1c3f09940d009af347805c8b +size 809319 diff --git a/public/models/champsdetournesol-animated/petale_normal.png b/public/models/champsdetournesol-animated/petale_normal.png new file mode 100644 index 0000000..93f5d68 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045d2b8a1383af521dbec732851a861516b63abf2a81fa790248df6a4f7762b2 +size 3093088 diff --git a/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f239c51 --- /dev/null +++ b/public/models/champsdetournesol-animated/petale_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db15e44309f4bf2720c540e38b7352479c91ce6698debb28bfe7bd025c483b9 +size 408413 diff --git a/public/models/champsdetournesol-animated/tige_baseColor.png b/public/models/champsdetournesol-animated/tige_baseColor.png new file mode 100644 index 0000000..6f4cb27 --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5890ccf48706e16fd2e40762ad8e5ee9120ddadc7b095f0eb8c3e2592d69a25 +size 421557 diff --git a/public/models/champsdetournesol-animated/tige_normal.png b/public/models/champsdetournesol-animated/tige_normal.png new file mode 100644 index 0000000..2827667 --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3387f32441aca539f393d95ce936aa5e14125d40979c72cc172d67455581eeda +size 3169317 diff --git a/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png b/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f73d44f --- /dev/null +++ b/public/models/champsdetournesol-animated/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4a9aaad64817139d2f3be659172110868534958ddca4bfd1a1f433c526f773 +size 270306 diff --git a/public/models/champsdetournesol/base_baseColor.png b/public/models/champsdetournesol/base_baseColor.png new file mode 100644 index 0000000..9fe787f --- /dev/null +++ b/public/models/champsdetournesol/base_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5cf85078ebdcca499489dcb32d07416db348e46a7aae0653d339bd2521680b +size 261704 diff --git a/public/models/champsdetournesol/base_normal.png b/public/models/champsdetournesol/base_normal.png new file mode 100644 index 0000000..124442f --- /dev/null +++ b/public/models/champsdetournesol/base_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d10e24aa8d2779ddac2ac4b6a7148036ef7a3ba8970abd5a2e98fbb573df619 +size 2693289 diff --git a/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..2ae4877 --- /dev/null +++ b/public/models/champsdetournesol/base_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a9a5d67a8e658da54b8c8cfb8f652c6f147da8fb12b83befb87fd6f6cbddd7 +size 510913 diff --git a/public/models/champsdetournesol/champsdetournesol.bin b/public/models/champsdetournesol/champsdetournesol.bin new file mode 100644 index 0000000..4e0c0e1 --- /dev/null +++ b/public/models/champsdetournesol/champsdetournesol.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1afe0dc856ec63c0109eb28f9ce40b0332a860f438d4edaf4e478bbc0898089 +size 204672 diff --git a/public/models/champsdetournesol/feuille_baseColor.png b/public/models/champsdetournesol/feuille_baseColor.png new file mode 100644 index 0000000..6d0445b --- /dev/null +++ b/public/models/champsdetournesol/feuille_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c787caae39e6f2499412671d7b421677ceccbce709002d527ec454d531ac7832 +size 721191 diff --git a/public/models/champsdetournesol/feuille_normal.png b/public/models/champsdetournesol/feuille_normal.png new file mode 100644 index 0000000..9f4ed74 --- /dev/null +++ b/public/models/champsdetournesol/feuille_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e29eb72a6e680583ccb687b6cc755da903c790df791eb6fdd3169a8778edb9 +size 3102628 diff --git a/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..6213a36 --- /dev/null +++ b/public/models/champsdetournesol/feuille_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68863dc80f0f33c033f90e09a8fc0fe9a29529f03cf163776a6bb747d8ad650a +size 415632 diff --git a/public/models/champsdetournesol/model.gltf b/public/models/champsdetournesol/model.gltf new file mode 100644 index 0000000..a457cc8 --- /dev/null +++ b/public/models/champsdetournesol/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f6e592a320e71c8f84750db6713b0a1469967e55f35063f41ff7f9f8f8403a +size 450752 diff --git a/public/models/champsdetournesol/petale_baseColor.png b/public/models/champsdetournesol/petale_baseColor.png new file mode 100644 index 0000000..fd00a52 --- /dev/null +++ b/public/models/champsdetournesol/petale_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068e21478aa9a38eecb87a91c2a573de7979753b1c3f09940d009af347805c8b +size 809319 diff --git a/public/models/champsdetournesol/petale_normal.png b/public/models/champsdetournesol/petale_normal.png new file mode 100644 index 0000000..93f5d68 --- /dev/null +++ b/public/models/champsdetournesol/petale_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045d2b8a1383af521dbec732851a861516b63abf2a81fa790248df6a4f7762b2 +size 3093088 diff --git a/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f239c51 --- /dev/null +++ b/public/models/champsdetournesol/petale_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db15e44309f4bf2720c540e38b7352479c91ce6698debb28bfe7bd025c483b9 +size 408413 diff --git a/public/models/champsdetournesol/tige_baseColor.png b/public/models/champsdetournesol/tige_baseColor.png new file mode 100644 index 0000000..6f4cb27 --- /dev/null +++ b/public/models/champsdetournesol/tige_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5890ccf48706e16fd2e40762ad8e5ee9120ddadc7b095f0eb8c3e2592d69a25 +size 421557 diff --git a/public/models/champsdetournesol/tige_normal.png b/public/models/champsdetournesol/tige_normal.png new file mode 100644 index 0000000..2827667 --- /dev/null +++ b/public/models/champsdetournesol/tige_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3387f32441aca539f393d95ce936aa5e14125d40979c72cc172d67455581eeda +size 3169317 diff --git a/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png b/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f73d44f --- /dev/null +++ b/public/models/champsdetournesol/tige_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4a9aaad64817139d2f3be659172110868534958ddca4bfd1a1f433c526f773 +size 270306 diff --git a/public/models/chemins/chemin_baseColor.png b/public/models/chemins/chemin_baseColor.png new file mode 100644 index 0000000..e8a5e8b --- /dev/null +++ b/public/models/chemins/chemin_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d84c0a421b3053f622701fd7ed2650008314f0e21c100fbff9b95d62c74cd9 +size 1630361 diff --git a/public/models/chemins/chemin_normal.png b/public/models/chemins/chemin_normal.png new file mode 100644 index 0000000..7ecf444 --- /dev/null +++ b/public/models/chemins/chemin_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de996c090c39ddf8a061aa5d4a38ecada92556915bc63a49d8768ebf9f714ccd +size 2312861 diff --git a/public/models/chemins/chemin_occlusionRoughnessMetallic.png b/public/models/chemins/chemin_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..e631e74 --- /dev/null +++ b/public/models/chemins/chemin_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2316f07a7260c1d154456c81f6f29cd558ebc58129451b41c566287cbe869d +size 1036737 diff --git a/public/models/chemins/chemins.bin b/public/models/chemins/chemins.bin new file mode 100644 index 0000000..2c41af6 --- /dev/null +++ b/public/models/chemins/chemins.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba960011c92ed9d62232442d6244aaddffd76b0393679fcc8d99acbd0f2d708 +size 8208 diff --git a/public/models/chemins/chemins.glb b/public/models/chemins/chemins.glb new file mode 100644 index 0000000..1d58962 --- /dev/null +++ b/public/models/chemins/chemins.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd28ce2e66a217e21f4bdee1e90a30179e880a7cf90dffcfd11208950506375 +size 4991272 diff --git a/public/models/chemins/model.gltf b/public/models/chemins/model.gltf new file mode 100644 index 0000000..00dea0b --- /dev/null +++ b/public/models/chemins/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14e2139e9c3bfbbe53a0f09205ab6bbdb572297206a2b5fe04a13ae73cbe846 +size 2967 diff --git a/public/models/cloud/model.glb b/public/models/cloud/model.glb new file mode 100644 index 0000000..d5ed761 --- /dev/null +++ b/public/models/cloud/model.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfc06d3390e46d0c5e6c2b3844c4f35d015cf0fb877c057c7f90f8f54497f4a +size 197748 diff --git a/public/models/createurdepluie/bac_eau_basecolor.png b/public/models/createurdepluie/bac_eau_basecolor.png new file mode 100644 index 0000000..783cc94 --- /dev/null +++ b/public/models/createurdepluie/bac_eau_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5a6f13068b4d264586739b2398b31ecc58cdaf888f57cd2f4436d4c6c881a1 +size 184487 diff --git a/public/models/createurdepluie/bac_eau_normal.png b/public/models/createurdepluie/bac_eau_normal.png new file mode 100644 index 0000000..de96fbc --- /dev/null +++ b/public/models/createurdepluie/bac_eau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f023b5e27d540faec936a0cd17614375a682cbaffe9a1dc9a1bf3f57442bb32 +size 3221317 diff --git a/public/models/createurdepluie/bac_eau_occlusionroughnessmetallic.png b/public/models/createurdepluie/bac_eau_occlusionroughnessmetallic.png new file mode 100644 index 0000000..b8257a6 --- /dev/null +++ b/public/models/createurdepluie/bac_eau_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfea8322d8fd6c268fef98caeb975e5382006a5524b8e50c870eb64cde78179 +size 492220 diff --git a/public/models/createurdepluie/cable_1_basecolor.png b/public/models/createurdepluie/cable_1_basecolor.png new file mode 100644 index 0000000..1e0cf93 --- /dev/null +++ b/public/models/createurdepluie/cable_1_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5075c237c1aa8b07f9ada565621c1b78a6be0ae996f34966e4ba679085caa81e +size 16903 diff --git a/public/models/createurdepluie/cable_1_normal.png b/public/models/createurdepluie/cable_1_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/createurdepluie/cable_1_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/createurdepluie/cable_1_occlusionroughnessmetallic.png b/public/models/createurdepluie/cable_1_occlusionroughnessmetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/createurdepluie/cable_1_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/createurdepluie/cable_2_basecolor.png b/public/models/createurdepluie/cable_2_basecolor.png new file mode 100644 index 0000000..963528c --- /dev/null +++ b/public/models/createurdepluie/cable_2_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1041f4944fd55c9ef174f68768151a0d47780fa7196113cf10cef793e3f9b78e +size 16905 diff --git a/public/models/createurdepluie/cable_2_normal.png b/public/models/createurdepluie/cable_2_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/createurdepluie/cable_2_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/createurdepluie/cable_2_occlusionroughnessmetallic.png b/public/models/createurdepluie/cable_2_occlusionroughnessmetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/createurdepluie/cable_2_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/createurdepluie/createurdepluie2.bin b/public/models/createurdepluie/createurdepluie2.bin new file mode 100644 index 0000000..deeb205 --- /dev/null +++ b/public/models/createurdepluie/createurdepluie2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94557e24622e737f0576993ab8a2dff46e787abeccf77007366e4d9c489485a4 +size 171384 diff --git a/public/models/createurdepluie/model.gltf b/public/models/createurdepluie/model.gltf new file mode 100644 index 0000000..96bff1f --- /dev/null +++ b/public/models/createurdepluie/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45eaf8de6cd85e5ded7c706f263fdf6b899f7a8ea6fa9d2fc4f1aa9969726d4d +size 28842546 diff --git a/public/models/createurdepluie/refroidisseur_basecolor.png b/public/models/createurdepluie/refroidisseur_basecolor.png new file mode 100644 index 0000000..a6ea95d --- /dev/null +++ b/public/models/createurdepluie/refroidisseur_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9851775687a9d8102d5437c21551e8bba3567777cd0aa886e36cdb25df13453e +size 16902 diff --git a/public/models/createurdepluie/refroidisseur_normal.png b/public/models/createurdepluie/refroidisseur_normal.png new file mode 100644 index 0000000..801e9cd --- /dev/null +++ b/public/models/createurdepluie/refroidisseur_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd2c70e1e64f74362b4e59c3782ad586e05f4b10a58e8ef07736c5b23f27d47 +size 2272612 diff --git a/public/models/createurdepluie/refroidisseur_occlusionroughnessmetallic.png b/public/models/createurdepluie/refroidisseur_occlusionroughnessmetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/createurdepluie/refroidisseur_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/createurdepluie/resistance_basecolor.png b/public/models/createurdepluie/resistance_basecolor.png new file mode 100644 index 0000000..0e8b4c0 --- /dev/null +++ b/public/models/createurdepluie/resistance_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a98ca251ec125b292ca933dcaabde7a8cffc671c196d0912317f5f4b78a02e6 +size 16905 diff --git a/public/models/createurdepluie/resistance_normal.png b/public/models/createurdepluie/resistance_normal.png new file mode 100644 index 0000000..88de4b1 --- /dev/null +++ b/public/models/createurdepluie/resistance_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08afc9f1d8399100be33bd233388a26a1b6b94de95810ab583c491022ae5fb15 +size 2553049 diff --git a/public/models/createurdepluie/resistance_occlusionroughnessmetallic.png b/public/models/createurdepluie/resistance_occlusionroughnessmetallic.png new file mode 100644 index 0000000..a41d659 --- /dev/null +++ b/public/models/createurdepluie/resistance_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265f3084db7db2ea2fe1a1f259b05315ada8cbfcb2b16824ddde8500f904b1f2 +size 300665 diff --git a/public/models/createurdepluie/shell_basecolor.png b/public/models/createurdepluie/shell_basecolor.png new file mode 100644 index 0000000..ce0a7bf --- /dev/null +++ b/public/models/createurdepluie/shell_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5045fd7273b46e817bf56da900602491c7894adc60660c5f08acc99e3d4c87 +size 212626 diff --git a/public/models/createurdepluie/shell_normal.png b/public/models/createurdepluie/shell_normal.png new file mode 100644 index 0000000..0d3c060 --- /dev/null +++ b/public/models/createurdepluie/shell_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05682068f4a19be1f3d40e0f463dc76567d79524f1bd1e99aa38b778b695a92e +size 2505766 diff --git a/public/models/createurdepluie/shell_occlusionroughnessmetallic.png b/public/models/createurdepluie/shell_occlusionroughnessmetallic.png new file mode 100644 index 0000000..8fa3717 --- /dev/null +++ b/public/models/createurdepluie/shell_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee07ba1b25f822098e72df9099dbbdbf73244acb6b0e61e3a735745185ff3c3e +size 347997 diff --git a/public/models/createurdepluie/tuyau_basecolor.png b/public/models/createurdepluie/tuyau_basecolor.png new file mode 100644 index 0000000..eae930e --- /dev/null +++ b/public/models/createurdepluie/tuyau_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0258e8e81b889fcb2bfa625191c750413bfdd5630688321c3b5f4501760880 +size 718156 diff --git a/public/models/createurdepluie/tuyau_normal.png b/public/models/createurdepluie/tuyau_normal.png new file mode 100644 index 0000000..f3d383f --- /dev/null +++ b/public/models/createurdepluie/tuyau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922fc53127b0be5e6c39ae17c5fef31ec6a7a67c4db7e0c141301d5da8c60503 +size 3258002 diff --git a/public/models/createurdepluie/tuyau_occlusionroughnessmetallic.png b/public/models/createurdepluie/tuyau_occlusionroughnessmetallic.png new file mode 100644 index 0000000..1dd17a9 --- /dev/null +++ b/public/models/createurdepluie/tuyau_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30eddef4ecebe9474111a423da53a68c247f77c067214dc77cd490db4b34d39 +size 421486 diff --git a/public/models/ebike/color.png b/public/models/ebike/color.png new file mode 100644 index 0000000..45d6540 --- /dev/null +++ b/public/models/ebike/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f427aa9def171588521008b42339f804d9d7e1c9865b92ac35834ac2205d441 +size 409273 diff --git a/public/models/ebike/model.bin b/public/models/ebike/model.bin new file mode 100644 index 0000000..4829829 --- /dev/null +++ b/public/models/ebike/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f476c9e9d1fa2437f83edf54d7702889b556520257fc0b5c3bec99aefdd5541 +size 3086528 diff --git a/public/models/ebike/model.gltf b/public/models/ebike/model.gltf new file mode 100644 index 0000000..178b740 --- /dev/null +++ b/public/models/ebike/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e93ccfb92f831905c5573f5b55f92592bf3dfffde876a678ac414416b20aa0 +size 2592 diff --git a/public/models/ebike/normal.png b/public/models/ebike/normal.png new file mode 100644 index 0000000..a091c9e --- /dev/null +++ b/public/models/ebike/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1dda1b74dd9e72a248f8ff1c9e9442801a7399f913a2e239b2edce44422916e +size 695202 diff --git a/public/models/ecole/color.png b/public/models/ecole/color.png new file mode 100644 index 0000000..e429381 --- /dev/null +++ b/public/models/ecole/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b780ab89e3b5c3abbff2e391b3b9f73ce89beb6f95277c039ab96f3e4a55ff06 +size 1092715 diff --git a/public/models/ecole/model.bin b/public/models/ecole/model.bin new file mode 100644 index 0000000..cd94e10 --- /dev/null +++ b/public/models/ecole/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b87d09fedf8e84a66f1f81954305898639e52f98a4e76b1df5d6cc56685eaaa +size 276500 diff --git a/public/models/ecole/model.gltf b/public/models/ecole/model.gltf new file mode 100644 index 0000000..c4303b3 --- /dev/null +++ b/public/models/ecole/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bad63ebcfc99e298c275aff15230b889f43157610756becfa61ee6dd1157f93 +size 110421 diff --git a/public/models/ecole/normal.png b/public/models/ecole/normal.png new file mode 100644 index 0000000..79dd979 --- /dev/null +++ b/public/models/ecole/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319fd68e7daaabf75a02d4e8616a8511cd9549c983c83919dc6405060b1b29d3 +size 66300 diff --git a/public/models/electricienne-animated/Mat_baseColor.png b/public/models/electricienne-animated/Mat_baseColor.png new file mode 100644 index 0000000..ba0de35 --- /dev/null +++ b/public/models/electricienne-animated/Mat_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142be230a66ff6bebe321b373e4785283624c3bb5f3565114a6acca6e2d056f2 +size 691735 diff --git a/public/models/electricienne-animated/Mat_normal.png b/public/models/electricienne-animated/Mat_normal.png new file mode 100644 index 0000000..c72e6e2 --- /dev/null +++ b/public/models/electricienne-animated/Mat_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4580790707fc1fc505b3b725a523eac3e985353bc2e566a73ae2d983e87029 +size 1229760 diff --git a/public/models/electricienne-animated/Mat_occlusionRoughnessMetallic.png b/public/models/electricienne-animated/Mat_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..dc6530c --- /dev/null +++ b/public/models/electricienne-animated/Mat_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abdb28a5b27842d8958480f97357a3603b2c0ab46db9ff6bf08e474600c5d49 +size 650826 diff --git a/public/models/electricienne-animated/model.bin b/public/models/electricienne-animated/model.bin new file mode 100644 index 0000000..3a75871 --- /dev/null +++ b/public/models/electricienne-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247407ee9bdb8fa5730a56df06872a224888cde1a4a0592c62d0157608b83f02 +size 2954520 diff --git a/public/models/electricienne-animated/model.gltf b/public/models/electricienne-animated/model.gltf new file mode 100644 index 0000000..fc3c84f --- /dev/null +++ b/public/models/electricienne-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35129131d3f1d70b9648b5ea09d704ffecaab6b52aa03c0ab32b476349b25f92 +size 47180 diff --git a/public/models/electricienne/Mat_baseColor.png b/public/models/electricienne/Mat_baseColor.png new file mode 100644 index 0000000..ba0de35 --- /dev/null +++ b/public/models/electricienne/Mat_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142be230a66ff6bebe321b373e4785283624c3bb5f3565114a6acca6e2d056f2 +size 691735 diff --git a/public/models/electricienne/Mat_normal.png b/public/models/electricienne/Mat_normal.png new file mode 100644 index 0000000..66ca144 --- /dev/null +++ b/public/models/electricienne/Mat_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de14342c19b038a504840385d616c239851b90a289dac974fb6f93e7f3c03b99 +size 3374459 diff --git a/public/models/electricienne/Mat_occlusionRoughnessMetallic.png b/public/models/electricienne/Mat_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..dc6530c --- /dev/null +++ b/public/models/electricienne/Mat_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abdb28a5b27842d8958480f97357a3603b2c0ab46db9ff6bf08e474600c5d49 +size 650826 diff --git a/public/models/electricienne/electricienne.bin b/public/models/electricienne/electricienne.bin new file mode 100644 index 0000000..c1cb8a9 --- /dev/null +++ b/public/models/electricienne/electricienne.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96139291cc9e5f46b3c6526b68d2560af05da817b9d96c8660802705dc0d4fd9 +size 3050928 diff --git a/public/models/electricienne/model.gltf b/public/models/electricienne/model.gltf new file mode 100644 index 0000000..53ed71b --- /dev/null +++ b/public/models/electricienne/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efaeba23122c987375bcbd9c920cea85b0eea02205fe3164e2dcc076e24fa71d +size 3113 diff --git a/public/models/entreetuyaux/model.gltf b/public/models/entreetuyaux/model.gltf new file mode 100644 index 0000000..5856cdd --- /dev/null +++ b/public/models/entreetuyaux/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9139d47048e35da2a32c9201494bf567e5b387e38538204318d20202a47277d5 +size 5686622 diff --git a/public/models/entreetuyaux/tuyaux_Base_color.png b/public/models/entreetuyaux/tuyaux_Base_color.png new file mode 100644 index 0000000..72af993 --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c897989f5ef0b9c3d4b7004ad5faa8b0397b27c0c9fdcca418730fa3b2a4ac4 +size 1775963 diff --git a/public/models/entreetuyaux/tuyaux_Height.png b/public/models/entreetuyaux/tuyaux_Height.png new file mode 100644 index 0000000..4464efb --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94d90aaf485afd38a18a9346daa54c62e80d313a69eb31ef786f8cf8b3751f8 +size 724031 diff --git a/public/models/entreetuyaux/tuyaux_Metallic.png b/public/models/entreetuyaux/tuyaux_Metallic.png new file mode 100644 index 0000000..57fee4d --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f660a908ab1be0b75ce2f029e78832f9ca173f4c2d56930b3d1a7729f5eb9dc +size 407636 diff --git a/public/models/entreetuyaux/tuyaux_Mixed_AO.png b/public/models/entreetuyaux/tuyaux_Mixed_AO.png new file mode 100644 index 0000000..13172ba --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29f3cde5df3e61c74f2991b791f66894f7f5dd78cf9dd3d4e1c74c8db6864f8 +size 488217 diff --git a/public/models/entreetuyaux/tuyaux_Normal.png b/public/models/entreetuyaux/tuyaux_Normal.png new file mode 100644 index 0000000..fd9e2bf --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cfded71a5ea30096f90b5a5e8c00b718f9d410e3087d8cca1a8666d2510ca3 +size 6353201 diff --git a/public/models/entreetuyaux/tuyaux_Normal_OpenGL.png b/public/models/entreetuyaux/tuyaux_Normal_OpenGL.png new file mode 100644 index 0000000..5e4acab --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58074081fb9deabdb9ead053e6df94ef870bdf4bb6db0997c08153afb6a3ff6b +size 4305484 diff --git a/public/models/entreetuyaux/tuyaux_Opacity.png b/public/models/entreetuyaux/tuyaux_Opacity.png new file mode 100644 index 0000000..7ab185e --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Opacity.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a5e26dad9b31f83b5173d195fa0b6f2c5054cf48997a4fc24b3ce8ad544df3 +size 12819 diff --git a/public/models/entreetuyaux/tuyaux_Roughness.png b/public/models/entreetuyaux/tuyaux_Roughness.png new file mode 100644 index 0000000..f472a11 --- /dev/null +++ b/public/models/entreetuyaux/tuyaux_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca98919bf9126d5d2f75300ffc00e79bbb056dd9cf4d0f7a1e56beb637eebfa9 +size 804194 diff --git a/public/models/eolienne/color.png b/public/models/eolienne/color.png new file mode 100644 index 0000000..cb33e5f --- /dev/null +++ b/public/models/eolienne/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e466dba10954acee9cec17a166d57e78258e66e04efb0b3222862f601a10cf1 +size 2607407 diff --git a/public/models/eolienne/model.bin b/public/models/eolienne/model.bin new file mode 100644 index 0000000..5ec2e43 --- /dev/null +++ b/public/models/eolienne/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a12564816f3ca596cf4cef843ed36021becc31e6773592f920c7991fdccdf3 +size 1097460 diff --git a/public/models/eolienne/model.gltf b/public/models/eolienne/model.gltf new file mode 100644 index 0000000..ff969f6 --- /dev/null +++ b/public/models/eolienne/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d013d4edfbedbe8f02550b383a0d9e356c0726b24d27b25ff7f2368b7975bdf +size 3018 diff --git a/public/models/eolienne/normal.png b/public/models/eolienne/normal.png new file mode 100644 index 0000000..97bc53d --- /dev/null +++ b/public/models/eolienne/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f10553cbf6a63ebb4f5a86e497caf16b7dcc84d0e86171392654d54f842363 +size 2336493 diff --git a/public/models/fermeverticale/ferme verticale.bin b/public/models/fermeverticale/ferme verticale.bin new file mode 100644 index 0000000..69ed088 --- /dev/null +++ b/public/models/fermeverticale/ferme verticale.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc8a6bba1b4ccaab30e04e4777963b5a751dbf9b8bba023609b5e9663c88423 +size 15648 diff --git a/public/models/fermeverticale/fermeverticale_baseColor.png b/public/models/fermeverticale/fermeverticale_baseColor.png new file mode 100644 index 0000000..818c751 --- /dev/null +++ b/public/models/fermeverticale/fermeverticale_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf907f69c82779b518b3beaebd298a3c5cd49f2abe97c3d7bac5635652e2d2c +size 1360951 diff --git a/public/models/fermeverticale/fermeverticale_normal.png b/public/models/fermeverticale/fermeverticale_normal.png new file mode 100644 index 0000000..01e3b69 --- /dev/null +++ b/public/models/fermeverticale/fermeverticale_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d36f3571000ab4b2710486ee80a933bc1c13de4c5eb911794ca812d585f445 +size 2708830 diff --git a/public/models/fermeverticale/fermeverticale_occlusionRoughnessMetallic.png b/public/models/fermeverticale/fermeverticale_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..1055413 --- /dev/null +++ b/public/models/fermeverticale/fermeverticale_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6933f6afbcde5115950eb83878ac2be045e450d9a05f81d252a32e98e12f9cd3 +size 1182025 diff --git a/public/models/fermeverticale/model.gltf b/public/models/fermeverticale/model.gltf new file mode 100644 index 0000000..9467409 --- /dev/null +++ b/public/models/fermeverticale/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7696150952db561388cfc959f6506460776a5216cfa233679e176174be29059 +size 3226 diff --git a/public/models/fermier-animated/DefaultMaterial_diffuse.png b/public/models/fermier-animated/DefaultMaterial_diffuse.png new file mode 100644 index 0000000..664a638 --- /dev/null +++ b/public/models/fermier-animated/DefaultMaterial_diffuse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a780979c03029afbe0b4e462aa40f9b3ea35f8975d4d5af7206c7a36962a1db +size 822737 diff --git a/public/models/fermier-animated/DefaultMaterial_normal.png b/public/models/fermier-animated/DefaultMaterial_normal.png new file mode 100644 index 0000000..378a5d7 --- /dev/null +++ b/public/models/fermier-animated/DefaultMaterial_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37290badb8d3112676e42ab34ea64576407eaece66399cac992fca791aa3e8ce +size 3383876 diff --git a/public/models/fermier-animated/model.bin b/public/models/fermier-animated/model.bin new file mode 100644 index 0000000..fc6e582 --- /dev/null +++ b/public/models/fermier-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d97401859772ff52c6a12d94ca717a9990f64ab9134380f505b3ee77ee729e +size 2968864 diff --git a/public/models/fermier-animated/model.gltf b/public/models/fermier-animated/model.gltf new file mode 100644 index 0000000..f559517 --- /dev/null +++ b/public/models/fermier-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966918d0eaaf71f73179fd17d360dad6dc3b42e4632b5c27de1fb5fb8cef90d5 +size 96285 diff --git a/public/models/fermier/defaultmaterial_basecolor.png b/public/models/fermier/defaultmaterial_basecolor.png new file mode 100644 index 0000000..8b84835 --- /dev/null +++ b/public/models/fermier/defaultmaterial_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa240560fc4e379098c14492577be668a24f021ef03e49af790e91bdb108fa3 +size 791788 diff --git a/public/models/fermier/defaultmaterial_normal.png b/public/models/fermier/defaultmaterial_normal.png new file mode 100644 index 0000000..378a5d7 --- /dev/null +++ b/public/models/fermier/defaultmaterial_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37290badb8d3112676e42ab34ea64576407eaece66399cac992fca791aa3e8ce +size 3383876 diff --git a/public/models/fermier/defaultmaterial_occlusionroughnessmetallic.png b/public/models/fermier/defaultmaterial_occlusionroughnessmetallic.png new file mode 100644 index 0000000..65ce6be --- /dev/null +++ b/public/models/fermier/defaultmaterial_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1305efe72137b5c013ffefc8d6ef26b2a256d4496238770bb37d943c21e132e +size 762856 diff --git a/public/models/fermier/fermier.bin b/public/models/fermier/fermier.bin new file mode 100644 index 0000000..c8ff9c9 --- /dev/null +++ b/public/models/fermier/fermier.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fb668d4fc991ac001846eedcf3cc23535baf92607b5b01ce7543d2aeb04963 +size 3186144 diff --git a/public/models/fermier/model.gltf b/public/models/fermier/model.gltf new file mode 100644 index 0000000..01e08d4 --- /dev/null +++ b/public/models/fermier/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1faa8f43d3026dc0a49e52be425539ba761793cda4fe24a421004af5d44da4b7 +size 3146 diff --git a/public/models/galet/galet.bin b/public/models/galet/galet.bin new file mode 100644 index 0000000..1445793 --- /dev/null +++ b/public/models/galet/galet.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3897cd4fc5d1d2090716630dffc10bdafe748e3275f727ee90d91d307e6c02 +size 13968 diff --git a/public/models/galet/galet_basecolor.png b/public/models/galet/galet_basecolor.png new file mode 100644 index 0000000..a20f7df --- /dev/null +++ b/public/models/galet/galet_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d5745b6a621268d1d3d4e6da45c1b92c946ef8c43a865493bae855844c547f +size 492995 diff --git a/public/models/galet/galet_normal.png b/public/models/galet/galet_normal.png new file mode 100644 index 0000000..d8f29af --- /dev/null +++ b/public/models/galet/galet_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044bed9c465d55e5be571862e46aaf5f48172a8572665286068bd005847a5f17 +size 2613811 diff --git a/public/models/galet/galet_occlusionroughnessmetallic.png b/public/models/galet/galet_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/galet/galet_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/galet/model.gltf b/public/models/galet/model.gltf new file mode 100644 index 0000000..e2324f3 --- /dev/null +++ b/public/models/galet/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a4dcd7c5faf03913dd79f1ebbc0970c9db4f2733c36dcf53bb5ef652974c9c +size 3495 diff --git a/public/models/gant_l/gant_basecolor.png b/public/models/gant_l/gant_basecolor.png new file mode 100644 index 0000000..51d12c4 --- /dev/null +++ b/public/models/gant_l/gant_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99011cfdde0fed73e7d8927bce22f38a4f33decf00ccf6eaaa2aadc5ef940b4f +size 330807 diff --git a/public/models/gant_l/gant_normal.png b/public/models/gant_l/gant_normal.png new file mode 100644 index 0000000..95e5e61 --- /dev/null +++ b/public/models/gant_l/gant_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a45f350f230fafcd51c9e19db9f7cab4b86f08cb9b46ce9529517e17c53046 +size 2937255 diff --git a/public/models/gant_l/gant_occlusionroughnessmetallic.png b/public/models/gant_l/gant_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_l/gant_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_l/hanf_l.bin b/public/models/gant_l/hanf_l.bin new file mode 100644 index 0000000..56ed2f6 --- /dev/null +++ b/public/models/gant_l/hanf_l.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a09e932f77bcd6d621caefd216ba3347b7ba3b3ccafad4d321d45bcb58eadf +size 486972 diff --git a/public/models/gant_l/model.gltf b/public/models/gant_l/model.gltf new file mode 100644 index 0000000..06919b0 --- /dev/null +++ b/public/models/gant_l/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb31d7f73070f30f152c974afe0557bbd4c8b1468a5247c71eaf82afd6cc67bb +size 10303 diff --git a/public/models/gant_l_pad/galet_basecolor.png b/public/models/gant_l_pad/galet_basecolor.png new file mode 100644 index 0000000..33f9861 --- /dev/null +++ b/public/models/gant_l_pad/galet_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8230f08a07b4a5cad22e68c563192a664741db2eaa9c6ac481b7b6e2c1f00a5 +size 492994 diff --git a/public/models/gant_l_pad/galet_normal.png b/public/models/gant_l_pad/galet_normal.png new file mode 100644 index 0000000..d8f29af --- /dev/null +++ b/public/models/gant_l_pad/galet_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044bed9c465d55e5be571862e46aaf5f48172a8572665286068bd005847a5f17 +size 2613811 diff --git a/public/models/gant_l_pad/galet_occlusionroughnessmetallic.png b/public/models/gant_l_pad/galet_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_l_pad/galet_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_l_pad/gant_basecolor.png b/public/models/gant_l_pad/gant_basecolor.png new file mode 100644 index 0000000..51d12c4 --- /dev/null +++ b/public/models/gant_l_pad/gant_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99011cfdde0fed73e7d8927bce22f38a4f33decf00ccf6eaaa2aadc5ef940b4f +size 330807 diff --git a/public/models/gant_l_pad/gant_normal.png b/public/models/gant_l_pad/gant_normal.png new file mode 100644 index 0000000..95e5e61 --- /dev/null +++ b/public/models/gant_l_pad/gant_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a45f350f230fafcd51c9e19db9f7cab4b86f08cb9b46ce9529517e17c53046 +size 2937255 diff --git a/public/models/gant_l_pad/gant_occlusionroughnessmetallic.png b/public/models/gant_l_pad/gant_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_l_pad/gant_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_l_pad/gants.bin b/public/models/gant_l_pad/gants.bin new file mode 100644 index 0000000..8bcb26d --- /dev/null +++ b/public/models/gant_l_pad/gants.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fdf3a195f75d3f3f0b2802756ff3441094c1924ca8aef85ead33090b8061191 +size 554472 diff --git a/public/models/gant_l_pad/model.gltf b/public/models/gant_l_pad/model.gltf new file mode 100644 index 0000000..4290eeb --- /dev/null +++ b/public/models/gant_l_pad/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8c8dcc940d9ac53733b9cc747ec366ff8fe9da4b546e7e8d74348f4cb08044 +size 6192 diff --git a/public/models/gant_r/galet_baseColor.png b/public/models/gant_r/galet_baseColor.png new file mode 100644 index 0000000..33f9861 --- /dev/null +++ b/public/models/gant_r/galet_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8230f08a07b4a5cad22e68c563192a664741db2eaa9c6ac481b7b6e2c1f00a5 +size 492994 diff --git a/public/models/gant_r/galet_normal.png b/public/models/gant_r/galet_normal.png new file mode 100644 index 0000000..d8f29af --- /dev/null +++ b/public/models/gant_r/galet_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044bed9c465d55e5be571862e46aaf5f48172a8572665286068bd005847a5f17 +size 2613811 diff --git a/public/models/gant_r/galet_occlusionRoughnessMetallic.png b/public/models/gant_r/galet_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_r/galet_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_r/gant_basecolor.png b/public/models/gant_r/gant_basecolor.png new file mode 100644 index 0000000..51d12c4 --- /dev/null +++ b/public/models/gant_r/gant_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99011cfdde0fed73e7d8927bce22f38a4f33decf00ccf6eaaa2aadc5ef940b4f +size 330807 diff --git a/public/models/gant_r/gant_normal.png b/public/models/gant_r/gant_normal.png new file mode 100644 index 0000000..95e5e61 --- /dev/null +++ b/public/models/gant_r/gant_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a45f350f230fafcd51c9e19db9f7cab4b86f08cb9b46ce9529517e17c53046 +size 2937255 diff --git a/public/models/gant_r/gant_occlusionroughnessmetallic.png b/public/models/gant_r/gant_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_r/gant_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_r/gant_r.bin b/public/models/gant_r/gant_r.bin new file mode 100644 index 0000000..c9f74e4 --- /dev/null +++ b/public/models/gant_r/gant_r.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36e76761c1b733c53f5ce307f8d05db7e74f04b52a14d0dfb745330d8a39f93 +size 540504 diff --git a/public/models/gant_r/model.bin b/public/models/gant_r/model.bin new file mode 100644 index 0000000..ddaf087 --- /dev/null +++ b/public/models/gant_r/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94caa72fe32b36c373174f83aad4658df02ddd55de862b5f62357e879597b592 +size 1384136 diff --git a/public/models/gant_r/model.glb b/public/models/gant_r/model.glb new file mode 100644 index 0000000..bd52ef8 --- /dev/null +++ b/public/models/gant_r/model.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09384178466e1dc10ae2db681655117d34ee8010a06a469cc07c9078bfaf512b +size 7815820 diff --git a/public/models/gant_r/model.gltf b/public/models/gant_r/model.gltf new file mode 100644 index 0000000..3618596 --- /dev/null +++ b/public/models/gant_r/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82eb9596e0829193b8c860670ff9cad959dfcced8d17183c2347346870d267b +size 31499 diff --git a/public/models/gant_r_pad/galet_basecolor.png b/public/models/gant_r_pad/galet_basecolor.png new file mode 100644 index 0000000..33f9861 --- /dev/null +++ b/public/models/gant_r_pad/galet_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8230f08a07b4a5cad22e68c563192a664741db2eaa9c6ac481b7b6e2c1f00a5 +size 492994 diff --git a/public/models/gant_r_pad/galet_normal.png b/public/models/gant_r_pad/galet_normal.png new file mode 100644 index 0000000..d8f29af --- /dev/null +++ b/public/models/gant_r_pad/galet_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044bed9c465d55e5be571862e46aaf5f48172a8572665286068bd005847a5f17 +size 2613811 diff --git a/public/models/gant_r_pad/galet_occlusionroughnessmetallic.png b/public/models/gant_r_pad/galet_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_r_pad/galet_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_r_pad/gant_basecolor.png b/public/models/gant_r_pad/gant_basecolor.png new file mode 100644 index 0000000..51d12c4 --- /dev/null +++ b/public/models/gant_r_pad/gant_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99011cfdde0fed73e7d8927bce22f38a4f33decf00ccf6eaaa2aadc5ef940b4f +size 330807 diff --git a/public/models/gant_r_pad/gant_normal.png b/public/models/gant_r_pad/gant_normal.png new file mode 100644 index 0000000..95e5e61 --- /dev/null +++ b/public/models/gant_r_pad/gant_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a45f350f230fafcd51c9e19db9f7cab4b86f08cb9b46ce9529517e17c53046 +size 2937255 diff --git a/public/models/gant_r_pad/gant_occlusionroughnessmetallic.png b/public/models/gant_r_pad/gant_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f262ab4 --- /dev/null +++ b/public/models/gant_r_pad/gant_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ce434f528bd56a3a5eabc339173c5e8fb4f9306fb0ca624d996ee90b8d1f8 +size 16902 diff --git a/public/models/gant_r_pad/gant_r_pad.bin b/public/models/gant_r_pad/gant_r_pad.bin new file mode 100644 index 0000000..8d9ce3d --- /dev/null +++ b/public/models/gant_r_pad/gant_r_pad.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9adc834223c132af1ebd48058e507dfbc7abff8f15c1b887c2b1ee6c07604869 +size 554472 diff --git a/public/models/gant_r_pad/model.gltf b/public/models/gant_r_pad/model.gltf new file mode 100644 index 0000000..0ce8568 --- /dev/null +++ b/public/models/gant_r_pad/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623937d431f5eddf460a75cabdf5696253f2beda12fa68492812727e9beec1d1 +size 6900 diff --git a/public/models/generateur/color.png b/public/models/generateur/color.png new file mode 100644 index 0000000..881ee86 --- /dev/null +++ b/public/models/generateur/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd70524b62962417d94826ee2beceac67ff9dceba1c3820822436c8ff0d7679 +size 3057214 diff --git a/public/models/generateur/model.bin b/public/models/generateur/model.bin new file mode 100644 index 0000000..aad9f4f --- /dev/null +++ b/public/models/generateur/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c2fed21a9be90b8dbbfebf85be330c31fb56563f8d2386bb509f4f4837b534 +size 821820 diff --git a/public/models/generateur/model.gltf b/public/models/generateur/model.gltf new file mode 100644 index 0000000..e6a0357 --- /dev/null +++ b/public/models/generateur/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc387bc13d44ce74a988b8ed9b3c4a90708e32aaa6a8780968d89a5badb976d +size 2486 diff --git a/public/models/generateur/normal.png b/public/models/generateur/normal.png new file mode 100644 index 0000000..b0a548c --- /dev/null +++ b/public/models/generateur/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3388ea87bac10c3f42a43f4541960dc2843134207f637b29e83d332e69a1e91f +size 1416764 diff --git a/public/models/gerant-animated/DefaultMaterial_Normal.png b/public/models/gerant-animated/DefaultMaterial_Normal.png new file mode 100644 index 0000000..075e61b --- /dev/null +++ b/public/models/gerant-animated/DefaultMaterial_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8509d8874bbab587777f149efbde35c88201c56b6b452f17a793d4afce8320e6 +size 3446765 diff --git a/public/models/gerant-animated/DefaultMaterial_diffuse.png b/public/models/gerant-animated/DefaultMaterial_diffuse.png new file mode 100644 index 0000000..1bb906e --- /dev/null +++ b/public/models/gerant-animated/DefaultMaterial_diffuse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b192e99c4aff2d42eea260b2cd6eb899facc05e00008d2a3db9e4ae9754a5de +size 831033 diff --git a/public/models/gerant-animated/model.bin b/public/models/gerant-animated/model.bin new file mode 100644 index 0000000..8830cca --- /dev/null +++ b/public/models/gerant-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c3f6cff12279de9e402c6efcf537bb9053d6b392412efe3cc2eff383f1394e +size 1649796 diff --git a/public/models/gerant-animated/model.gltf b/public/models/gerant-animated/model.gltf new file mode 100644 index 0000000..a949fb0 --- /dev/null +++ b/public/models/gerant-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055f253c23a4df06eba911e883e19de2e6eecd8fec1e05f2e2e2ce2f2358058b +size 79189 diff --git a/public/models/gerant/defaultmaterial_base_color.png b/public/models/gerant/defaultmaterial_base_color.png new file mode 100644 index 0000000..d87452f --- /dev/null +++ b/public/models/gerant/defaultmaterial_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc495d4822681d079139c794303c93aa6465f10b9cdf6e958f5b89c5932d2eb3 +size 834657 diff --git a/public/models/gerant/defaultmaterial_basecolor.png b/public/models/gerant/defaultmaterial_basecolor.png new file mode 100644 index 0000000..ecb4e45 --- /dev/null +++ b/public/models/gerant/defaultmaterial_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531aaf4d7871c30e05cdc45a8bb665dcf1a101cfb4ff5c182af3384c18c03e21 +size 839128 diff --git a/public/models/gerant/defaultmaterial_height.png b/public/models/gerant/defaultmaterial_height.png new file mode 100644 index 0000000..30158eb --- /dev/null +++ b/public/models/gerant/defaultmaterial_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cc29dfc5b14bbf16af1fd36e461e0b5bb3936fdddaf2807b56b4c2e9f71ee8 +size 12819 diff --git a/public/models/gerant/defaultmaterial_metallic.png b/public/models/gerant/defaultmaterial_metallic.png new file mode 100644 index 0000000..42f1206 --- /dev/null +++ b/public/models/gerant/defaultmaterial_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0d3feb024b0cea2d5d8d2aee54bc18eaed203e166a9f53b5455b66e3e0f9d3 +size 238091 diff --git a/public/models/gerant/defaultmaterial_normal.png b/public/models/gerant/defaultmaterial_normal.png new file mode 100644 index 0000000..075e61b --- /dev/null +++ b/public/models/gerant/defaultmaterial_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8509d8874bbab587777f149efbde35c88201c56b6b452f17a793d4afce8320e6 +size 3446765 diff --git a/public/models/gerant/defaultmaterial_normal_opengl.png b/public/models/gerant/defaultmaterial_normal_opengl.png new file mode 100644 index 0000000..6c17dbb --- /dev/null +++ b/public/models/gerant/defaultmaterial_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0b5352703be3e02c5ae8ed00462168052c58b2dae8255829fcd960c8accaf9 +size 7201168 diff --git a/public/models/gerant/defaultmaterial_occlusionroughnessmetallic.png b/public/models/gerant/defaultmaterial_occlusionroughnessmetallic.png new file mode 100644 index 0000000..d0b5bd5 --- /dev/null +++ b/public/models/gerant/defaultmaterial_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097dbffd0cbc2290359072e275c5d9979638bb8907bd12feeed17498ba5a0e42 +size 912914 diff --git a/public/models/gerant/defaultmaterial_roughness.png b/public/models/gerant/defaultmaterial_roughness.png new file mode 100644 index 0000000..f27a80c --- /dev/null +++ b/public/models/gerant/defaultmaterial_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49db8c795dd162186490fd639c600c85cfdbaf6dac2a9b9b2f7a3eb3262098e2 +size 571947 diff --git a/public/models/gerant/gerant.bin b/public/models/gerant/gerant.bin new file mode 100644 index 0000000..4b0a711 --- /dev/null +++ b/public/models/gerant/gerant.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d91d4e3ae49ba75ceb3923f577566bf4b78d0ed4bfee96839945a52d27ec770 +size 1702368 diff --git a/public/models/gerant/model.gltf b/public/models/gerant/model.gltf new file mode 100644 index 0000000..bba9e92 --- /dev/null +++ b/public/models/gerant/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143af47426c600085097223fb27f7ac8f3ab2e23071b90cda6840f5eabef7a62 +size 3141 diff --git a/public/models/habitant1-animated/model.bin b/public/models/habitant1-animated/model.bin new file mode 100644 index 0000000..22a35d4 --- /dev/null +++ b/public/models/habitant1-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f185fa1f87f8fd5756a49d980d6365e008dca13dc1da504932c666d0897ae5af +size 1640196 diff --git a/public/models/habitant1-animated/model.gltf b/public/models/habitant1-animated/model.gltf new file mode 100644 index 0000000..17b4310 --- /dev/null +++ b/public/models/habitant1-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686a230f3c6e7bb04e988c9566fa12e7ee05ebcc7d6baabda003ed23349bbcdf +size 98427 diff --git a/public/models/habitant1-animated/pnj1_diffuse.png b/public/models/habitant1-animated/pnj1_diffuse.png new file mode 100644 index 0000000..bee8639 --- /dev/null +++ b/public/models/habitant1-animated/pnj1_diffuse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28941325c039fc19f2c1b0e2e12245af4660d9154015e7161995dcdd8bbebb3a +size 538547 diff --git a/public/models/habitant1-animated/pnj1_normal.png b/public/models/habitant1-animated/pnj1_normal.png new file mode 100644 index 0000000..ca53e61 --- /dev/null +++ b/public/models/habitant1-animated/pnj1_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dd4755ac4b9c2ad326952f8451e22b231a1a2e89d5ffb9ebd8e3186df72392 +size 3518293 diff --git a/public/models/habitant1/model.gltf b/public/models/habitant1/model.gltf new file mode 100644 index 0000000..89cc370 --- /dev/null +++ b/public/models/habitant1/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8a188632459c366af5897aa8a00c0f5cc81b2af8b9673fb8d8c7d9a5cc21e1 +size 3095 diff --git a/public/models/habitant1/pnj1.bin b/public/models/habitant1/pnj1.bin new file mode 100644 index 0000000..9c668df --- /dev/null +++ b/public/models/habitant1/pnj1.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea8a9f87183c409a4300a88cd3921a1c83616c246cba224e6c5f7ad1ca6619c +size 1716672 diff --git a/public/models/habitant1/pnj1_baseColor.png b/public/models/habitant1/pnj1_baseColor.png new file mode 100644 index 0000000..49c9d82 --- /dev/null +++ b/public/models/habitant1/pnj1_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b62025be6aca4f73484a84d60a27a9d4b032dbe4d64c1af5570921a5c8f75c +size 521255 diff --git a/public/models/habitant1/pnj1_normal.png b/public/models/habitant1/pnj1_normal.png new file mode 100644 index 0000000..ca53e61 --- /dev/null +++ b/public/models/habitant1/pnj1_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dd4755ac4b9c2ad326952f8451e22b231a1a2e89d5ffb9ebd8e3186df72392 +size 3518293 diff --git a/public/models/habitant1/pnj1_occlusionRoughnessMetallic.png b/public/models/habitant1/pnj1_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..c934d7c --- /dev/null +++ b/public/models/habitant1/pnj1_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c066e45612cc776a5d646e7ba7b80a41b08c4029f14129eb88032e923f7ff80b +size 605640 diff --git a/public/models/habitant2-animated/habitant2_diffuse.png b/public/models/habitant2-animated/habitant2_diffuse.png new file mode 100644 index 0000000..f479f89 --- /dev/null +++ b/public/models/habitant2-animated/habitant2_diffuse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c659c103681185abe8a6d2192cb93970248f1fa34d4960fc018a32e02e8ff13a +size 583774 diff --git a/public/models/habitant2-animated/habitant2_normal.png b/public/models/habitant2-animated/habitant2_normal.png new file mode 100644 index 0000000..c79692d --- /dev/null +++ b/public/models/habitant2-animated/habitant2_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0d9b22d6165546ef5fa1f9a64292297df46e80b31b68a1fa676047d58622ea +size 3346623 diff --git a/public/models/habitant2-animated/model.bin b/public/models/habitant2-animated/model.bin new file mode 100644 index 0000000..11fda42 --- /dev/null +++ b/public/models/habitant2-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5eb4bc779b7c1e0a62c33f744452ee1a0b9f4ef7ad0c0ccddf9b843b94cfa6 +size 1716284 diff --git a/public/models/habitant2-animated/model.gltf b/public/models/habitant2-animated/model.gltf new file mode 100644 index 0000000..170d90f --- /dev/null +++ b/public/models/habitant2-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82174bae057f677090fab2aa9900414917d5b414697ba930f1d66174837fb5aa +size 125351 diff --git a/public/models/habitant2/habitant2_baseColor.png b/public/models/habitant2/habitant2_baseColor.png new file mode 100644 index 0000000..7fc2fef --- /dev/null +++ b/public/models/habitant2/habitant2_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41326fd2a93d95e114cd388db1a5278d687dbf8650ee4e42ab8c4cabdcd6639 +size 615211 diff --git a/public/models/habitant2/habitant2_normal.png b/public/models/habitant2/habitant2_normal.png new file mode 100644 index 0000000..c79692d --- /dev/null +++ b/public/models/habitant2/habitant2_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0d9b22d6165546ef5fa1f9a64292297df46e80b31b68a1fa676047d58622ea +size 3346623 diff --git a/public/models/habitant2/habitant2_occlusionRoughnessMetallic.png b/public/models/habitant2/habitant2_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..6fcd855 --- /dev/null +++ b/public/models/habitant2/habitant2_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4510a483a6bb21173ba11be07f3c5fe4322604c198d51a63b3f0f7697c5eccdf +size 724079 diff --git a/public/models/habitant2/model.gltf b/public/models/habitant2/model.gltf new file mode 100644 index 0000000..71aefa4 --- /dev/null +++ b/public/models/habitant2/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea8f335d2e26d12f365d89171702cb85d053dd7577f9c086c2c9ad09078f7cf +size 3115 diff --git a/public/models/habitant2/pnj2.bin b/public/models/habitant2/pnj2.bin new file mode 100644 index 0000000..47fa5e7 --- /dev/null +++ b/public/models/habitant2/pnj2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243a8d9505b921e9466702362e3d7855b26fb66481c4e12cfb89b50e007de45a +size 1826880 diff --git a/public/models/immeuble1/color.png b/public/models/immeuble1/color.png new file mode 100644 index 0000000..b9561f6 --- /dev/null +++ b/public/models/immeuble1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627af289dfdb9d7b3a3b8a6f2b9a6ee1293c8349d3bd52e8111f33d64b86f235 +size 2648457 diff --git a/public/models/immeuble1/model.bin b/public/models/immeuble1/model.bin new file mode 100644 index 0000000..4a6408a --- /dev/null +++ b/public/models/immeuble1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69ade934b8890790e8ee89ee9cc75a98ba169b46864fdf6e48d5f446e0e68df +size 453600 diff --git a/public/models/immeuble1/model.gltf b/public/models/immeuble1/model.gltf new file mode 100644 index 0000000..3d5a75a --- /dev/null +++ b/public/models/immeuble1/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82cd0bd2065ada46519b770c04c384a7e1a4cedec63fa4a7187b27efbe64b62 +size 28234 diff --git a/public/models/immeuble1/normal.png b/public/models/immeuble1/normal.png new file mode 100644 index 0000000..bb87a3f --- /dev/null +++ b/public/models/immeuble1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9554f7bcdb15868ce51f69289f426354716f8c3825e870208a961aea9614f47 +size 1758943 diff --git a/public/models/lafabrik/anneaux_base_color.png b/public/models/lafabrik/anneaux_base_color.png new file mode 100644 index 0000000..2fbdd54 --- /dev/null +++ b/public/models/lafabrik/anneaux_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f37341d07663c2a9572d29dcade18e8b91ba32656578b359214d402ac47df8 +size 29467 diff --git a/public/models/lafabrik/anneaux_basecolor.png b/public/models/lafabrik/anneaux_basecolor.png new file mode 100644 index 0000000..cc33c8b --- /dev/null +++ b/public/models/lafabrik/anneaux_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f73e6bfe28e93608d9a6edcd105448cb34d96515b2a918a4e0fece15b814468 +size 532789 diff --git a/public/models/lafabrik/anneaux_height.png b/public/models/lafabrik/anneaux_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/anneaux_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/anneaux_metallic.png b/public/models/lafabrik/anneaux_metallic.png new file mode 100644 index 0000000..9384d55 --- /dev/null +++ b/public/models/lafabrik/anneaux_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffded4f64bceb29f858e3f9462813f9d774174aca87ff7c49277bb37bf5e923 +size 12819 diff --git a/public/models/lafabrik/anneaux_mixed_ao.png b/public/models/lafabrik/anneaux_mixed_ao.png new file mode 100644 index 0000000..b30ee0f --- /dev/null +++ b/public/models/lafabrik/anneaux_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee7c471c5cc3dafe941065326003df584b1256c5dfbd646a4f1a83faa91426d +size 520611 diff --git a/public/models/lafabrik/anneaux_normal.png b/public/models/lafabrik/anneaux_normal.png new file mode 100644 index 0000000..1e89761 --- /dev/null +++ b/public/models/lafabrik/anneaux_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d457c6ff4fbebf0c5b45480891a16a224140663026ad4a166ef22934af76dff6 +size 2829035 diff --git a/public/models/lafabrik/anneaux_normal_opengl.png b/public/models/lafabrik/anneaux_normal_opengl.png new file mode 100644 index 0000000..648f914 --- /dev/null +++ b/public/models/lafabrik/anneaux_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2394e539f3a4a3f8e52eafe30cb54ba5147b262d473ca1c66b3a71be99f4908 +size 475520 diff --git a/public/models/lafabrik/anneaux_occlusionroughnessmetallic.png b/public/models/lafabrik/anneaux_occlusionroughnessmetallic.png new file mode 100644 index 0000000..244620e --- /dev/null +++ b/public/models/lafabrik/anneaux_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90971d6a4d158daa5f19634d7c0b1e30af7891210415727de2828f55537a18c7 +size 1105974 diff --git a/public/models/lafabrik/anneaux_roughness.png b/public/models/lafabrik/anneaux_roughness.png new file mode 100644 index 0000000..f3dd692 --- /dev/null +++ b/public/models/lafabrik/anneaux_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428157d1d553d359d25696ec5cdebb0a191dccc08b513f6f8a0a08edccadd8bf +size 12819 diff --git a/public/models/lafabrik/bat_base_color.png b/public/models/lafabrik/bat_base_color.png new file mode 100644 index 0000000..7c6dd4f --- /dev/null +++ b/public/models/lafabrik/bat_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbb61332773aff8ee65fab755abce883996654c11f4ce40e6ce66d8e2a937de +size 1728398 diff --git a/public/models/lafabrik/bat_basecolor.png b/public/models/lafabrik/bat_basecolor.png new file mode 100644 index 0000000..6a780f4 --- /dev/null +++ b/public/models/lafabrik/bat_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2e62b2e7a3c9a17c4898f6f9d29ca702196d500571635ae031cb2e377ca23a +size 1210857 diff --git a/public/models/lafabrik/bat_height.png b/public/models/lafabrik/bat_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/bat_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/bat_metallic.png b/public/models/lafabrik/bat_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/bat_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/bat_mixed_ao.png b/public/models/lafabrik/bat_mixed_ao.png new file mode 100644 index 0000000..7df491c --- /dev/null +++ b/public/models/lafabrik/bat_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f724b7d24a420bdd99df5ec6baebacaa8442b1e84db034cb3390425b58deca9c +size 755091 diff --git a/public/models/lafabrik/bat_normal.png b/public/models/lafabrik/bat_normal.png new file mode 100644 index 0000000..52e5c50 --- /dev/null +++ b/public/models/lafabrik/bat_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4dbe8b4a0b23bf5b5e44bc88e86ee5a92e157a39670c690ebe7f548a7a82ad +size 2403625 diff --git a/public/models/lafabrik/bat_normal_opengl.png b/public/models/lafabrik/bat_normal_opengl.png new file mode 100644 index 0000000..2c74cb7 --- /dev/null +++ b/public/models/lafabrik/bat_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457844aaf45faafa9dd538839648e1bd88c4e9b0c544ad7d112b857dced44952 +size 733512 diff --git a/public/models/lafabrik/bat_occlusionroughnessmetallic.png b/public/models/lafabrik/bat_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f3de26a --- /dev/null +++ b/public/models/lafabrik/bat_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629b883b0c7f3d1d7da370d3204dbe3fe63616c42ea4f8fe2794b9660a9f80bb +size 1277896 diff --git a/public/models/lafabrik/bat_roughness.png b/public/models/lafabrik/bat_roughness.png new file mode 100644 index 0000000..052f3b1 --- /dev/null +++ b/public/models/lafabrik/bat_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b2972c7d79f72f8cc484a0b45075325a2b61cc09ea59e4867f01b749a57d66 +size 172975 diff --git a/public/models/lafabrik/comptoir_base_color.png b/public/models/lafabrik/comptoir_base_color.png new file mode 100644 index 0000000..d86eeef --- /dev/null +++ b/public/models/lafabrik/comptoir_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa545d402e5f8fe8da5016a3c56f07bf5bc028923c5267fbd81b19b4cfdf278 +size 2863835 diff --git a/public/models/lafabrik/comptoir_basecolor.png b/public/models/lafabrik/comptoir_basecolor.png new file mode 100644 index 0000000..2c9c9da --- /dev/null +++ b/public/models/lafabrik/comptoir_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce482f3dedea2e359f7ad7ca342405a2bc39fa06e4ed5a40153421974810219e +size 2163973 diff --git a/public/models/lafabrik/comptoir_height.png b/public/models/lafabrik/comptoir_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/comptoir_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/comptoir_metallic.png b/public/models/lafabrik/comptoir_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/comptoir_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/comptoir_mixed_ao.png b/public/models/lafabrik/comptoir_mixed_ao.png new file mode 100644 index 0000000..6d45fb8 --- /dev/null +++ b/public/models/lafabrik/comptoir_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2327b567772ca587796a0cfe5ba7627d3fd159b82509b340a80f027bf07885b +size 420863 diff --git a/public/models/lafabrik/comptoir_normal.png b/public/models/lafabrik/comptoir_normal.png new file mode 100644 index 0000000..456d843 --- /dev/null +++ b/public/models/lafabrik/comptoir_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe1fe00767d0e31c086eed0e33e08449c5d5d598c52399a8dcc96696e350b03 +size 2001159 diff --git a/public/models/lafabrik/comptoir_normal_opengl.png b/public/models/lafabrik/comptoir_normal_opengl.png new file mode 100644 index 0000000..52f3c77 --- /dev/null +++ b/public/models/lafabrik/comptoir_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8c5ca698fb98318f3f957d6e1d930fedf1a0f9c3167b3955a42ea87f6c6f0c +size 225093 diff --git a/public/models/lafabrik/comptoir_occlusionroughnessmetallic.png b/public/models/lafabrik/comptoir_occlusionroughnessmetallic.png new file mode 100644 index 0000000..cde3d83 --- /dev/null +++ b/public/models/lafabrik/comptoir_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88b06666a337587b686fb31033f8a0729850418e2d01255f08d43a69aa8d9a1 +size 737294 diff --git a/public/models/lafabrik/comptoir_roughness.png b/public/models/lafabrik/comptoir_roughness.png new file mode 100644 index 0000000..ebf3115 --- /dev/null +++ b/public/models/lafabrik/comptoir_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ddd3777aa48eee4ee54457c660ef337198918472ef9056dd2fa1622766ee7b +size 26345 diff --git a/public/models/lafabrik/dashboard_base_color.png b/public/models/lafabrik/dashboard_base_color.png new file mode 100644 index 0000000..794b9c5 --- /dev/null +++ b/public/models/lafabrik/dashboard_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15c2193adc9bda3caa5a60a8dce7d8ad472abb77f9fda16714ec5ab57b2db8 +size 29467 diff --git a/public/models/lafabrik/dashboard_basecolor.png b/public/models/lafabrik/dashboard_basecolor.png new file mode 100644 index 0000000..e221f5b --- /dev/null +++ b/public/models/lafabrik/dashboard_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68b75f9433beb193c5d3fc4e3ea9ab61f43c061cf3dd109120d4a2ab7e01012 +size 43662 diff --git a/public/models/lafabrik/dashboard_height.png b/public/models/lafabrik/dashboard_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/dashboard_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/dashboard_metallic.png b/public/models/lafabrik/dashboard_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/dashboard_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/dashboard_mixed_ao.png b/public/models/lafabrik/dashboard_mixed_ao.png new file mode 100644 index 0000000..2d868b8 --- /dev/null +++ b/public/models/lafabrik/dashboard_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:295f092b90ee1eb726722d342785605e750030fc7bf2f655b2ef8adc94d6af11 +size 748061 diff --git a/public/models/lafabrik/dashboard_normal.png b/public/models/lafabrik/dashboard_normal.png new file mode 100644 index 0000000..dedbbd4 --- /dev/null +++ b/public/models/lafabrik/dashboard_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df545a97e90b13a35c85405a55d70c9afa828060bdc1366272eef1bcc9ef4fac +size 1856014 diff --git a/public/models/lafabrik/dashboard_normal_opengl.png b/public/models/lafabrik/dashboard_normal_opengl.png new file mode 100644 index 0000000..424a43a --- /dev/null +++ b/public/models/lafabrik/dashboard_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5d50f352eec25661022033cb205d3e14c179531a0d59d58bc2e28e0fad7a20 +size 29466 diff --git a/public/models/lafabrik/dashboard_occlusionroughnessmetallic.png b/public/models/lafabrik/dashboard_occlusionroughnessmetallic.png new file mode 100644 index 0000000..b61ad3f --- /dev/null +++ b/public/models/lafabrik/dashboard_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbac8f9c13fbf2ab21c256e365448220f7ca678df5d6287d7151842b8f22a2c5 +size 894264 diff --git a/public/models/lafabrik/dashboard_roughness.png b/public/models/lafabrik/dashboard_roughness.png new file mode 100644 index 0000000..f3dd692 --- /dev/null +++ b/public/models/lafabrik/dashboard_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428157d1d553d359d25696ec5cdebb0a191dccc08b513f6f8a0a08edccadd8bf +size 12819 diff --git a/public/models/lafabrik/fenetre_0_base_color.png b/public/models/lafabrik/fenetre_0_base_color.png new file mode 100644 index 0000000..8947b77 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a2dc58024f7c002d28477ea808cac85f13c3434363e15091f0216b025eb0d5 +size 478515 diff --git a/public/models/lafabrik/fenetre_0_basecolor.png b/public/models/lafabrik/fenetre_0_basecolor.png new file mode 100644 index 0000000..c8c4111 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36f58ae9eaf0dbc20abec9aa4d1e09e7fb5629e312041deaad1455bd73f59bd +size 356476 diff --git a/public/models/lafabrik/fenetre_0_height.png b/public/models/lafabrik/fenetre_0_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/fenetre_0_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/fenetre_0_metallic.png b/public/models/lafabrik/fenetre_0_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/fenetre_0_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/fenetre_0_mixed_ao.png b/public/models/lafabrik/fenetre_0_mixed_ao.png new file mode 100644 index 0000000..b75fca3 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8af3dd1a5235c2fdc972065fa86d0308395896b08433eab24732a2229c08fcf +size 305028 diff --git a/public/models/lafabrik/fenetre_0_normal.png b/public/models/lafabrik/fenetre_0_normal.png new file mode 100644 index 0000000..ab81f52 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f025eaf205443cf90ee0cd019519e924751b54a207ac453ff482b88d2e50c09f +size 2180272 diff --git a/public/models/lafabrik/fenetre_0_normal_opengl.png b/public/models/lafabrik/fenetre_0_normal_opengl.png new file mode 100644 index 0000000..d360120 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f14ee3c574c084326265ba02e506905c6bfff647dcfc9661ee9426f26cacff +size 31073 diff --git a/public/models/lafabrik/fenetre_0_occlusionroughnessmetallic.png b/public/models/lafabrik/fenetre_0_occlusionroughnessmetallic.png new file mode 100644 index 0000000..11b01bb --- /dev/null +++ b/public/models/lafabrik/fenetre_0_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815a8f6fe3077d32227e0be86b973fb83c0ae83cf4a11fec8a0638a171638bc6 +size 455042 diff --git a/public/models/lafabrik/fenetre_0_roughness.png b/public/models/lafabrik/fenetre_0_roughness.png new file mode 100644 index 0000000..f3dd692 --- /dev/null +++ b/public/models/lafabrik/fenetre_0_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428157d1d553d359d25696ec5cdebb0a191dccc08b513f6f8a0a08edccadd8bf +size 12819 diff --git a/public/models/lafabrik/model.bin b/public/models/lafabrik/model.bin new file mode 100644 index 0000000..3383765 --- /dev/null +++ b/public/models/lafabrik/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4b582136b91210549880ba151a0a5c58ca35ae99a23eca4d9bbfd4277c6c11 +size 1240608 diff --git a/public/models/lafabrik/model.gltf b/public/models/lafabrik/model.gltf new file mode 100644 index 0000000..c770f32 --- /dev/null +++ b/public/models/lafabrik/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73403729b6bf251e5a48f93c5496291ba06cb7bb8bb35e7094ac9e91b39742d0 +size 124729 diff --git a/public/models/lafabrik/panneau_base_color.png b/public/models/lafabrik/panneau_base_color.png new file mode 100644 index 0000000..729e1d9 --- /dev/null +++ b/public/models/lafabrik/panneau_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4a33fcd267d793fe531bf64874d42c9fc4d1f5e59e7b899e5e1df294b65d1b +size 1635967 diff --git a/public/models/lafabrik/panneau_basecolor.png b/public/models/lafabrik/panneau_basecolor.png new file mode 100644 index 0000000..1e0a604 --- /dev/null +++ b/public/models/lafabrik/panneau_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b9f0e6e1967bde9e127ccd047459bd9c228c2872aa6999d745e3bbbbc97a16 +size 751023 diff --git a/public/models/lafabrik/panneau_height.png b/public/models/lafabrik/panneau_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/panneau_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/panneau_metallic.png b/public/models/lafabrik/panneau_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/panneau_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/panneau_mixed_ao.png b/public/models/lafabrik/panneau_mixed_ao.png new file mode 100644 index 0000000..510e8d9 --- /dev/null +++ b/public/models/lafabrik/panneau_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0b8c95e9f6b230ed6eac3c20ca040bfda21e57e16fe955d038cc284f5eba28 +size 948009 diff --git a/public/models/lafabrik/panneau_normal.png b/public/models/lafabrik/panneau_normal.png new file mode 100644 index 0000000..8d99132 --- /dev/null +++ b/public/models/lafabrik/panneau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe381ab55bf16f6eb1210ec73a34218083379673f7f1a8dd208e68bf1de4291 +size 2817900 diff --git a/public/models/lafabrik/panneau_normal_opengl.png b/public/models/lafabrik/panneau_normal_opengl.png new file mode 100644 index 0000000..bcb470c --- /dev/null +++ b/public/models/lafabrik/panneau_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4096ec4e956ddf3d1f998d43ca670e1025d5ddf0651e082d9cd7b48dc53626 +size 735202 diff --git a/public/models/lafabrik/panneau_occlusionroughnessmetallic.png b/public/models/lafabrik/panneau_occlusionroughnessmetallic.png new file mode 100644 index 0000000..c6b1bb3 --- /dev/null +++ b/public/models/lafabrik/panneau_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34067efc057afefbc87666b5ee55d436fdedbb29e33ec70e200cb0c39a5a4e7a +size 1203760 diff --git a/public/models/lafabrik/panneau_roughness.png b/public/models/lafabrik/panneau_roughness.png new file mode 100644 index 0000000..b405879 --- /dev/null +++ b/public/models/lafabrik/panneau_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c60554690fec241be70aa9b2b56592bdaa3be58d9f9bacd95785e3571feeab +size 22482 diff --git a/public/models/lafabrik/plan_de_travail_base_color.png b/public/models/lafabrik/plan_de_travail_base_color.png new file mode 100644 index 0000000..d2f1ee6 --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764be1db58dd52c9cd87359b631aec6bafba7a858d075a67796c38482e5b4bf8 +size 1530465 diff --git a/public/models/lafabrik/plan_de_travail_basecolor.png b/public/models/lafabrik/plan_de_travail_basecolor.png new file mode 100644 index 0000000..8f42cc5 --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6655eeaa9958faac0452d63a8607ba8a7bd942caddf5c5a835ddc27ece9a2f9 +size 904256 diff --git a/public/models/lafabrik/plan_de_travail_height.png b/public/models/lafabrik/plan_de_travail_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/plan_de_travail_metallic.png b/public/models/lafabrik/plan_de_travail_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/plan_de_travail_mixed_ao.png b/public/models/lafabrik/plan_de_travail_mixed_ao.png new file mode 100644 index 0000000..c1b9686 --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d26d72c7f4fe867ea426dcf65f8ca0217118c743a0b6c435963f9bb6f35fe0 +size 532506 diff --git a/public/models/lafabrik/plan_de_travail_normal.png b/public/models/lafabrik/plan_de_travail_normal.png new file mode 100644 index 0000000..2ac2fd4 --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b311b70ab688e432cff1832db9aeb822e0fbba3d82b5b3edbc30ccff9f9571ef +size 173105 diff --git a/public/models/lafabrik/plan_de_travail_normal_opengl.png b/public/models/lafabrik/plan_de_travail_normal_opengl.png new file mode 100644 index 0000000..7345aaf --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cfde7361c3f27819da5907ba475668e313aa01b177cb1a12832b86c6ae9457 +size 166055 diff --git a/public/models/lafabrik/plan_de_travail_occlusionroughnessmetallic.png b/public/models/lafabrik/plan_de_travail_occlusionroughnessmetallic.png new file mode 100644 index 0000000..fcf18d8 --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3e540d37d816e12dfad945e9482dc146d1cbc18efc3788e0d7eaacc9b51e3e +size 870633 diff --git a/public/models/lafabrik/plan_de_travail_roughness.png b/public/models/lafabrik/plan_de_travail_roughness.png new file mode 100644 index 0000000..0a510ff --- /dev/null +++ b/public/models/lafabrik/plan_de_travail_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39171a7a15cb7032fa4a9e15694f7f70105c5d0d458b23b642a5e9079ebfb768 +size 31254 diff --git a/public/models/lafabrik/porte_base_color.png b/public/models/lafabrik/porte_base_color.png new file mode 100644 index 0000000..82308db --- /dev/null +++ b/public/models/lafabrik/porte_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a8b51dd41807b48a4ba12e963552dee18cf61263a1b84ba1e89493e62bdae9 +size 711076 diff --git a/public/models/lafabrik/porte_basecolor.png b/public/models/lafabrik/porte_basecolor.png new file mode 100644 index 0000000..6ef305f --- /dev/null +++ b/public/models/lafabrik/porte_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8113d63fde96700d5cfc937ea2a84b0cadba745da432bbddec099cae3ce3fe9 +size 601365 diff --git a/public/models/lafabrik/porte_height.png b/public/models/lafabrik/porte_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/porte_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/porte_metallic.png b/public/models/lafabrik/porte_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/porte_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/porte_mixed_ao.png b/public/models/lafabrik/porte_mixed_ao.png new file mode 100644 index 0000000..40a663b --- /dev/null +++ b/public/models/lafabrik/porte_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2695f10aa8b88e30a2a9b29a9a3bdfa77700368e493733c4372729b0d57ab27c +size 539406 diff --git a/public/models/lafabrik/porte_normal.png b/public/models/lafabrik/porte_normal.png new file mode 100644 index 0000000..259ff9d --- /dev/null +++ b/public/models/lafabrik/porte_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46173406135afe7ffa4318196893f8cfe1b0aa7b292e64ed93cb6302392b3dd2 +size 2480991 diff --git a/public/models/lafabrik/porte_normal_opengl.png b/public/models/lafabrik/porte_normal_opengl.png new file mode 100644 index 0000000..62acdfd --- /dev/null +++ b/public/models/lafabrik/porte_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08801f9d46b86af871fd890afa8cda49f69abc5588e961badd3ad0d843f83b2 +size 260513 diff --git a/public/models/lafabrik/porte_occlusionroughnessmetallic.png b/public/models/lafabrik/porte_occlusionroughnessmetallic.png new file mode 100644 index 0000000..a6a1fa6 --- /dev/null +++ b/public/models/lafabrik/porte_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f24311e5c1a3d9caacc34bebd628258fed45c279ac9760b13baa38b15356a7a +size 735539 diff --git a/public/models/lafabrik/porte_roughness.png b/public/models/lafabrik/porte_roughness.png new file mode 100644 index 0000000..ae229dd --- /dev/null +++ b/public/models/lafabrik/porte_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94117088d96bd2a2aa2c149269f9672b8b2f0c1a4580df9b9dfdb7128c654c9b +size 70513 diff --git a/public/models/lafabrik/porte_stock_base_color.png b/public/models/lafabrik/porte_stock_base_color.png new file mode 100644 index 0000000..6af3f7e --- /dev/null +++ b/public/models/lafabrik/porte_stock_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af1af828108a27cff317cc91747c297acd6e44237bbc691c58c11132272fdcb +size 128309 diff --git a/public/models/lafabrik/porte_stock_basecolor.png b/public/models/lafabrik/porte_stock_basecolor.png new file mode 100644 index 0000000..50459d6 --- /dev/null +++ b/public/models/lafabrik/porte_stock_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78405d3af140658de85de17767f336f746cc98961694d7ce918c5379677bbe82 +size 64589 diff --git a/public/models/lafabrik/porte_stock_height.png b/public/models/lafabrik/porte_stock_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/porte_stock_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/porte_stock_metallic.png b/public/models/lafabrik/porte_stock_metallic.png new file mode 100644 index 0000000..d3378cf --- /dev/null +++ b/public/models/lafabrik/porte_stock_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de096ecaa8b16d76f5d3feb75ca111738ae23e3ff4f5a1de384cc5f4a8dbc27 +size 41077 diff --git a/public/models/lafabrik/porte_stock_mixed_ao.png b/public/models/lafabrik/porte_stock_mixed_ao.png new file mode 100644 index 0000000..e9efda2 --- /dev/null +++ b/public/models/lafabrik/porte_stock_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d3c917b768b4cd6bcdf6b1987436a209ad8a0fcc124594880fb9b47559d14e +size 9471 diff --git a/public/models/lafabrik/porte_stock_normal.png b/public/models/lafabrik/porte_stock_normal.png new file mode 100644 index 0000000..24fac91 --- /dev/null +++ b/public/models/lafabrik/porte_stock_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8963241a9954ad1fb77174ae5fd54a9412e4827a23b17d72d253d29b48e1c3 +size 45527 diff --git a/public/models/lafabrik/porte_stock_normal_opengl.png b/public/models/lafabrik/porte_stock_normal_opengl.png new file mode 100644 index 0000000..a315580 --- /dev/null +++ b/public/models/lafabrik/porte_stock_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c879ae9d20f2062e9f95ccad0d9e81c4291cbad52c4c95be60bbe3e767297d +size 46420 diff --git a/public/models/lafabrik/porte_stock_occlusionroughnessmetallic.png b/public/models/lafabrik/porte_stock_occlusionroughnessmetallic.png new file mode 100644 index 0000000..89877a7 --- /dev/null +++ b/public/models/lafabrik/porte_stock_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40cc9bdbf324dc0464798f0570a83dc871cc3307c2b3a2a6b53293e9a3f415f +size 50302 diff --git a/public/models/lafabrik/porte_stock_roughness.png b/public/models/lafabrik/porte_stock_roughness.png new file mode 100644 index 0000000..e70646f --- /dev/null +++ b/public/models/lafabrik/porte_stock_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d6f618a212c2d338e83150902550a61597de2447cd5fe65d91b9f89c4a23e5 +size 20796 diff --git a/public/models/lafabrik/stock_0_base_color.png b/public/models/lafabrik/stock_0_base_color.png new file mode 100644 index 0000000..5417094 --- /dev/null +++ b/public/models/lafabrik/stock_0_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9617c3d3373b6b4c394b7a2de6b692d5561702ea895aea14c619c4d4abd20b +size 1173929 diff --git a/public/models/lafabrik/stock_0_basecolor.png b/public/models/lafabrik/stock_0_basecolor.png new file mode 100644 index 0000000..0bc382c --- /dev/null +++ b/public/models/lafabrik/stock_0_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f3d00e332756571cf0bbc4a600964f8b61c678924ff16f4785e5578cbb2df66 +size 924793 diff --git a/public/models/lafabrik/stock_0_height.png b/public/models/lafabrik/stock_0_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/stock_0_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/stock_0_metallic.png b/public/models/lafabrik/stock_0_metallic.png new file mode 100644 index 0000000..4039703 --- /dev/null +++ b/public/models/lafabrik/stock_0_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6065158325302d0532437e05a303258dbe26b72a10f58f966f3f07c934ceed +size 536927 diff --git a/public/models/lafabrik/stock_0_mixed_ao.png b/public/models/lafabrik/stock_0_mixed_ao.png new file mode 100644 index 0000000..de5cf83 --- /dev/null +++ b/public/models/lafabrik/stock_0_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029d5e47254d07db85860b7254fa21e001d81f711a947e82148a1f5b2e3785a1 +size 591661 diff --git a/public/models/lafabrik/stock_0_normal.png b/public/models/lafabrik/stock_0_normal.png new file mode 100644 index 0000000..6d0c946 --- /dev/null +++ b/public/models/lafabrik/stock_0_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8b22757a518d7fdf166a35b85bf09b636ccf54185346d25cebbdebb220a37b +size 2328693 diff --git a/public/models/lafabrik/stock_0_normal_opengl.png b/public/models/lafabrik/stock_0_normal_opengl.png new file mode 100644 index 0000000..041bc9a --- /dev/null +++ b/public/models/lafabrik/stock_0_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da2d6f12e1c61392e6f7648fbfeae38c1d0749cdf03f3f8e0c0a2cd63069dc7 +size 77507 diff --git a/public/models/lafabrik/stock_0_occlusionroughnessmetallic.png b/public/models/lafabrik/stock_0_occlusionroughnessmetallic.png new file mode 100644 index 0000000..2c5f5c2 --- /dev/null +++ b/public/models/lafabrik/stock_0_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb8f0c868e4aa1a51df12475de69b4754297767abceaaaaac14b01e65c13ec8 +size 1292405 diff --git a/public/models/lafabrik/stock_0_roughness.png b/public/models/lafabrik/stock_0_roughness.png new file mode 100644 index 0000000..f3dd692 --- /dev/null +++ b/public/models/lafabrik/stock_0_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428157d1d553d359d25696ec5cdebb0a191dccc08b513f6f8a0a08edccadd8bf +size 12819 diff --git a/public/models/lafabrik/tiges_base_color.png b/public/models/lafabrik/tiges_base_color.png new file mode 100644 index 0000000..9c519e4 --- /dev/null +++ b/public/models/lafabrik/tiges_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0671a54d36b101abea124afad01aa332b20f71abaf0bd55f3970c2944b9c360 +size 354282 diff --git a/public/models/lafabrik/tiges_basecolor.png b/public/models/lafabrik/tiges_basecolor.png new file mode 100644 index 0000000..cd25a14 --- /dev/null +++ b/public/models/lafabrik/tiges_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2400ea8904396f705c7587e8613e5c7b6922d66a9d0eee51ad1361fcddc47e +size 210469 diff --git a/public/models/lafabrik/tiges_height.png b/public/models/lafabrik/tiges_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/tiges_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/tiges_metallic.png b/public/models/lafabrik/tiges_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/tiges_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/tiges_mixed_ao.png b/public/models/lafabrik/tiges_mixed_ao.png new file mode 100644 index 0000000..aeafc39 --- /dev/null +++ b/public/models/lafabrik/tiges_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dc583b2c84b6991a6f9d488885c6857f81f8b911ac1676070838398ab30f21 +size 109095 diff --git a/public/models/lafabrik/tiges_normal.png b/public/models/lafabrik/tiges_normal.png new file mode 100644 index 0000000..3c14cf5 --- /dev/null +++ b/public/models/lafabrik/tiges_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98460460fbfcf9185b93db02f56b95ab55d33776a93d057a561e20f1d60baaf6 +size 2300732 diff --git a/public/models/lafabrik/tiges_normal_opengl.png b/public/models/lafabrik/tiges_normal_opengl.png new file mode 100644 index 0000000..de08e22 --- /dev/null +++ b/public/models/lafabrik/tiges_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5547c7d7b84139109d58992629be338f75becef2f0fb5616c6b195c0df588d +size 41343 diff --git a/public/models/lafabrik/tiges_occlusionroughnessmetallic.png b/public/models/lafabrik/tiges_occlusionroughnessmetallic.png new file mode 100644 index 0000000..19aabcd --- /dev/null +++ b/public/models/lafabrik/tiges_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1b6cffe503202069b3eb74c21c6d55821ce50595998131399048998f06e0d0 +size 139216 diff --git a/public/models/lafabrik/tiges_roughness.png b/public/models/lafabrik/tiges_roughness.png new file mode 100644 index 0000000..f3dd692 --- /dev/null +++ b/public/models/lafabrik/tiges_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428157d1d553d359d25696ec5cdebb0a191dccc08b513f6f8a0a08edccadd8bf +size 12819 diff --git a/public/models/lafabrik/toit_base_color.png b/public/models/lafabrik/toit_base_color.png new file mode 100644 index 0000000..11b9196 --- /dev/null +++ b/public/models/lafabrik/toit_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c25c112e446005552faf39dd36588427fc8862985010d49a23f7f27845c991c +size 859915 diff --git a/public/models/lafabrik/toit_basecolor.png b/public/models/lafabrik/toit_basecolor.png new file mode 100644 index 0000000..88cc317 --- /dev/null +++ b/public/models/lafabrik/toit_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a37bd6dd564ed91204cb52ac8e15b4538a96e5534ad887e8942cc13250c595c +size 693601 diff --git a/public/models/lafabrik/toit_height.png b/public/models/lafabrik/toit_height.png new file mode 100644 index 0000000..9daf8da --- /dev/null +++ b/public/models/lafabrik/toit_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65cfe0c3a454ccdc9a92c4a1f3dd791529aba0fe120bb1c1ccda4357dc973be +size 12816 diff --git a/public/models/lafabrik/toit_metallic.png b/public/models/lafabrik/toit_metallic.png new file mode 100644 index 0000000..353dceb --- /dev/null +++ b/public/models/lafabrik/toit_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537c59bf6206c8a29d89a0f0433ae285254a2b7deac15ba730f547b6d678ca33 +size 8243 diff --git a/public/models/lafabrik/toit_mixed_ao.png b/public/models/lafabrik/toit_mixed_ao.png new file mode 100644 index 0000000..5db1248 --- /dev/null +++ b/public/models/lafabrik/toit_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf924c03af4f85d59bbd990865f2aa3400876a0a97a69c88ee49d65026f9bc89 +size 349548 diff --git a/public/models/lafabrik/toit_normal.png b/public/models/lafabrik/toit_normal.png new file mode 100644 index 0000000..067baa9 --- /dev/null +++ b/public/models/lafabrik/toit_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c3acf157d8bc160f3f2d97a536cf98350ff6170ce9912b0ddff62954bfdb99 +size 2429181 diff --git a/public/models/lafabrik/toit_normal_opengl.png b/public/models/lafabrik/toit_normal_opengl.png new file mode 100644 index 0000000..e8770c1 --- /dev/null +++ b/public/models/lafabrik/toit_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f0ffecc48765defa40eec93ea43f349f3458d0310a1ae93e7885d8cff1094f +size 462395 diff --git a/public/models/lafabrik/toit_occlusionroughnessmetallic.png b/public/models/lafabrik/toit_occlusionroughnessmetallic.png new file mode 100644 index 0000000..04151cd --- /dev/null +++ b/public/models/lafabrik/toit_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a472ac98d398f511fba3d2518202e92371092bc34f597f79975b946b1d9f57c1 +size 754338 diff --git a/public/models/lafabrik/toit_roughness.png b/public/models/lafabrik/toit_roughness.png new file mode 100644 index 0000000..5d5c166 --- /dev/null +++ b/public/models/lafabrik/toit_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146c2eaab113e24bca61833fcbe64a9f02f7c77dcc41975cef8d97ec8a23c93c +size 35132 diff --git a/public/models/lafabrik/tuyaux_base_color.png b/public/models/lafabrik/tuyaux_base_color.png new file mode 100644 index 0000000..66b12c1 --- /dev/null +++ b/public/models/lafabrik/tuyaux_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d84502af791ef0e062e59939e8c8df61b9697edcd972f3479dd5caf948ee27e +size 37945 diff --git a/public/models/lafabrik/tuyaux_basecolor.png b/public/models/lafabrik/tuyaux_basecolor.png new file mode 100644 index 0000000..a972f9f --- /dev/null +++ b/public/models/lafabrik/tuyaux_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecef5b234187cf0ea6811b7c4391a30ebd270716c6898737048574b8e91df6a4 +size 985402 diff --git a/public/models/lafabrik/tuyaux_height.png b/public/models/lafabrik/tuyaux_height.png new file mode 100644 index 0000000..5b5097a --- /dev/null +++ b/public/models/lafabrik/tuyaux_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c60d0b0bdee17032df4fca741b6fffef5f8f7d3ea6d812b38a3c7182081348 +size 21246 diff --git a/public/models/lafabrik/tuyaux_metallic.png b/public/models/lafabrik/tuyaux_metallic.png new file mode 100644 index 0000000..5eb723e --- /dev/null +++ b/public/models/lafabrik/tuyaux_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7539ab53d58dbd6a3847ce0055806931569d9c43d37c04bd8c935c0983c23ec0 +size 16408 diff --git a/public/models/lafabrik/tuyaux_mixed_ao.png b/public/models/lafabrik/tuyaux_mixed_ao.png new file mode 100644 index 0000000..13172ba --- /dev/null +++ b/public/models/lafabrik/tuyaux_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29f3cde5df3e61c74f2991b791f66894f7f5dd78cf9dd3d4e1c74c8db6864f8 +size 488217 diff --git a/public/models/lafabrik/tuyaux_normal.png b/public/models/lafabrik/tuyaux_normal.png new file mode 100644 index 0000000..ea8f469 --- /dev/null +++ b/public/models/lafabrik/tuyaux_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb63b22af905381525e94db42df33e962fa4438e6df7fc4b135fea66aff3d8ef +size 2733817 diff --git a/public/models/lafabrik/tuyaux_normal_opengl.png b/public/models/lafabrik/tuyaux_normal_opengl.png new file mode 100644 index 0000000..57c301c --- /dev/null +++ b/public/models/lafabrik/tuyaux_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2248bd2d602f2fa747ae8946aab269f58332f0485de6d36ae7addf1b179b3712 +size 601094 diff --git a/public/models/lafabrik/tuyaux_occlusionroughnessmetallic.png b/public/models/lafabrik/tuyaux_occlusionroughnessmetallic.png new file mode 100644 index 0000000..45e36fe --- /dev/null +++ b/public/models/lafabrik/tuyaux_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1106f03322eb77da04566add258c040fe02f12745077250fdedc511b051329 +size 727564 diff --git a/public/models/lafabrik/tuyaux_roughness.png b/public/models/lafabrik/tuyaux_roughness.png new file mode 100644 index 0000000..ca04062 --- /dev/null +++ b/public/models/lafabrik/tuyaux_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8437db5f5dff9cd445e74195d68da20fcec1e5cfebb50ce71a99d586e28fc09b +size 21248 diff --git a/public/models/lafabrik/verre_fenetre_base_color.png b/public/models/lafabrik/verre_fenetre_base_color.png new file mode 100644 index 0000000..66b12c1 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d84502af791ef0e062e59939e8c8df61b9697edcd972f3479dd5caf948ee27e +size 37945 diff --git a/public/models/lafabrik/verre_fenetre_basecolor.png b/public/models/lafabrik/verre_fenetre_basecolor.png new file mode 100644 index 0000000..d7d07d3 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7efa341e9d62aab680a8bfa040ea0ef9516cd89f44fd67ad76166ff6a6ba867 +size 219055 diff --git a/public/models/lafabrik/verre_fenetre_height.png b/public/models/lafabrik/verre_fenetre_height.png new file mode 100644 index 0000000..5b5097a --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c60d0b0bdee17032df4fca741b6fffef5f8f7d3ea6d812b38a3c7182081348 +size 21246 diff --git a/public/models/lafabrik/verre_fenetre_metallic.png b/public/models/lafabrik/verre_fenetre_metallic.png new file mode 100644 index 0000000..5eb723e --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7539ab53d58dbd6a3847ce0055806931569d9c43d37c04bd8c935c0983c23ec0 +size 16408 diff --git a/public/models/lafabrik/verre_fenetre_mixed_ao.png b/public/models/lafabrik/verre_fenetre_mixed_ao.png new file mode 100644 index 0000000..5da09c5 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8836e7e2a32d99efce5fe81842423c81e151f35938916ee10460bd6d811f56d5 +size 863299 diff --git a/public/models/lafabrik/verre_fenetre_normal.png b/public/models/lafabrik/verre_fenetre_normal.png new file mode 100644 index 0000000..543d4bd --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c4e3a495cac4c984bc0ee50435bd4f52e90ebf1c5cdbd22c3f3b392b07f354 +size 2366782 diff --git a/public/models/lafabrik/verre_fenetre_normal_opengl.png b/public/models/lafabrik/verre_fenetre_normal_opengl.png new file mode 100644 index 0000000..55c23b9 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e64c8e335e92f76bebae1e0bf9bac8ce9d339dc896223f1be0f2d8223d30f0 +size 37652 diff --git a/public/models/lafabrik/verre_fenetre_occlusionroughnessmetallic.png b/public/models/lafabrik/verre_fenetre_occlusionroughnessmetallic.png new file mode 100644 index 0000000..72000d9 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85607499851e3dc3ebbff19886c40609dc81a3167940ffadd469731c222d56b3 +size 1021100 diff --git a/public/models/lafabrik/verre_fenetre_roughness.png b/public/models/lafabrik/verre_fenetre_roughness.png new file mode 100644 index 0000000..ca04062 --- /dev/null +++ b/public/models/lafabrik/verre_fenetre_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8437db5f5dff9cd445e74195d68da20fcec1e5cfebb50ce71a99d586e28fc09b +size 21248 diff --git a/public/models/maison1/color.png b/public/models/maison1/color.png new file mode 100644 index 0000000..5d543d7 --- /dev/null +++ b/public/models/maison1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24c1299cd8f203ca1d8935c2e559de03bd96bcec0d31231ac0c2e90a6f74f74 +size 2679549 diff --git a/public/models/maison1/model.bin b/public/models/maison1/model.bin new file mode 100644 index 0000000..17302c6 --- /dev/null +++ b/public/models/maison1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a8b8ece4c72688d69efca91ed09d93854bab7a1b3c3e6b0b96ed25d984ce5 +size 307680 diff --git a/public/models/maison1/model.gltf b/public/models/maison1/model.gltf new file mode 100644 index 0000000..b4d4276 --- /dev/null +++ b/public/models/maison1/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cfe2485b5625b4a401b451fd10173faa3c59a309463a6b3e584aa91e331d81f +size 8583 diff --git a/public/models/maison1/normal.png b/public/models/maison1/normal.png new file mode 100644 index 0000000..05b82fa --- /dev/null +++ b/public/models/maison1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6945018029e37532831c07dbfd9ea0a6b853a0f69e491ae7295fd29a3f0e626a +size 1928811 diff --git a/public/models/packderelance/cabledroit_base_color.png b/public/models/packderelance/cabledroit_base_color.png new file mode 100644 index 0000000..17a1e8c --- /dev/null +++ b/public/models/packderelance/cabledroit_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613f4ed9175f554bf1ec4b8425ecb2b81fde584414caaaab865bc47582f1ea61 +size 20078 diff --git a/public/models/packderelance/cabledroit_normal.png b/public/models/packderelance/cabledroit_normal.png new file mode 100644 index 0000000..573e9ce --- /dev/null +++ b/public/models/packderelance/cabledroit_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2870a832300161a35a832511aa6401a0ef8b301acf79d67eeb8aea6a6f0c6470 +size 144969 diff --git a/public/models/packderelance/cablegauche_base_color.png b/public/models/packderelance/cablegauche_base_color.png new file mode 100644 index 0000000..d9adfcb --- /dev/null +++ b/public/models/packderelance/cablegauche_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb15c724f623830d464d72abecd429406c7a4338e6e4a6bf1afd841dbdd0c6f5 +size 31886 diff --git a/public/models/packderelance/cablegauche_normal.png b/public/models/packderelance/cablegauche_normal.png new file mode 100644 index 0000000..816c578 --- /dev/null +++ b/public/models/packderelance/cablegauche_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050b424b60d026327146d44bf02cf5f8f3c06525b1ca99b234ade11bc6114ad2 +size 144355 diff --git a/public/models/packderelance/color_inf.png b/public/models/packderelance/color_inf.png new file mode 100644 index 0000000..41c0934 --- /dev/null +++ b/public/models/packderelance/color_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e81f534bd7df089e41fdc1eacd26c1d55a90ac3ebd37a4a1d037f2b57e3ec5e +size 105848 diff --git a/public/models/packderelance/color_marteau.png b/public/models/packderelance/color_marteau.png new file mode 100644 index 0000000..7febaf0 --- /dev/null +++ b/public/models/packderelance/color_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fe52af226c749870035d2af17d8feffff4d094f46ca5c3697697d4e62da4b1 +size 288851 diff --git a/public/models/packderelance/color_puce.png b/public/models/packderelance/color_puce.png new file mode 100644 index 0000000..41ab8c3 --- /dev/null +++ b/public/models/packderelance/color_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fce52ddb453c1f3e862157ada0f4e40cd37d910329b8e6acff5ddee518142f +size 306578 diff --git a/public/models/packderelance/color_sup.png b/public/models/packderelance/color_sup.png new file mode 100644 index 0000000..544cbb3 --- /dev/null +++ b/public/models/packderelance/color_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e462b830e0f4c0bdbadb395998b3832f9e156f5b2e8f6fdb083319a2b600f5e8 +size 94312 diff --git a/public/models/packderelance/model.bin b/public/models/packderelance/model.bin new file mode 100644 index 0000000..9191216 --- /dev/null +++ b/public/models/packderelance/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8fbbb8367c3d9f0c8940608a82889423c2e2d540a76618f58c5a8c53d8928b +size 430168 diff --git a/public/models/packderelance/model.gltf b/public/models/packderelance/model.gltf new file mode 100644 index 0000000..3a78e47 --- /dev/null +++ b/public/models/packderelance/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2d470947b2b3d1a029a44a9074ac46826374b81f8bd8d23648318cfbf836fa +size 14379 diff --git a/public/models/packderelance/normal_inf.png b/public/models/packderelance/normal_inf.png new file mode 100644 index 0000000..dd88258 --- /dev/null +++ b/public/models/packderelance/normal_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0f107d2e8c234fbc40001f22a76e7cec9623a22f429443fd3ca9cd7bbedd3b +size 440264 diff --git a/public/models/packderelance/normal_marteau.png b/public/models/packderelance/normal_marteau.png new file mode 100644 index 0000000..9a1f36d --- /dev/null +++ b/public/models/packderelance/normal_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de7b32540117a34c3110ff6062b670aa102ec867650494973e1469cdd36b50 +size 772076 diff --git a/public/models/packderelance/normal_puce.png b/public/models/packderelance/normal_puce.png new file mode 100644 index 0000000..053a9f0 --- /dev/null +++ b/public/models/packderelance/normal_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46725cc9926cb4137f0e9b3c6dcc2b670950b0c025dd1963a4ba69c4278d9ea2 +size 386293 diff --git a/public/models/packderelance/normal_sup.png b/public/models/packderelance/normal_sup.png new file mode 100644 index 0000000..cdc527f --- /dev/null +++ b/public/models/packderelance/normal_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4717509a305d646459d9234ab4552063db6157fe2154865283a61973b5fc2725 +size 759655 diff --git a/public/models/panneauaffichage/color.png b/public/models/panneauaffichage/color.png new file mode 100644 index 0000000..db7b57f --- /dev/null +++ b/public/models/panneauaffichage/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75905462afd54f3e0fa5bb7fe7504e4f0270c13754c807d6477adde17737029b +size 856170 diff --git a/public/models/panneauaffichage/model.bin b/public/models/panneauaffichage/model.bin new file mode 100644 index 0000000..e107da2 --- /dev/null +++ b/public/models/panneauaffichage/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541c1cdf481eacc06d74cac537cd74ec19b2c03a880b376eeec35c7730dca58d +size 12312 diff --git a/public/models/panneauaffichage/model.gltf b/public/models/panneauaffichage/model.gltf new file mode 100644 index 0000000..20e12fc --- /dev/null +++ b/public/models/panneauaffichage/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673def1cca26bc8e7f65f64286bd63acdc14b9d14f77372413f7c86906869f6c +size 2241 diff --git a/public/models/panneauaffichage/normal.png b/public/models/panneauaffichage/normal.png new file mode 100644 index 0000000..512068f --- /dev/null +++ b/public/models/panneauaffichage/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83c9f3e923f9fa8e30419925a05928342922fc4a7972beff1ff727fc620a343 +size 527226 diff --git a/public/models/panneauclassique/model.gltf b/public/models/panneauclassique/model.gltf new file mode 100644 index 0000000..17eead0 --- /dev/null +++ b/public/models/panneauclassique/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d40795a27513cc6108cd4de987670869679770120c8423d704d6f9debada39 +size 11147 diff --git a/public/models/panneaufleche/model.gltf b/public/models/panneaufleche/model.gltf new file mode 100644 index 0000000..d6ef487 --- /dev/null +++ b/public/models/panneaufleche/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f5cf9934966a69c0a3f7cdeea296272a6facdab4452146413d1a2de75c9a56 +size 14798 diff --git a/public/models/panneausolaire/model.gltf b/public/models/panneausolaire/model.gltf new file mode 100644 index 0000000..002641e --- /dev/null +++ b/public/models/panneausolaire/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce2d53dd8eb292af843fa18beabe526c452db6e015a1e391c4945db5979c0a7 +size 5990 diff --git a/public/models/panneausolaire/panneau_baseColor.png b/public/models/panneausolaire/panneau_baseColor.png new file mode 100644 index 0000000..fbcb15c --- /dev/null +++ b/public/models/panneausolaire/panneau_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291240525290666ce1a48bdd582632fbe16114bb43afe40cec3f9ed9fa283da2 +size 877220 diff --git a/public/models/panneausolaire/panneau_normal.png b/public/models/panneausolaire/panneau_normal.png new file mode 100644 index 0000000..2bdfa8b --- /dev/null +++ b/public/models/panneausolaire/panneau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36f484bda29faf64227231fccc888eadd6a76cb100004398820b368669ecec7 +size 2510158 diff --git a/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png b/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..5bcc0e3 --- /dev/null +++ b/public/models/panneausolaire/panneau_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245e50263e24661e727e285b9f15006638f9cc15feafed65e377d32497fe3738 +size 16902 diff --git a/public/models/panneausolaire/panneausolaire.bin b/public/models/panneausolaire/panneausolaire.bin new file mode 100644 index 0000000..9b10fef --- /dev/null +++ b/public/models/panneausolaire/panneausolaire.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d00887ad0abedf4c8280c29c5d27effbfbb3a27330a61aae5f8484d6755a955 +size 93288 diff --git a/public/models/panneausolaire/poteau_baseColor.png b/public/models/panneausolaire/poteau_baseColor.png new file mode 100644 index 0000000..9832ff9 --- /dev/null +++ b/public/models/panneausolaire/poteau_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059dd5d07b5588f5fced3d2dbec525257c04ffa8542afe6c355206603e8bcf72 +size 445627 diff --git a/public/models/panneausolaire/poteau_normal.png b/public/models/panneausolaire/poteau_normal.png new file mode 100644 index 0000000..64e00d4 --- /dev/null +++ b/public/models/panneausolaire/poteau_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ce849aea06f3e3bba3a3e17fd6f26fa646c3ec4660d73f6d0c10a3856731e0 +size 3064096 diff --git a/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png b/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..22b7e21 --- /dev/null +++ b/public/models/panneausolaire/poteau_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b6339bbfb029f8bcac8f3253d28b68d6ae4968d5171ba477d0a29c5e806192 +size 607725 diff --git a/public/models/parcebike/led_Base_color.png b/public/models/parcebike/led_Base_color.png new file mode 100644 index 0000000..91e601b --- /dev/null +++ b/public/models/parcebike/led_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8053d44ff6db0b65d2f7334819363ea92ad6a532b357707c3066b17ceb2b80 +size 383927 diff --git a/public/models/parcebike/led_Height.png b/public/models/parcebike/led_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/parcebike/led_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/parcebike/led_Metallic.png b/public/models/parcebike/led_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/parcebike/led_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/parcebike/led_Mixed_AO.png b/public/models/parcebike/led_Mixed_AO.png new file mode 100644 index 0000000..eb9995c --- /dev/null +++ b/public/models/parcebike/led_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f531fca430551bd6bdbc2c99f3899f6578b16dca9371069d3e20b0d6b05dfe8a +size 381897 diff --git a/public/models/parcebike/led_Normal.png b/public/models/parcebike/led_Normal.png new file mode 100644 index 0000000..1b6c5a8 --- /dev/null +++ b/public/models/parcebike/led_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c83385580bc6e3dfd4b1cd178b0828ba7824d893844312e26e2348ae21c7ff0 +size 436931 diff --git a/public/models/parcebike/led_Normal_OpenGL.png b/public/models/parcebike/led_Normal_OpenGL.png new file mode 100644 index 0000000..57dec9c --- /dev/null +++ b/public/models/parcebike/led_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5d5bc669f7fec2adcd01800193b7631d87477a7ef9f229a148599bddc30294 +size 438517 diff --git a/public/models/parcebike/led_Opacity.png b/public/models/parcebike/led_Opacity.png new file mode 100644 index 0000000..04e30c3 --- /dev/null +++ b/public/models/parcebike/led_Opacity.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af43f1b77712813ee4f69ee2ae06a36f0f76af933e37ddc989426954298d35de +size 3179 diff --git a/public/models/parcebike/led_Roughness.png b/public/models/parcebike/led_Roughness.png new file mode 100644 index 0000000..9f4eff3 --- /dev/null +++ b/public/models/parcebike/led_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5df2819e3f4c37c6b03348ed168d2bc5380b0aa84977b3118c4d4c69c32b2f +size 157341 diff --git a/public/models/parcebike/model.bin b/public/models/parcebike/model.bin new file mode 100644 index 0000000..b0c1f83 --- /dev/null +++ b/public/models/parcebike/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db23dbdb92c008d69160232bf2d21ba8a9c399f4aaa94f99fca9547a3e4a3991 +size 43248 diff --git a/public/models/parcebike/model.gltf b/public/models/parcebike/model.gltf new file mode 100644 index 0000000..60c349d --- /dev/null +++ b/public/models/parcebike/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abac290c9ad7af8d0dde6a4ddbdc2b8563abcf345cd43ebf9f87e3f8698bd13 +size 9530 diff --git a/public/models/parcebike/station_Base_color.png b/public/models/parcebike/station_Base_color.png new file mode 100644 index 0000000..a0ba6c3 --- /dev/null +++ b/public/models/parcebike/station_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b20eed3dd520188b5f8b902f2d46939340f2e6e427cdf5a3e1f7ed48c29c2b +size 159141 diff --git a/public/models/parcebike/station_Height.png b/public/models/parcebike/station_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/parcebike/station_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/parcebike/station_Metallic.png b/public/models/parcebike/station_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/parcebike/station_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/parcebike/station_Mixed_AO.png b/public/models/parcebike/station_Mixed_AO.png new file mode 100644 index 0000000..b917608 --- /dev/null +++ b/public/models/parcebike/station_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13fbb3b7bc191d465d9ad51745e799568dcac8f1f19dd70a747024795683878 +size 193291 diff --git a/public/models/parcebike/station_Normal.png b/public/models/parcebike/station_Normal.png new file mode 100644 index 0000000..f310f37 --- /dev/null +++ b/public/models/parcebike/station_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe53b48a2db309c1be061cbd3dfe6225bbf259e72c4493af878f38852733110 +size 171022 diff --git a/public/models/parcebike/station_Normal_OpenGL.png b/public/models/parcebike/station_Normal_OpenGL.png new file mode 100644 index 0000000..b1af13a --- /dev/null +++ b/public/models/parcebike/station_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88e448231d2e0afde404a886aef0ec6effb85a5c701197a6199c4716ce26609 +size 174422 diff --git a/public/models/parcebike/station_Roughness.png b/public/models/parcebike/station_Roughness.png new file mode 100644 index 0000000..c671dc5 --- /dev/null +++ b/public/models/parcebike/station_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051e456cec154dc3a32d5de4e3f623879f5887040677355b1a8ee2ab3aa25558 +size 145827 diff --git a/public/models/persoprincipal-animated/DefaultMaterial_diffuse-DefaultMaterial_diffuse.png.png b/public/models/persoprincipal-animated/DefaultMaterial_diffuse-DefaultMaterial_diffuse.png.png new file mode 100644 index 0000000..96cef42 --- /dev/null +++ b/public/models/persoprincipal-animated/DefaultMaterial_diffuse-DefaultMaterial_diffuse.png.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13a52024af8049041173e438d5766820f9e2cf631a4b0d4d0bd5f45eace4ed6 +size 813477 diff --git a/public/models/persoprincipal-animated/DefaultMaterial_normal.png b/public/models/persoprincipal-animated/DefaultMaterial_normal.png new file mode 100644 index 0000000..d89f970 --- /dev/null +++ b/public/models/persoprincipal-animated/DefaultMaterial_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9f8d709231086437b89baf6877f856acc99a3d44e237c575ca4bfb93967c04 +size 3161415 diff --git a/public/models/persoprincipal-animated/model.bin b/public/models/persoprincipal-animated/model.bin new file mode 100644 index 0000000..f364774 --- /dev/null +++ b/public/models/persoprincipal-animated/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1662c7370b62021a711680cbd0fea63b05271c33fa283d11addd560e3b8d05ff +size 1818304 diff --git a/public/models/persoprincipal-animated/model.gltf b/public/models/persoprincipal-animated/model.gltf new file mode 100644 index 0000000..45dda99 --- /dev/null +++ b/public/models/persoprincipal-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:792a5269d7c00af7552ec11a9a13d8a636b193ad84c679afe9ae32ac9a0fa699 +size 98134 diff --git a/public/models/persoprincipal/defaultmaterial_basecolor.png b/public/models/persoprincipal/defaultmaterial_basecolor.png new file mode 100644 index 0000000..1e783b3 --- /dev/null +++ b/public/models/persoprincipal/defaultmaterial_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc0ae8aedd986a5b6a7d635c18760249deb991fd5169e08db95a8199dea6316 +size 567490 diff --git a/public/models/persoprincipal/defaultmaterial_normal.png b/public/models/persoprincipal/defaultmaterial_normal.png new file mode 100644 index 0000000..d89f970 --- /dev/null +++ b/public/models/persoprincipal/defaultmaterial_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9f8d709231086437b89baf6877f856acc99a3d44e237c575ca4bfb93967c04 +size 3161415 diff --git a/public/models/persoprincipal/defaultmaterial_occlusionroughnessmetallic.png b/public/models/persoprincipal/defaultmaterial_occlusionroughnessmetallic.png new file mode 100644 index 0000000..f3c42a8 --- /dev/null +++ b/public/models/persoprincipal/defaultmaterial_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e688a68595bb24f65e30562eec2b70a2d97b279d3257b1284f6cd1d7035ba297 +size 698280 diff --git a/public/models/persoprincipal/mc.bin b/public/models/persoprincipal/mc.bin new file mode 100644 index 0000000..7563476 --- /dev/null +++ b/public/models/persoprincipal/mc.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da5321caee0edce2629f0c5cd322e3924cbc921adf6fc55c498536889aa48d4 +size 1916472 diff --git a/public/models/persoprincipal/model.gltf b/public/models/persoprincipal/model.gltf new file mode 100644 index 0000000..faa8ff2 --- /dev/null +++ b/public/models/persoprincipal/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955c5c954519afef152989a1fb4d187e115fd5893a6a8f7119e4818bf87dc3ac +size 3136 diff --git a/public/models/potager/potager.bin b/public/models/potager/potager.bin new file mode 100644 index 0000000..2c41af6 --- /dev/null +++ b/public/models/potager/potager.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba960011c92ed9d62232442d6244aaddffd76b0393679fcc8d99acbd0f2d708 +size 8208 diff --git a/public/models/potager/potager.gltf b/public/models/potager/potager.gltf new file mode 100644 index 0000000..b75caf5 --- /dev/null +++ b/public/models/potager/potager.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a98064f56d0e27f8cdd66d616fce7f5efe9182e2558ec5273e7c5005bb0bbdf +size 2971 diff --git a/public/models/potager/potager_baseColor.png b/public/models/potager/potager_baseColor.png new file mode 100644 index 0000000..1525482 --- /dev/null +++ b/public/models/potager/potager_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d303060d9b4c7b25697ecef91b94e85e3a7441e9338b4e5d63822522e92b1dd +size 572329 diff --git a/public/models/potager/potager_normal.png b/public/models/potager/potager_normal.png new file mode 100644 index 0000000..e9a7798 --- /dev/null +++ b/public/models/potager/potager_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828b0d2fd954e6badc77023e5eddfce5bf583d0bb27a3b946e169b617af9c1f3 +size 2260045 diff --git a/public/models/potager/potager_occlusionRoughnessMetallic.png b/public/models/potager/potager_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..ef86030 --- /dev/null +++ b/public/models/potager/potager_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cf3d89aae778188dff99071d86e1c2ef911748c87f0ecec4eb5ef8d8149935 +size 16901 diff --git a/public/models/puce/model.gltf b/public/models/puce/model.gltf new file mode 100644 index 0000000..8be11e4 --- /dev/null +++ b/public/models/puce/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdc4def45c4fbc8c0b083edd70edac6970602d5a609ac7a1b5e8213272b8833 +size 517383 diff --git a/public/models/puce/puces_Base_color.png b/public/models/puce/puces_Base_color.png new file mode 100644 index 0000000..6c91328 --- /dev/null +++ b/public/models/puce/puces_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4945a42ce365fecb6b64549cae5519a141ff9a7e14d1ab834182ac9737c05a82 +size 46976 diff --git a/public/models/puce/puces_Height.png b/public/models/puce/puces_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/puce/puces_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/puce/puces_Metallic.png b/public/models/puce/puces_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/puce/puces_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/puce/puces_Mixed_AO.png b/public/models/puce/puces_Mixed_AO.png new file mode 100644 index 0000000..e3507ef --- /dev/null +++ b/public/models/puce/puces_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e9cd7f981995050b483e59ac123b397d7ec5ca3d30d10215b4a9ec01a27a69 +size 222566 diff --git a/public/models/puce/puces_Normal.png b/public/models/puce/puces_Normal.png new file mode 100644 index 0000000..fd77f2d --- /dev/null +++ b/public/models/puce/puces_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be38b03c2aa41d54235e0bf6fa491c13a24ff2ecb4db609ce62c2e83fbf6c19 +size 149845 diff --git a/public/models/puce/puces_Normal_OpenGL.png b/public/models/puce/puces_Normal_OpenGL.png new file mode 100644 index 0000000..aa432ed --- /dev/null +++ b/public/models/puce/puces_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b991ea9ce0ec7d61e33bafdae0526a0f9285777685a8e98b4e69fd22234a67a6 +size 152096 diff --git a/public/models/puce/puces_Roughness.png b/public/models/puce/puces_Roughness.png new file mode 100644 index 0000000..0855db0 --- /dev/null +++ b/public/models/puce/puces_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d89d63628794f450ce8f6503010aaf9e257b3839242a41f92a472a9ca75a3af +size 101983 diff --git a/public/models/pylone/color.png b/public/models/pylone/color.png new file mode 100644 index 0000000..5ab79e7 --- /dev/null +++ b/public/models/pylone/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5062c165b6c3a5375739463531da7667f50f59f5c5c3aeb583e95a6b2ea13f3 +size 1586893 diff --git a/public/models/pylone/model.bin b/public/models/pylone/model.bin new file mode 100644 index 0000000..fd07cb2 --- /dev/null +++ b/public/models/pylone/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56e6ab512a5532fbff1b2b2a2a8d9b9d6ad1fd47c979f1c4d78f8435cf26098 +size 50620 diff --git a/public/models/pylone/model.gltf b/public/models/pylone/model.gltf new file mode 100644 index 0000000..7ed6228 --- /dev/null +++ b/public/models/pylone/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:187bb31dbfbb25fb08ed41463ec81be9e6ff0cba6bc0e06aa0e622ebe16486e2 +size 8555 diff --git a/public/models/pylone/normal.png b/public/models/pylone/normal.png new file mode 100644 index 0000000..62967ba --- /dev/null +++ b/public/models/pylone/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6905f86f3162c8b15713c12c86ef91aa67f97d13354367f7f4c4f4ee4b5b8f96 +size 1650186 diff --git a/public/models/refroidisseur/model.bin b/public/models/refroidisseur/model.bin new file mode 100644 index 0000000..122a51e --- /dev/null +++ b/public/models/refroidisseur/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f845a1a0cd3e5724e12128d69d5877924ac2e064da2192ff15366dfd40d979 +size 86688 diff --git a/public/models/refroidisseur/model.gltf b/public/models/refroidisseur/model.gltf new file mode 100644 index 0000000..06003c7 --- /dev/null +++ b/public/models/refroidisseur/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73bf75ca13f413baeb14cf582801f8a5e91bd2d579d0f164e168a06cdd21591 +size 5443 diff --git a/public/models/refroidisseur/refroidisseur_base_color.png b/public/models/refroidisseur/refroidisseur_base_color.png new file mode 100644 index 0000000..d2b432c --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7b8f995889058dcd455939d00ace96a81b19d18819246bfbc7b7149b43d00c +size 459805 diff --git a/public/models/refroidisseur/refroidisseur_height.png b/public/models/refroidisseur/refroidisseur_height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/refroidisseur/refroidisseur_metallic.png b/public/models/refroidisseur/refroidisseur_metallic.png new file mode 100644 index 0000000..b2057f8 --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4e1bf8a2a60bd9e2499ec2368396003339a5d226baf0cf7eba560ae96730d2 +size 315061 diff --git a/public/models/refroidisseur/refroidisseur_mixed_ao.png b/public/models/refroidisseur/refroidisseur_mixed_ao.png new file mode 100644 index 0000000..be616b5 --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e054fe664150576e4a7295baa72eee6d6cd8d9793906bb2700b04d0bcfd18843 +size 450738 diff --git a/public/models/refroidisseur/refroidisseur_normal.png b/public/models/refroidisseur/refroidisseur_normal.png new file mode 100644 index 0000000..07a427e --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aae16604ac46db6f50bc3931326a4b8aaf6e6ca5282bd0142a3347240e3107c +size 344439 diff --git a/public/models/refroidisseur/refroidisseur_normal_opengl.png b/public/models/refroidisseur/refroidisseur_normal_opengl.png new file mode 100644 index 0000000..f47ff7d --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec6fc9f03c3cbca3f59df127f1b4f00898d5856d6b60d9a1343b7f6bba018dd +size 344394 diff --git a/public/models/refroidisseur/refroidisseur_roughness.png b/public/models/refroidisseur/refroidisseur_roughness.png new file mode 100644 index 0000000..6d75f96 --- /dev/null +++ b/public/models/refroidisseur/refroidisseur_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7b20fbb9a50c6028ae4f2b8fee66879e1d553421c4a99755fdf21f11eb9b74 +size 262573 diff --git a/public/models/sapin-animated/feuilles_baseColor.png b/public/models/sapin-animated/feuilles_baseColor.png new file mode 100644 index 0000000..0641e6a --- /dev/null +++ b/public/models/sapin-animated/feuilles_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0be26c96cbdaa43adce248d320591bb7fd4bd0ca25a343396525caa267c15a +size 298377 diff --git a/public/models/sapin-animated/feuilles_normal.png b/public/models/sapin-animated/feuilles_normal.png new file mode 100644 index 0000000..583b3d3 --- /dev/null +++ b/public/models/sapin-animated/feuilles_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64294356496da8b60d10a9948a690124208cbcf7049b550a30c9b5d6fcba7921 +size 1224002 diff --git a/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png b/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..ffed140 --- /dev/null +++ b/public/models/sapin-animated/feuilles_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8aa33e3eab71a7a16520c160962f1a53d616046c6e9606142d9baddf1aa754 +size 187766 diff --git a/public/models/sapin-animated/model.gltf b/public/models/sapin-animated/model.gltf new file mode 100644 index 0000000..67ef10a --- /dev/null +++ b/public/models/sapin-animated/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aca3b2934c1bb73bbb09ffb9ce7d084bc30250ed6770257f5ea23c179fafca +size 512585 diff --git a/public/models/sapin-animated/sapin2.bin b/public/models/sapin-animated/sapin2.bin new file mode 100644 index 0000000..37c1fe5 --- /dev/null +++ b/public/models/sapin-animated/sapin2.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5386d4ad80e285569af25c98c643d5442763d8c9895d3e7d121c8e0aabd3dd99 +size 1813200 diff --git a/public/models/sapin-animated/tronc_baseColor.png b/public/models/sapin-animated/tronc_baseColor.png new file mode 100644 index 0000000..c6f769d --- /dev/null +++ b/public/models/sapin-animated/tronc_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc329c432869cece7f319a4b48bc55874eeca11905b94bdc6537692a92edb57 +size 267335 diff --git a/public/models/sapin-animated/tronc_normal.png b/public/models/sapin-animated/tronc_normal.png new file mode 100644 index 0000000..988577d --- /dev/null +++ b/public/models/sapin-animated/tronc_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408c065a37a1092b8e0f54935e7c428650c640ec8d63391a6c5689804c9068f1 +size 2408254 diff --git a/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png b/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..0b2584b --- /dev/null +++ b/public/models/sapin-animated/tronc_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e159b9b88d08812ffefe9f8a3b4605be01277038e89a37d0b1f9a7728a38cd0e +size 16901 diff --git a/public/models/sapin/mat.1_basecolor.png b/public/models/sapin/mat.1_basecolor.png new file mode 100644 index 0000000..6240aa1 --- /dev/null +++ b/public/models/sapin/mat.1_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d83cca6440eecb67ac2e87ad3a156985fabe746831f165370c9fc88c7d7b3d +size 388119 diff --git a/public/models/sapin/mat.1_normal.png b/public/models/sapin/mat.1_normal.png new file mode 100644 index 0000000..635fc57 --- /dev/null +++ b/public/models/sapin/mat.1_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8fdcaeb984716286644ac178fa1eb519bb8e64d0873afaa3b33406ae037c51a +size 2727481 diff --git a/public/models/sapin/mat.1_occlusionroughnessmetallic.png b/public/models/sapin/mat.1_occlusionroughnessmetallic.png new file mode 100644 index 0000000..78d1a6e --- /dev/null +++ b/public/models/sapin/mat.1_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4e50b51b8c9d21af2ba47257a22d64fd92492686dc38bee94aa8f85660a01b +size 154331 diff --git a/public/models/sapin/mat_basecolor.png b/public/models/sapin/mat_basecolor.png new file mode 100644 index 0000000..c6f769d --- /dev/null +++ b/public/models/sapin/mat_basecolor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc329c432869cece7f319a4b48bc55874eeca11905b94bdc6537692a92edb57 +size 267335 diff --git a/public/models/sapin/mat_normal.png b/public/models/sapin/mat_normal.png new file mode 100644 index 0000000..988577d --- /dev/null +++ b/public/models/sapin/mat_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408c065a37a1092b8e0f54935e7c428650c640ec8d63391a6c5689804c9068f1 +size 2408254 diff --git a/public/models/sapin/mat_occlusionroughnessmetallic.png b/public/models/sapin/mat_occlusionroughnessmetallic.png new file mode 100644 index 0000000..0b2584b --- /dev/null +++ b/public/models/sapin/mat_occlusionroughnessmetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e159b9b88d08812ffefe9f8a3b4605be01277038e89a37d0b1f9a7728a38cd0e +size 16901 diff --git a/public/models/sapin/model.gltf b/public/models/sapin/model.gltf new file mode 100644 index 0000000..65c04f4 --- /dev/null +++ b/public/models/sapin/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f66d375ba33367cc0349b3c54dce6009b9cbe3bfb941d4c05a3e224451740a +size 5811 diff --git a/public/models/sapin/sapin.bin b/public/models/sapin/sapin.bin new file mode 100644 index 0000000..6138a88 --- /dev/null +++ b/public/models/sapin/sapin.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52871cebeb728b03bf56a8c44ebc8bd90b0c075fddbb91c45a82a16847ee3d3c +size 1814928 diff --git a/public/models/sky/model.glb b/public/models/sky/model.glb new file mode 100644 index 0000000..0f3feb7 --- /dev/null +++ b/public/models/sky/model.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2a39ec378538c2b28064437f794963fad4f3091dc960e5feca63dff7c60d85 +size 329420 diff --git a/public/models/skybox/model.gltf b/public/models/skybox/model.gltf new file mode 100644 index 0000000..5c70176 --- /dev/null +++ b/public/models/skybox/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ca062a158673a16b3707307a23b3db118f86da4ae1d3338bc95d41f8303b1d +size 3224 diff --git a/public/models/skybox/skybox.bin b/public/models/skybox/skybox.bin new file mode 100644 index 0000000..11f27b0 --- /dev/null +++ b/public/models/skybox/skybox.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6889cfa5d83f84cdbe96e78b9d7a09ac0e77cae79b74c0f0aed4ad291f5189b +size 8304 diff --git a/public/models/skybox/skybox.glb b/public/models/skybox/skybox.glb new file mode 100644 index 0000000..fa22515 --- /dev/null +++ b/public/models/skybox/skybox.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817538fdb6beb8288f28ef4617cd5be2954107aa122a3ea9e10970197aec9cbf +size 3111268 diff --git a/public/models/skybox/skybox_baseColor.png b/public/models/skybox/skybox_baseColor.png new file mode 100644 index 0000000..eb2acb5 --- /dev/null +++ b/public/models/skybox/skybox_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df49422f6fe375c5f949e5aa3196054e2a2df83335e57404baf8ff7f4094b2d +size 762550 diff --git a/public/models/skybox/skybox_normal.png b/public/models/skybox/skybox_normal.png new file mode 100644 index 0000000..b8ea172 --- /dev/null +++ b/public/models/skybox/skybox_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519ef3f12383063f1db6787d17779c07dcf747d4cf4d33ca68ed0b21a6bcda32 +size 2299605 diff --git a/public/models/skybox/skybox_occlusionRoughnessMetallic.png b/public/models/skybox/skybox_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..bb44d8b --- /dev/null +++ b/public/models/skybox/skybox_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0812c7865495abfbed0c8f736fe4a4d831768e084d512bcc379407ece1ee0cc +size 37463 diff --git a/public/models/talkie/antenne_Base_color.png b/public/models/talkie/antenne_Base_color.png new file mode 100644 index 0000000..db60934 --- /dev/null +++ b/public/models/talkie/antenne_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5ba4130daed3b1edae078cc73ad5a4d9955c8c464abcbc6af2a80077842f7a +size 312866 diff --git a/public/models/talkie/antenne_Height.png b/public/models/talkie/antenne_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/antenne_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/antenne_Metallic.png b/public/models/talkie/antenne_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/antenne_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/antenne_Mixed_AO.png b/public/models/talkie/antenne_Mixed_AO.png new file mode 100644 index 0000000..3ba6e13 --- /dev/null +++ b/public/models/talkie/antenne_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ec5ee97080be475cf3f3da71ca440dac8ccbe104510f519d1b4ee928d5b2b9 +size 187817 diff --git a/public/models/talkie/antenne_Roughness.png b/public/models/talkie/antenne_Roughness.png new file mode 100644 index 0000000..e6233e4 --- /dev/null +++ b/public/models/talkie/antenne_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c3fb77f1204027e6d0d46e59dc6b68cd13fc68099b20612b75749460a3c8b8 +size 69233 diff --git a/public/models/talkie/antenne_normal.png b/public/models/talkie/antenne_normal.png new file mode 100644 index 0000000..bf16203 --- /dev/null +++ b/public/models/talkie/antenne_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8e995d1260a97d5f1c099aa51ccf35123316264751c940bb5e71e3d115c133 +size 205065 diff --git a/public/models/talkie/antenne_normal_opengl.png b/public/models/talkie/antenne_normal_opengl.png new file mode 100644 index 0000000..7c1dc2b --- /dev/null +++ b/public/models/talkie/antenne_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ec8c53b5e60fb3f13da3db4b787a6dd667f51c05eb92e925902b33c5fb68f5 +size 204007 diff --git a/public/models/talkie/boutona_Base_color.png b/public/models/talkie/boutona_Base_color.png new file mode 100644 index 0000000..f493f55 --- /dev/null +++ b/public/models/talkie/boutona_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef47a91bfd020de0983e75bc8bc03277b651c894da0f006dc49d5bfb91e86623 +size 473199 diff --git a/public/models/talkie/boutona_Height.png b/public/models/talkie/boutona_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/boutona_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/boutona_Metallic.png b/public/models/talkie/boutona_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/boutona_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/boutona_Mixed_AO.png b/public/models/talkie/boutona_Mixed_AO.png new file mode 100644 index 0000000..d28322d --- /dev/null +++ b/public/models/talkie/boutona_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45671cafcc91e40f67120f22f7b58c75a9bf5289f8dd67019d7c836253e8942 +size 244343 diff --git a/public/models/talkie/boutona_Roughness.png b/public/models/talkie/boutona_Roughness.png new file mode 100644 index 0000000..daa6677 --- /dev/null +++ b/public/models/talkie/boutona_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adaedf0e287c99669b47a0e3e3b99ed2c6f1f5a761e69168418e56610d7d8f9a +size 54561 diff --git a/public/models/talkie/boutona_normal.png b/public/models/talkie/boutona_normal.png new file mode 100644 index 0000000..4cf6138 --- /dev/null +++ b/public/models/talkie/boutona_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0e761804d0546dc6cd9d929fdecab8f6852866a6f2025c03c76c34b2040ee0 +size 175939 diff --git a/public/models/talkie/boutona_normal_opengl.png b/public/models/talkie/boutona_normal_opengl.png new file mode 100644 index 0000000..80416e2 --- /dev/null +++ b/public/models/talkie/boutona_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c390222c74160382b92a5736664c37e3861937db2e2d58699643516fc52995 +size 176366 diff --git a/public/models/talkie/boutonb_Base_color.png b/public/models/talkie/boutonb_Base_color.png new file mode 100644 index 0000000..ed59d49 --- /dev/null +++ b/public/models/talkie/boutonb_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84973c1c06bf83beacd0987c5d252560ec92e09701b3ac6b73289f39392c21da +size 496575 diff --git a/public/models/talkie/boutonb_Height.png b/public/models/talkie/boutonb_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/boutonb_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/boutonb_Metallic.png b/public/models/talkie/boutonb_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/boutonb_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/boutonb_Mixed_AO.png b/public/models/talkie/boutonb_Mixed_AO.png new file mode 100644 index 0000000..8292910 --- /dev/null +++ b/public/models/talkie/boutonb_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58e8ec5e90125edd38f279ee1b9fee863b75d8396fef6a0c22a9af6a9c0a341 +size 239658 diff --git a/public/models/talkie/boutonb_Roughness.png b/public/models/talkie/boutonb_Roughness.png new file mode 100644 index 0000000..acba391 --- /dev/null +++ b/public/models/talkie/boutonb_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad833228a99505d0fea7495970bfbf47d3942a86d457aca379b99d8224d8633f +size 54522 diff --git a/public/models/talkie/boutonb_normal.png b/public/models/talkie/boutonb_normal.png new file mode 100644 index 0000000..943917e --- /dev/null +++ b/public/models/talkie/boutonb_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e5d76fcd40986674d93f289cea51c6b839d720787d98ed4112164e20558bd2 +size 176052 diff --git a/public/models/talkie/boutonb_normal_opengl.png b/public/models/talkie/boutonb_normal_opengl.png new file mode 100644 index 0000000..47539e6 --- /dev/null +++ b/public/models/talkie/boutonb_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1ea79411217de422f6f7fd160c673e01a2a09ebce1d95a6b5e63c8c1e5de18 +size 176723 diff --git a/public/models/talkie/cable1_Base_color.png b/public/models/talkie/cable1_Base_color.png new file mode 100644 index 0000000..0aa378c --- /dev/null +++ b/public/models/talkie/cable1_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967d8771fbcd5427bf0005b147ecae38ab53271c4a99980f34db1102d0cb35f0 +size 178767 diff --git a/public/models/talkie/cable1_Height.png b/public/models/talkie/cable1_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/cable1_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/cable1_Metallic.png b/public/models/talkie/cable1_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/cable1_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/cable1_Mixed_AO.png b/public/models/talkie/cable1_Mixed_AO.png new file mode 100644 index 0000000..2003ade --- /dev/null +++ b/public/models/talkie/cable1_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73378e05b925c39d37e3cfdb1048d891b6216927fbd9eab111a61051d9c5fadd +size 142820 diff --git a/public/models/talkie/cable1_Roughness.png b/public/models/talkie/cable1_Roughness.png new file mode 100644 index 0000000..c1c9096 --- /dev/null +++ b/public/models/talkie/cable1_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2a10008bf8a90ca1e7ef831944d8e6b2c41d5aa9b5a1f20f49d7dcc942b9f2 +size 56819 diff --git a/public/models/talkie/cable1_normal.png b/public/models/talkie/cable1_normal.png new file mode 100644 index 0000000..8f1338d --- /dev/null +++ b/public/models/talkie/cable1_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4d0e26c8d16fcb471e2812585fb27ddfbce4500c526fce512d61f7611c5b99 +size 186292 diff --git a/public/models/talkie/cable1_normal_opengl.png b/public/models/talkie/cable1_normal_opengl.png new file mode 100644 index 0000000..456bcdb --- /dev/null +++ b/public/models/talkie/cable1_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8854c9b53ac97ce6113d351aa528d9a6664e90947678aee05731695e034d1c79 +size 187073 diff --git a/public/models/talkie/cable2_Base_color.png b/public/models/talkie/cable2_Base_color.png new file mode 100644 index 0000000..ba3be72 --- /dev/null +++ b/public/models/talkie/cable2_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1bdd610bf135a20471bc2b65e53f2a2333ab6e845380f55fed93d45dce1897 +size 210840 diff --git a/public/models/talkie/cable2_Height.png b/public/models/talkie/cable2_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/cable2_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/cable2_Metallic.png b/public/models/talkie/cable2_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/cable2_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/cable2_Mixed_AO.png b/public/models/talkie/cable2_Mixed_AO.png new file mode 100644 index 0000000..e3a64cc --- /dev/null +++ b/public/models/talkie/cable2_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e8e315f7950a91135bba6ac43d04563b1e501e83cfb4b57048320768602bc5 +size 167450 diff --git a/public/models/talkie/cable2_Roughness.png b/public/models/talkie/cable2_Roughness.png new file mode 100644 index 0000000..a9440d4 --- /dev/null +++ b/public/models/talkie/cable2_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9e3cc7a29c90c1712196c05915bea480124dddc0db47db9415f738f895660c +size 60898 diff --git a/public/models/talkie/cable2_normal.png b/public/models/talkie/cable2_normal.png new file mode 100644 index 0000000..acc99fd --- /dev/null +++ b/public/models/talkie/cable2_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09eae40cd4d52c348933f49347691f08dc6f25d929ddadbeddd2157444c706f +size 195384 diff --git a/public/models/talkie/cable2_normal_opengl.png b/public/models/talkie/cable2_normal_opengl.png new file mode 100644 index 0000000..d184f94 --- /dev/null +++ b/public/models/talkie/cable2_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1ae64895328cae7bf8816a43eb38ca4db82b7979d02db927bc307fa7ec66c6 +size 196010 diff --git a/public/models/talkie/cadre_Base_color.png b/public/models/talkie/cadre_Base_color.png new file mode 100644 index 0000000..afbe925 --- /dev/null +++ b/public/models/talkie/cadre_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637e73b56419d8390e8aeb27433fdee21264c9d5b28e1caaf7e1357f6c191fd3 +size 280049 diff --git a/public/models/talkie/cadre_Height.png b/public/models/talkie/cadre_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/cadre_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/cadre_Metallic.png b/public/models/talkie/cadre_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/cadre_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/cadre_Mixed_AO.png b/public/models/talkie/cadre_Mixed_AO.png new file mode 100644 index 0000000..0151384 --- /dev/null +++ b/public/models/talkie/cadre_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f9912860e5f508e0e29ef1e03943101cdb287a1c34bd0278ac237824255da5 +size 157683 diff --git a/public/models/talkie/cadre_Roughness.png b/public/models/talkie/cadre_Roughness.png new file mode 100644 index 0000000..264a6e4 --- /dev/null +++ b/public/models/talkie/cadre_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb28f17a6f419356f49088c8c5b8d12b6aaf2471ee7e35ef42e0fda3a5365f2 +size 53784 diff --git a/public/models/talkie/cadre_normal.png b/public/models/talkie/cadre_normal.png new file mode 100644 index 0000000..8d2a5a3 --- /dev/null +++ b/public/models/talkie/cadre_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982a042d28061ce926c80293129985733aba79bc7115e0f5b55e4f4186808f5a +size 52817 diff --git a/public/models/talkie/cadre_normal_opengl.png b/public/models/talkie/cadre_normal_opengl.png new file mode 100644 index 0000000..46032a3 --- /dev/null +++ b/public/models/talkie/cadre_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d63de38e7fefca7ec94b4057b37256c477dbd2749f950f0bd373932b52cbf9 +size 52737 diff --git a/public/models/talkie/e_cran_base_color.png b/public/models/talkie/e_cran_base_color.png new file mode 100644 index 0000000..a8c2149 --- /dev/null +++ b/public/models/talkie/e_cran_base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75363e70ffed07a182a3e61d7c301cb8fd053ac8ec784d56e9450335167dce8 +size 6502 diff --git a/public/models/talkie/e_cran_height.png b/public/models/talkie/e_cran_height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/e_cran_height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/e_cran_metallic.png b/public/models/talkie/e_cran_metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/e_cran_metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/e_cran_mixed_ao.png b/public/models/talkie/e_cran_mixed_ao.png new file mode 100644 index 0000000..e91eb6e --- /dev/null +++ b/public/models/talkie/e_cran_mixed_ao.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f3fd92f328f0733f9cb9865209466c251f4edf4750654eb0385b519300cf34 +size 329712 diff --git a/public/models/talkie/e_cran_normal.png b/public/models/talkie/e_cran_normal.png new file mode 100644 index 0000000..175152b --- /dev/null +++ b/public/models/talkie/e_cran_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07dd2bf8fe1d37b9a74d2ca09b8a77d8a97029d41a8483e34ba30bd8e9efc04 +size 74315 diff --git a/public/models/talkie/e_cran_normal_opengl.png b/public/models/talkie/e_cran_normal_opengl.png new file mode 100644 index 0000000..e17d9b3 --- /dev/null +++ b/public/models/talkie/e_cran_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca90a32ea8b1dadb11a5cf2e41d4d096920fd7a2ab493dec96682a479d4e7a8c +size 74316 diff --git a/public/models/talkie/e_cran_roughness.png b/public/models/talkie/e_cran_roughness.png new file mode 100644 index 0000000..ad642fa --- /dev/null +++ b/public/models/talkie/e_cran_roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700f97e34547f14a62a45858218e56eb3715a278380c2f1f14be9ca6feaae959 +size 72768 diff --git a/public/models/talkie/hautparleur_Base_color.png b/public/models/talkie/hautparleur_Base_color.png new file mode 100644 index 0000000..9e43314 --- /dev/null +++ b/public/models/talkie/hautparleur_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36168017b9c2d6961f869f461812a53ed4bdb49f24f350452f4604009acb6fe8 +size 658014 diff --git a/public/models/talkie/hautparleur_Height.png b/public/models/talkie/hautparleur_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/hautparleur_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/hautparleur_Metallic.png b/public/models/talkie/hautparleur_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/hautparleur_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/hautparleur_Mixed_AO.png b/public/models/talkie/hautparleur_Mixed_AO.png new file mode 100644 index 0000000..f2bfd28 --- /dev/null +++ b/public/models/talkie/hautparleur_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ac8737a9eccff201ad351b4b403e93ed65c7a082052c1070455bc7c795bcbb +size 201135 diff --git a/public/models/talkie/hautparleur_Roughness.png b/public/models/talkie/hautparleur_Roughness.png new file mode 100644 index 0000000..17ac038 --- /dev/null +++ b/public/models/talkie/hautparleur_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7c1e238150662981d8a4d003045021ee0cca21af14dc79a9180671c6a82621 +size 74349 diff --git a/public/models/talkie/hautparleur_normal.png b/public/models/talkie/hautparleur_normal.png new file mode 100644 index 0000000..5d89a1c --- /dev/null +++ b/public/models/talkie/hautparleur_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65edaf688e31787da8deb864079aed068cc71775dbbde4c350481896c2d8a204 +size 98635 diff --git a/public/models/talkie/hautparleur_normal_opengl.png b/public/models/talkie/hautparleur_normal_opengl.png new file mode 100644 index 0000000..814a2b3 --- /dev/null +++ b/public/models/talkie/hautparleur_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c689c9d28d984f54e5647de38423f34da442b8e8cac076052bfa5df07457fb1c +size 98768 diff --git a/public/models/talkie/model.bin b/public/models/talkie/model.bin new file mode 100644 index 0000000..7e13375 --- /dev/null +++ b/public/models/talkie/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970717ff52a7275d1e6090a8699021ae57b74127b05c016eafb6dca45158420f +size 198456 diff --git a/public/models/talkie/model.gltf b/public/models/talkie/model.gltf new file mode 100644 index 0000000..5caa83b --- /dev/null +++ b/public/models/talkie/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694acec3219e3cb0dbce0e9739bc3c6655dbf5360f104d50a52618e06d90c946 +size 63007 diff --git a/public/models/talkie/prise_Base_color.png b/public/models/talkie/prise_Base_color.png new file mode 100644 index 0000000..30d846f --- /dev/null +++ b/public/models/talkie/prise_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e012c8775c6eb274a80856394fac6673f7beb754c2f78e1c51c842ac017fdd5 +size 472487 diff --git a/public/models/talkie/prise_Height.png b/public/models/talkie/prise_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/prise_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/prise_Metallic.png b/public/models/talkie/prise_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/prise_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/prise_Mixed_AO.png b/public/models/talkie/prise_Mixed_AO.png new file mode 100644 index 0000000..1ed1f71 --- /dev/null +++ b/public/models/talkie/prise_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7ae156409544d00bf3332fb542aaec0711d4ce4c9d39d4bd573fb4f0212051 +size 230780 diff --git a/public/models/talkie/prise_Roughness.png b/public/models/talkie/prise_Roughness.png new file mode 100644 index 0000000..c827dba --- /dev/null +++ b/public/models/talkie/prise_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161c97c6ad56619ad702cc955a26ea92203575f31bb35ebc8ca398b48aae9889 +size 100073 diff --git a/public/models/talkie/prise_normal.png b/public/models/talkie/prise_normal.png new file mode 100644 index 0000000..5bcffa1 --- /dev/null +++ b/public/models/talkie/prise_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c00bec06b1bbd954eb91872fa8cd817f247b275c16e6c372db52189ba6f3778 +size 212856 diff --git a/public/models/talkie/prise_normal_opengl.png b/public/models/talkie/prise_normal_opengl.png new file mode 100644 index 0000000..6bc3741 --- /dev/null +++ b/public/models/talkie/prise_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8e8d378a595f8aafc4cd34ecac65426a03847a402f955b7b0280f0383d40eb +size 224961 diff --git a/public/models/talkie/talkie_Base_color.png b/public/models/talkie/talkie_Base_color.png new file mode 100644 index 0000000..295b322 --- /dev/null +++ b/public/models/talkie/talkie_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aead25dde6c940f353fa4a53f43e37dde80cd924ccced3c4f88a45dcc5fb4751 +size 610827 diff --git a/public/models/talkie/talkie_Height.png b/public/models/talkie/talkie_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/talkie_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/talkie_Metallic.png b/public/models/talkie/talkie_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/talkie_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/talkie_Mixed_AO.png b/public/models/talkie/talkie_Mixed_AO.png new file mode 100644 index 0000000..a015f96 --- /dev/null +++ b/public/models/talkie/talkie_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a4e5bc8affb8c7f529712ddcc4958982729d4bbc64163d93b4e3df8192f3e9 +size 229809 diff --git a/public/models/talkie/talkie_Roughness.png b/public/models/talkie/talkie_Roughness.png new file mode 100644 index 0000000..091f911 --- /dev/null +++ b/public/models/talkie/talkie_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638da789f9d21dfa546cf053c5f0c4e47fc18eef3d7ac412d39bdbdf3b3974b1 +size 134252 diff --git a/public/models/talkie/talkie_normal.png b/public/models/talkie/talkie_normal.png new file mode 100644 index 0000000..d3e9649 --- /dev/null +++ b/public/models/talkie/talkie_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fba8c5bce232fd16f3d3da18228438443bfcfab6f1673884e2c6439a799a342 +size 285066 diff --git a/public/models/talkie/talkie_normal_opengl.png b/public/models/talkie/talkie_normal_opengl.png new file mode 100644 index 0000000..e58b36f --- /dev/null +++ b/public/models/talkie/talkie_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708382f0b0340e845f0cd4127b84ec5f837f5ca3a51f0c4064ba790374643c21 +size 287356 diff --git a/public/models/talkie/touches_Base_color.png b/public/models/talkie/touches_Base_color.png new file mode 100644 index 0000000..eb7631c --- /dev/null +++ b/public/models/talkie/touches_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ef413967a461f9768b74d15a2ab1c8e3e3fe6fc9be027d8cf1e7268bb8a888 +size 126096 diff --git a/public/models/talkie/touches_Height.png b/public/models/talkie/touches_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/touches_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/touches_Metallic.png b/public/models/talkie/touches_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/touches_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/touches_Mixed_AO.png b/public/models/talkie/touches_Mixed_AO.png new file mode 100644 index 0000000..5673800 --- /dev/null +++ b/public/models/talkie/touches_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6884417f47afb4330b00f9f42fa1faf7b8bbd06d2ae9595cffe409a4d38cd461 +size 246760 diff --git a/public/models/talkie/touches_Roughness.png b/public/models/talkie/touches_Roughness.png new file mode 100644 index 0000000..bd73a19 --- /dev/null +++ b/public/models/talkie/touches_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5804a17a4fd8691a606cbb3e671234f2c876dfc0e88e16d2f781bd35785167cb +size 56002 diff --git a/public/models/talkie/touches_normal.png b/public/models/talkie/touches_normal.png new file mode 100644 index 0000000..07f83c4 --- /dev/null +++ b/public/models/talkie/touches_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d922e17cd400c32ef51462723e9c5ee9dfbe4c668e88e6057f9e7d60c8830e +size 59216 diff --git a/public/models/talkie/touches_normal_opengl.png b/public/models/talkie/touches_normal_opengl.png new file mode 100644 index 0000000..ec98ce7 --- /dev/null +++ b/public/models/talkie/touches_normal_opengl.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cdadc48d7d365fa0f8e4f3b64a61a6fa95cf9bcafaf50dc83ea7cf90173f68b +size 59178 diff --git a/public/models/talkie/écran_Base_color.png b/public/models/talkie/écran_Base_color.png new file mode 100644 index 0000000..b28a367 --- /dev/null +++ b/public/models/talkie/écran_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbf65890f6d5019bf113246dcecb83c97e31d6e10b0429d5e89df9df67a58bd +size 6498 diff --git a/public/models/talkie/écran_Height.png b/public/models/talkie/écran_Height.png new file mode 100644 index 0000000..713980d --- /dev/null +++ b/public/models/talkie/écran_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208daeea7306a6a576fbe1098c66d59571dd984635d7fb6c017fd767cde531ed +size 3178 diff --git a/public/models/talkie/écran_Metallic.png b/public/models/talkie/écran_Metallic.png new file mode 100644 index 0000000..b46e54a --- /dev/null +++ b/public/models/talkie/écran_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60041773ef2d493f3547aa1b0fbdf5b1bb548a3da39164384293ef5292b2c5b3 +size 1118 diff --git a/public/models/talkie/écran_Mixed_AO.png b/public/models/talkie/écran_Mixed_AO.png new file mode 100644 index 0000000..e91eb6e --- /dev/null +++ b/public/models/talkie/écran_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f3fd92f328f0733f9cb9865209466c251f4edf4750654eb0385b519300cf34 +size 329712 diff --git a/public/models/talkie/écran_Normal.png b/public/models/talkie/écran_Normal.png new file mode 100644 index 0000000..175152b --- /dev/null +++ b/public/models/talkie/écran_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07dd2bf8fe1d37b9a74d2ca09b8a77d8a97029d41a8483e34ba30bd8e9efc04 +size 74315 diff --git a/public/models/talkie/écran_Normal_OpenGL.png b/public/models/talkie/écran_Normal_OpenGL.png new file mode 100644 index 0000000..e17d9b3 --- /dev/null +++ b/public/models/talkie/écran_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca90a32ea8b1dadb11a5cf2e41d4d096920fd7a2ab493dec96682a479d4e7a8c +size 74316 diff --git a/public/models/talkie/écran_Roughness.png b/public/models/talkie/écran_Roughness.png new file mode 100644 index 0000000..d89bffa --- /dev/null +++ b/public/models/talkie/écran_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d560c80d755fdfff917c63d96d664cc4c9be963cc38ac63533418f7df1b0642c +size 72772 diff --git a/public/models/terrain/model.gltf b/public/models/terrain/model.gltf new file mode 100644 index 0000000..adb0e43 --- /dev/null +++ b/public/models/terrain/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c6273c523d4388983e3d4589dbff4948be5ab056ab5d32d8c5445e62c98e26 +size 3317 diff --git a/public/models/terrain/terrain.bin b/public/models/terrain/terrain.bin new file mode 100644 index 0000000..819e184 --- /dev/null +++ b/public/models/terrain/terrain.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc32235dbd622b1b8e8e48e77598096867c6fcd15e5758a09c9aeabd8cff0ae +size 166560 diff --git a/public/models/terrain/terrain.glb b/public/models/terrain/terrain.glb new file mode 100644 index 0000000..fecc81c --- /dev/null +++ b/public/models/terrain/terrain.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2cc65b66c44915e4cfe437fbee92b048d1557071b0d6b2d7d7bf53846b0e39 +size 1065588 diff --git a/public/models/terrain/terrain_baseColor.png b/public/models/terrain/terrain_baseColor.png new file mode 100644 index 0000000..d485d16 --- /dev/null +++ b/public/models/terrain/terrain_baseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75fef3b54dfe1d55c32c0f818e3c9c698f97b993d31950e2be81412d270a55a +size 321279 diff --git a/public/models/terrain/terrain_normal.png b/public/models/terrain/terrain_normal.png new file mode 100644 index 0000000..1946133 --- /dev/null +++ b/public/models/terrain/terrain_normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b029cc952c53262bdb085fa2d9ee40deb91d2f673e665d04b1fde9e0ffaa56a +size 568971 diff --git a/public/models/terrain/terrain_occlusionRoughnessMetallic.png b/public/models/terrain/terrain_occlusionRoughnessMetallic.png new file mode 100644 index 0000000..4ede9d0 --- /dev/null +++ b/public/models/terrain/terrain_occlusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae77819db1c487808825c1d0b704795ed9cd0c69fb9b2ea8e22d28a5cc00c41 +size 548462 diff --git a/public/models/tuyauxlac/model.gltf b/public/models/tuyauxlac/model.gltf new file mode 100644 index 0000000..b1844ca --- /dev/null +++ b/public/models/tuyauxlac/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4b32a270f3fc4a0275dc16005ae5c8999e04455ceb76b4b814e7e3848270ad +size 5845996 diff --git a/public/models/tuyauxlac/tuyaux_Base_color.png b/public/models/tuyauxlac/tuyaux_Base_color.png new file mode 100644 index 0000000..72af993 --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c897989f5ef0b9c3d4b7004ad5faa8b0397b27c0c9fdcca418730fa3b2a4ac4 +size 1775963 diff --git a/public/models/tuyauxlac/tuyaux_Height.png b/public/models/tuyauxlac/tuyaux_Height.png new file mode 100644 index 0000000..4464efb --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94d90aaf485afd38a18a9346daa54c62e80d313a69eb31ef786f8cf8b3751f8 +size 724031 diff --git a/public/models/tuyauxlac/tuyaux_Metallic.png b/public/models/tuyauxlac/tuyaux_Metallic.png new file mode 100644 index 0000000..57fee4d --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f660a908ab1be0b75ce2f029e78832f9ca173f4c2d56930b3d1a7729f5eb9dc +size 407636 diff --git a/public/models/tuyauxlac/tuyaux_Mixed_AO.png b/public/models/tuyauxlac/tuyaux_Mixed_AO.png new file mode 100644 index 0000000..13172ba --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29f3cde5df3e61c74f2991b791f66894f7f5dd78cf9dd3d4e1c74c8db6864f8 +size 488217 diff --git a/public/models/tuyauxlac/tuyaux_Normal.png b/public/models/tuyauxlac/tuyaux_Normal.png new file mode 100644 index 0000000..fd9e2bf --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cfded71a5ea30096f90b5a5e8c00b718f9d410e3087d8cca1a8666d2510ca3 +size 6353201 diff --git a/public/models/tuyauxlac/tuyaux_Normal_OpenGL.png b/public/models/tuyauxlac/tuyaux_Normal_OpenGL.png new file mode 100644 index 0000000..5e4acab --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58074081fb9deabdb9ead053e6df94ef870bdf4bb6db0997c08153afb6a3ff6b +size 4305484 diff --git a/public/models/tuyauxlac/tuyaux_Opacity.png b/public/models/tuyauxlac/tuyaux_Opacity.png new file mode 100644 index 0000000..7ab185e --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Opacity.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a5e26dad9b31f83b5173d195fa0b6f2c5054cf48997a4fc24b3ce8ad544df3 +size 12819 diff --git a/public/models/tuyauxlac/tuyaux_Roughness.png b/public/models/tuyauxlac/tuyaux_Roughness.png new file mode 100644 index 0000000..f472a11 --- /dev/null +++ b/public/models/tuyauxlac/tuyaux_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca98919bf9126d5d2f75300ffc00e79bbb056dd9cf4d0f7a1e56beb637eebfa9 +size 804194 diff --git a/public/models/tuyauxpuzzle/model.gltf b/public/models/tuyauxpuzzle/model.gltf new file mode 100644 index 0000000..52095bc --- /dev/null +++ b/public/models/tuyauxpuzzle/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edf8c47e2ea31fc15be323b7dc5e411bd69b55b57de6ec3effccc79b987ecac +size 5733621 diff --git a/public/models/tuyauxpuzzle/tuyaux_Base_color.png b/public/models/tuyauxpuzzle/tuyaux_Base_color.png new file mode 100644 index 0000000..72af993 --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c897989f5ef0b9c3d4b7004ad5faa8b0397b27c0c9fdcca418730fa3b2a4ac4 +size 1775963 diff --git a/public/models/tuyauxpuzzle/tuyaux_Height.png b/public/models/tuyauxpuzzle/tuyaux_Height.png new file mode 100644 index 0000000..4464efb --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94d90aaf485afd38a18a9346daa54c62e80d313a69eb31ef786f8cf8b3751f8 +size 724031 diff --git a/public/models/tuyauxpuzzle/tuyaux_Metallic.png b/public/models/tuyauxpuzzle/tuyaux_Metallic.png new file mode 100644 index 0000000..57fee4d --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Metallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f660a908ab1be0b75ce2f029e78832f9ca173f4c2d56930b3d1a7729f5eb9dc +size 407636 diff --git a/public/models/tuyauxpuzzle/tuyaux_Mixed_AO.png b/public/models/tuyauxpuzzle/tuyaux_Mixed_AO.png new file mode 100644 index 0000000..13172ba --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Mixed_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29f3cde5df3e61c74f2991b791f66894f7f5dd78cf9dd3d4e1c74c8db6864f8 +size 488217 diff --git a/public/models/tuyauxpuzzle/tuyaux_Normal.png b/public/models/tuyauxpuzzle/tuyaux_Normal.png new file mode 100644 index 0000000..fd9e2bf --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cfded71a5ea30096f90b5a5e8c00b718f9d410e3087d8cca1a8666d2510ca3 +size 6353201 diff --git a/public/models/tuyauxpuzzle/tuyaux_Normal_OpenGL.png b/public/models/tuyauxpuzzle/tuyaux_Normal_OpenGL.png new file mode 100644 index 0000000..5e4acab --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58074081fb9deabdb9ead053e6df94ef870bdf4bb6db0997c08153afb6a3ff6b +size 4305484 diff --git a/public/models/tuyauxpuzzle/tuyaux_Opacity.png b/public/models/tuyauxpuzzle/tuyaux_Opacity.png new file mode 100644 index 0000000..7ab185e --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Opacity.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a5e26dad9b31f83b5173d195fa0b6f2c5054cf48997a4fc24b3ce8ad544df3 +size 12819 diff --git a/public/models/tuyauxpuzzle/tuyaux_Roughness.png b/public/models/tuyauxpuzzle/tuyaux_Roughness.png new file mode 100644 index 0000000..f472a11 --- /dev/null +++ b/public/models/tuyauxpuzzle/tuyaux_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca98919bf9126d5d2f75300ffc00e79bbb056dd9cf4d0f7a1e56beb637eebfa9 +size 804194 diff --git a/public/models/vase/color.jpg b/public/models/vase/color.jpg new file mode 100644 index 0000000..81fb206 --- /dev/null +++ b/public/models/vase/color.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4fd92be50da67c1cc97d3595b14ef582081dde7a47cfed214320482552c67d +size 26490 diff --git a/public/models/vase/displace.jpg b/public/models/vase/displace.jpg new file mode 100644 index 0000000..145dfc5 --- /dev/null +++ b/public/models/vase/displace.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dcbadea8c8bdf8a7a33a57e75ac19b2292a99ff74cdb7b580486fa14959ffaf +size 13580 diff --git a/public/models/vase/metalness.jpg b/public/models/vase/metalness.jpg new file mode 100644 index 0000000..618020d --- /dev/null +++ b/public/models/vase/metalness.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1341728b7dca0a60fa5ce03b75bf959db6cbfcf1e4288e8c7492cec0ad0865ad +size 13582 diff --git a/public/models/vase/model.gltf b/public/models/vase/model.gltf new file mode 100644 index 0000000..2bc2d9c --- /dev/null +++ b/public/models/vase/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c87ca650d447571f055160efda501895f2279770a782f4a86c7416b8a128ac +size 834468 diff --git a/public/models/vase/normal.jpg b/public/models/vase/normal.jpg new file mode 100644 index 0000000..46f926c --- /dev/null +++ b/public/models/vase/normal.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf5cf6ad9c3f3d2d81a33ea3cc8c3217c858ed069ed0c239020309e9b0aac85 +size 47208 diff --git a/public/models/vase/roughness.jpg b/public/models/vase/roughness.jpg new file mode 100644 index 0000000..39e5769 --- /dev/null +++ b/public/models/vase/roughness.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f970b2d1b674704967d6186aee79f2ef7fc54ae2554f6819d56436121cbbc9a +size 23592 diff --git a/public/old-models/arbre/model.gltf b/public/old-models/arbre/model.gltf index 64c992e..979ab7d 100644 --- a/public/old-models/arbre/model.gltf +++ b/public/old-models/arbre/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b6bcc5bf5ade2fbfa909e63f59d7f9e3f491cedf81d34f068d12ae49dffc33b -size 2293054 +oid sha256:dcaafb1f5cb8cde2f144fde14e13021c3d59cd93a807238fab2c661cb8650679 +size 10808285 diff --git a/public/old-models/ebike/color.png b/public/old-models/ebike/color.png new file mode 100644 index 0000000..45d6540 --- /dev/null +++ b/public/old-models/ebike/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f427aa9def171588521008b42339f804d9d7e1c9865b92ac35834ac2205d441 +size 409273 diff --git a/public/old-models/ebike/model.bin b/public/old-models/ebike/model.bin new file mode 100644 index 0000000..4829829 --- /dev/null +++ b/public/old-models/ebike/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f476c9e9d1fa2437f83edf54d7702889b556520257fc0b5c3bec99aefdd5541 +size 3086528 diff --git a/public/old-models/ebike/model.gltf b/public/old-models/ebike/model.gltf index 90c018b..178b740 100644 --- a/public/old-models/ebike/model.gltf +++ b/public/old-models/ebike/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c63499eef242474ceecaefcd8e242af239d63d77ef6dc854fea19ab802c6e40c -size 311438 +oid sha256:73e93ccfb92f831905c5573f5b55f92592bf3dfffde876a678ac414416b20aa0 +size 2592 diff --git a/public/old-models/ebike/normal.png b/public/old-models/ebike/normal.png new file mode 100644 index 0000000..a091c9e --- /dev/null +++ b/public/old-models/ebike/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1dda1b74dd9e72a248f8ff1c9e9442801a7399f913a2e239b2edce44422916e +size 695202 diff --git a/public/old-models/ecole/color.png b/public/old-models/ecole/color.png new file mode 100644 index 0000000..e429381 --- /dev/null +++ b/public/old-models/ecole/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b780ab89e3b5c3abbff2e391b3b9f73ce89beb6f95277c039ab96f3e4a55ff06 +size 1092715 diff --git a/public/old-models/ecole/model.bin b/public/old-models/ecole/model.bin new file mode 100644 index 0000000..cd94e10 --- /dev/null +++ b/public/old-models/ecole/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b87d09fedf8e84a66f1f81954305898639e52f98a4e76b1df5d6cc56685eaaa +size 276500 diff --git a/public/old-models/ecole/model.gltf b/public/old-models/ecole/model.gltf index 6056361..c4303b3 100644 --- a/public/old-models/ecole/model.gltf +++ b/public/old-models/ecole/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d724bb99c0f36d0984018f4eb9f9304d02b1328a002caf3c175390d3972888b -size 22590156 +oid sha256:4bad63ebcfc99e298c275aff15230b889f43157610756becfa61ee6dd1157f93 +size 110421 diff --git a/public/old-models/ecole/normal.png b/public/old-models/ecole/normal.png new file mode 100644 index 0000000..79dd979 --- /dev/null +++ b/public/old-models/ecole/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319fd68e7daaabf75a02d4e8616a8511cd9549c983c83919dc6405060b1b29d3 +size 66300 diff --git a/public/old-models/eolienne/color.png b/public/old-models/eolienne/color.png new file mode 100644 index 0000000..cb33e5f --- /dev/null +++ b/public/old-models/eolienne/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e466dba10954acee9cec17a166d57e78258e66e04efb0b3222862f601a10cf1 +size 2607407 diff --git a/public/old-models/eolienne/model.bin b/public/old-models/eolienne/model.bin new file mode 100644 index 0000000..5ec2e43 --- /dev/null +++ b/public/old-models/eolienne/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a12564816f3ca596cf4cef843ed36021becc31e6773592f920c7991fdccdf3 +size 1097460 diff --git a/public/old-models/eolienne/model.gltf b/public/old-models/eolienne/model.gltf index 87bda2b..ff969f6 100644 --- a/public/old-models/eolienne/model.gltf +++ b/public/old-models/eolienne/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa68d5c4ff193351bd21b2d42a6b6d0d0983d66019c3344082a5210a00c036a1 -size 7667190 +oid sha256:8d013d4edfbedbe8f02550b383a0d9e356c0726b24d27b25ff7f2368b7975bdf +size 3018 diff --git a/public/old-models/eolienne/normal.png b/public/old-models/eolienne/normal.png new file mode 100644 index 0000000..97bc53d --- /dev/null +++ b/public/old-models/eolienne/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f10553cbf6a63ebb4f5a86e497caf16b7dcc84d0e86171392654d54f842363 +size 2336493 diff --git a/public/old-models/gant_l/model.gltf b/public/old-models/gant_l/model.gltf index da03db6..06919b0 100644 --- a/public/old-models/gant_l/model.gltf +++ b/public/old-models/gant_l/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01cdac724dfe936d112bd19202694a16196f54b6726b9e7e4e5102235fd41980 +oid sha256:cb31d7f73070f30f152c974afe0557bbd4c8b1468a5247c71eaf82afd6cc67bb size 10303 diff --git a/public/old-models/gant_l_pad/model.gltf b/public/old-models/gant_l_pad/model.gltf index 846cf49..4290eeb 100644 --- a/public/old-models/gant_l_pad/model.gltf +++ b/public/old-models/gant_l_pad/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fee94fb22e76ebc51ebc30fdd9415eb7db02f4298355965d99889b4329301393 +oid sha256:4b8c8dcc940d9ac53733b9cc747ec366ff8fe9da4b546e7e8d74348f4cb08044 size 6192 diff --git a/public/old-models/gant_r_pad/model.gltf b/public/old-models/gant_r_pad/model.gltf index ade1881..0ce8568 100644 --- a/public/old-models/gant_r_pad/model.gltf +++ b/public/old-models/gant_r_pad/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4e97e95e1f38f6d76cc49e28e9a10d4d5d0e703511018e5933548faca3cd67b +oid sha256:623937d431f5eddf460a75cabdf5696253f2beda12fa68492812727e9beec1d1 size 6900 diff --git a/public/old-models/immeuble1/color.png b/public/old-models/immeuble1/color.png new file mode 100644 index 0000000..b9561f6 --- /dev/null +++ b/public/old-models/immeuble1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627af289dfdb9d7b3a3b8a6f2b9a6ee1293c8349d3bd52e8111f33d64b86f235 +size 2648457 diff --git a/public/old-models/immeuble1/model.bin b/public/old-models/immeuble1/model.bin new file mode 100644 index 0000000..4a6408a --- /dev/null +++ b/public/old-models/immeuble1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69ade934b8890790e8ee89ee9cc75a98ba169b46864fdf6e48d5f446e0e68df +size 453600 diff --git a/public/old-models/immeuble1/model.gltf b/public/old-models/immeuble1/model.gltf index 61bdca2..3d5a75a 100644 --- a/public/old-models/immeuble1/model.gltf +++ b/public/old-models/immeuble1/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12038659fd8f1f307b3944dd85bb49b7dbae7d4d743ac2691cf8799ce28d2289 -size 21200262 +oid sha256:c82cd0bd2065ada46519b770c04c384a7e1a4cedec63fa4a7187b27efbe64b62 +size 28234 diff --git a/public/old-models/immeuble1/normal.png b/public/old-models/immeuble1/normal.png new file mode 100644 index 0000000..bb87a3f --- /dev/null +++ b/public/old-models/immeuble1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9554f7bcdb15868ce51f69289f426354716f8c3825e870208a961aea9614f47 +size 1758943 diff --git a/public/old-models/lafabrik/model.gltf b/public/old-models/lafabrik/model.gltf index cb63296..c770f32 100644 --- a/public/old-models/lafabrik/model.gltf +++ b/public/old-models/lafabrik/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:615bf4ed9c84530bdec465a6bf97262f6e1fc55dd5846bd8c3e698b82309fc68 -size 124737 +oid sha256:73403729b6bf251e5a48f93c5496291ba06cb7bb8bb35e7094ac9e91b39742d0 +size 124729 diff --git a/public/old-models/maison1/color.png b/public/old-models/maison1/color.png new file mode 100644 index 0000000..5d543d7 --- /dev/null +++ b/public/old-models/maison1/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24c1299cd8f203ca1d8935c2e559de03bd96bcec0d31231ac0c2e90a6f74f74 +size 2679549 diff --git a/public/old-models/maison1/model.bin b/public/old-models/maison1/model.bin new file mode 100644 index 0000000..17302c6 --- /dev/null +++ b/public/old-models/maison1/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a8b8ece4c72688d69efca91ed09d93854bab7a1b3c3e6b0b96ed25d984ce5 +size 307680 diff --git a/public/old-models/maison1/model.gltf b/public/old-models/maison1/model.gltf index 4f61689..b4d4276 100644 --- a/public/old-models/maison1/model.gltf +++ b/public/old-models/maison1/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e21381ca52401e439a97d898358cf8d0ea62c3b6aaf45efd625c4572de89319e -size 26605137 +oid sha256:4cfe2485b5625b4a401b451fd10173faa3c59a309463a6b3e584aa91e331d81f +size 8583 diff --git a/public/old-models/maison1/normal.png b/public/old-models/maison1/normal.png new file mode 100644 index 0000000..05b82fa --- /dev/null +++ b/public/old-models/maison1/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6945018029e37532831c07dbfd9ea0a6b853a0f69e491ae7295fd29a3f0e626a +size 1928811 diff --git a/public/old-models/packderelance/color_inf.png b/public/old-models/packderelance/color_inf.png new file mode 100644 index 0000000..41c0934 --- /dev/null +++ b/public/old-models/packderelance/color_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e81f534bd7df089e41fdc1eacd26c1d55a90ac3ebd37a4a1d037f2b57e3ec5e +size 105848 diff --git a/public/old-models/packderelance/color_marteau.png b/public/old-models/packderelance/color_marteau.png new file mode 100644 index 0000000..7febaf0 --- /dev/null +++ b/public/old-models/packderelance/color_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68fe52af226c749870035d2af17d8feffff4d094f46ca5c3697697d4e62da4b1 +size 288851 diff --git a/public/old-models/packderelance/color_puce.png b/public/old-models/packderelance/color_puce.png new file mode 100644 index 0000000..41ab8c3 --- /dev/null +++ b/public/old-models/packderelance/color_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fce52ddb453c1f3e862157ada0f4e40cd37d910329b8e6acff5ddee518142f +size 306578 diff --git a/public/old-models/packderelance/color_sup.png b/public/old-models/packderelance/color_sup.png new file mode 100644 index 0000000..544cbb3 --- /dev/null +++ b/public/old-models/packderelance/color_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e462b830e0f4c0bdbadb395998b3832f9e156f5b2e8f6fdb083319a2b600f5e8 +size 94312 diff --git a/public/old-models/packderelance/model.bin b/public/old-models/packderelance/model.bin new file mode 100644 index 0000000..9191216 --- /dev/null +++ b/public/old-models/packderelance/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8fbbb8367c3d9f0c8940608a82889423c2e2d540a76618f58c5a8c53d8928b +size 430168 diff --git a/public/old-models/packderelance/model.gltf b/public/old-models/packderelance/model.gltf index ebf8a47..3a78e47 100644 --- a/public/old-models/packderelance/model.gltf +++ b/public/old-models/packderelance/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb94679c14d1b0019b98fa04bbb66d9bc77b31b944201734e25c4a2d6104772d -size 4435656 +oid sha256:2f2d470947b2b3d1a029a44a9074ac46826374b81f8bd8d23648318cfbf836fa +size 14379 diff --git a/public/old-models/packderelance/normal_inf.png b/public/old-models/packderelance/normal_inf.png new file mode 100644 index 0000000..dd88258 --- /dev/null +++ b/public/old-models/packderelance/normal_inf.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0f107d2e8c234fbc40001f22a76e7cec9623a22f429443fd3ca9cd7bbedd3b +size 440264 diff --git a/public/old-models/packderelance/normal_marteau.png b/public/old-models/packderelance/normal_marteau.png new file mode 100644 index 0000000..9a1f36d --- /dev/null +++ b/public/old-models/packderelance/normal_marteau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de7b32540117a34c3110ff6062b670aa102ec867650494973e1469cdd36b50 +size 772076 diff --git a/public/old-models/packderelance/normal_puce.png b/public/old-models/packderelance/normal_puce.png new file mode 100644 index 0000000..053a9f0 --- /dev/null +++ b/public/old-models/packderelance/normal_puce.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46725cc9926cb4137f0e9b3c6dcc2b670950b0c025dd1963a4ba69c4278d9ea2 +size 386293 diff --git a/public/old-models/packderelance/normal_sup.png b/public/old-models/packderelance/normal_sup.png new file mode 100644 index 0000000..cdc527f --- /dev/null +++ b/public/old-models/packderelance/normal_sup.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4717509a305d646459d9234ab4552063db6157fe2154865283a61973b5fc2725 +size 759655 diff --git a/public/old-models/panneauaffichage/color.png b/public/old-models/panneauaffichage/color.png new file mode 100644 index 0000000..db7b57f --- /dev/null +++ b/public/old-models/panneauaffichage/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75905462afd54f3e0fa5bb7fe7504e4f0270c13754c807d6477adde17737029b +size 856170 diff --git a/public/old-models/panneauaffichage/model.bin b/public/old-models/panneauaffichage/model.bin new file mode 100644 index 0000000..e107da2 --- /dev/null +++ b/public/old-models/panneauaffichage/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541c1cdf481eacc06d74cac537cd74ec19b2c03a880b376eeec35c7730dca58d +size 12312 diff --git a/public/old-models/panneauaffichage/model.gltf b/public/old-models/panneauaffichage/model.gltf index 326fbdb..20e12fc 100644 --- a/public/old-models/panneauaffichage/model.gltf +++ b/public/old-models/panneauaffichage/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d079f296573ec18da7e131983ed17749473da0f74430e8c44bf45815b72cb6f -size 5449258 +oid sha256:673def1cca26bc8e7f65f64286bd63acdc14b9d14f77372413f7c86906869f6c +size 2241 diff --git a/public/old-models/panneauaffichage/normal.png b/public/old-models/panneauaffichage/normal.png new file mode 100644 index 0000000..512068f --- /dev/null +++ b/public/old-models/panneauaffichage/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83c9f3e923f9fa8e30419925a05928342922fc4a7972beff1ff727fc620a343 +size 527226 diff --git a/public/old-models/pylone/color.png b/public/old-models/pylone/color.png new file mode 100644 index 0000000..5ab79e7 --- /dev/null +++ b/public/old-models/pylone/color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5062c165b6c3a5375739463531da7667f50f59f5c5c3aeb583e95a6b2ea13f3 +size 1586893 diff --git a/public/old-models/pylone/model.bin b/public/old-models/pylone/model.bin new file mode 100644 index 0000000..fd07cb2 --- /dev/null +++ b/public/old-models/pylone/model.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56e6ab512a5532fbff1b2b2a2a8d9b9d6ad1fd47c979f1c4d78f8435cf26098 +size 50620 diff --git a/public/old-models/pylone/model.gltf b/public/old-models/pylone/model.gltf index 05d147d..7ed6228 100644 --- a/public/old-models/pylone/model.gltf +++ b/public/old-models/pylone/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4beb235d9ce60f1a59a8e73b9e1bcdb44f45c6a2017fc6e912a29cee5f249ec -size 3588015 +oid sha256:187bb31dbfbb25fb08ed41463ec81be9e6ff0cba6bc0e06aa0e622ebe16486e2 +size 8555 diff --git a/public/old-models/pylone/normal.png b/public/old-models/pylone/normal.png new file mode 100644 index 0000000..62967ba --- /dev/null +++ b/public/old-models/pylone/normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6905f86f3162c8b15713c12c86ef91aa67f97d13354367f7f4c4f4ee4b5b8f96 +size 1650186 diff --git a/public/old-models/sapin/model.gltf b/public/old-models/sapin/model.gltf index df975c6..65c04f4 100644 --- a/public/old-models/sapin/model.gltf +++ b/public/old-models/sapin/model.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:898e7cea4edeb0a5f3d46312fe6b63ec5f5db8d5642e2202ad86decf3817e40f +oid sha256:e3f66d375ba33367cc0349b3c54dce6009b9cbe3bfb941d4c05a3e224451740a size 5811 diff --git a/public/old-models/skybox/model.gltf b/public/old-models/skybox/model.gltf new file mode 100644 index 0000000..5c70176 --- /dev/null +++ b/public/old-models/skybox/model.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ca062a158673a16b3707307a23b3db118f86da4ae1d3338bc95d41f8303b1d +size 3224 diff --git a/public/old-models/skybox/skybox.glb b/public/old-models/skybox/skybox.glb index 8867025..fa22515 100644 --- a/public/old-models/skybox/skybox.glb +++ b/public/old-models/skybox/skybox.glb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a037a88de3b663275d4c0d320d20a7bb87989c318a50ae723860dc40ccc36b6e -size 3677008 +oid sha256:817538fdb6beb8288f28ef4617cd5be2954107aa122a3ea9e10970197aec9cbf +size 3111268 diff --git a/public/old-models/skybox/skybox_baseColor.png b/public/old-models/skybox/skybox_baseColor.png index 15d44ea..eb2acb5 100644 --- a/public/old-models/skybox/skybox_baseColor.png +++ b/public/old-models/skybox/skybox_baseColor.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:750b896dec5c0647b24c81432857bc71a59ae3ab4742152deb6ee4503d49c718 -size 870681 +oid sha256:5df49422f6fe375c5f949e5aa3196054e2a2df83335e57404baf8ff7f4094b2d +size 762550 diff --git a/public/old-models/skybox/skybox_normal.png b/public/old-models/skybox/skybox_normal.png index a1b780a..b8ea172 100644 --- a/public/old-models/skybox/skybox_normal.png +++ b/public/old-models/skybox/skybox_normal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54c45585753650ae00d67c8b0ccb9f331baa7f2ea9bdfb98bd813f81c4f2d056 -size 2278314 +oid sha256:519ef3f12383063f1db6787d17779c07dcf747d4cf4d33ca68ed0b21a6bcda32 +size 2299605 diff --git a/public/old-models/skybox/skybox_occlusionRoughnessMetallic.png b/public/old-models/skybox/skybox_occlusionRoughnessMetallic.png index 3bb6613..bb44d8b 100644 --- a/public/old-models/skybox/skybox_occlusionRoughnessMetallic.png +++ b/public/old-models/skybox/skybox_occlusionRoughnessMetallic.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bac8698c20f1e11f7abe0a789cf7bfebafac125ee74bf7a89cb941f85538195d -size 516361 +oid sha256:e0812c7865495abfbed0c8f736fe4a4d831768e084d512bcc379407ece1ee0cc +size 37463 diff --git a/public/roadNetwork.json b/public/roadNetwork.json new file mode 100644 index 0000000..5e5bc80 --- /dev/null +++ b/public/roadNetwork.json @@ -0,0 +1,1136 @@ +[ + { + "id": 1, + "x": -4.61, + "y": 7.13, + "z": -2.77, + "connections": [2, 7] + }, + { + "id": 2, + "x": -5.61, + "y": 7.08, + "z": -7.84, + "connections": [1, 3] + }, + { + "id": 3, + "x": -2.36, + "y": 6.96, + "z": -13.75, + "connections": [2, 4] + }, + { + "id": 4, + "x": -3.35, + "y": 6.48, + "z": -22.71, + "connections": [3, 5, 69, 157] + }, + { + "id": 5, + "x": -11.24, + "y": 6.45, + "z": -20.45, + "connections": [4, 6] + }, + { + "id": 6, + "x": -19.8, + "y": 6.46, + "z": -12.16, + "connections": [5, 7, 8, 53] + }, + { + "id": 7, + "x": -10.38, + "y": 6.99, + "z": -7.51, + "connections": [6, 1] + }, + { + "id": 8, + "x": -29.38, + "y": 5.69, + "z": -14.1, + "connections": [6, 9, 15] + }, + { + "id": 9, + "x": -34.88, + "y": 5.18, + "z": -14.73, + "connections": [8, 10, 11] + }, + { + "id": 10, + "x": -43.64, + "y": 4.25, + "z": -16.72, + "connections": [9] + }, + { + "id": 11, + "x": -34.62, + "y": 4.86, + "z": -21.94, + "connections": [9, 12] + }, + { + "id": 12, + "x": -39.38, + "y": 3.98, + "z": -29.69, + "connections": [11, 13] + }, + { + "id": 13, + "x": -46.05, + "y": 3.15, + "z": -34.04, + "connections": [12, 14] + }, + { + "id": 14, + "x": -55.16, + "y": 2.32, + "z": -36.22, + "connections": [13] + }, + { + "id": 15, + "x": -35.85, + "y": 5.37, + "z": -3.43, + "connections": [8, 16, 18] + }, + { + "id": 16, + "x": -37.61, + "y": 5.17, + "z": 5.14, + "connections": [15, 17] + }, + { + "id": 17, + "x": -44.96, + "y": 4.35, + "z": 8.67, + "connections": [16] + }, + { + "id": 18, + "x": -43.46, + "y": 4.57, + "z": -4.93, + "connections": [15, 19] + }, + { + "id": 19, + "x": -52.58, + "y": 3.6, + "z": -5.75, + "connections": [18, 20, 23] + }, + { + "id": 20, + "x": -58.7, + "y": 3.01, + "z": -0.58, + "connections": [19, 21] + }, + { + "id": 21, + "x": -64.82, + "y": 2.4, + "z": 5, + "connections": [20, 22] + }, + { + "id": 22, + "x": -70.26, + "y": 1.95, + "z": 4.73, + "connections": [21] + }, + { + "id": 23, + "x": -60.47, + "y": 2.73, + "z": -11.6, + "connections": [19, 24, 25] + }, + { + "id": 24, + "x": -64.69, + "y": 2.24, + "z": -16.49, + "connections": [23] + }, + { + "id": 25, + "x": -66.78, + "y": 2.17, + "z": -10.64, + "connections": [23, 26] + }, + { + "id": 26, + "x": -76.23, + "y": 1.39, + "z": -15.3, + "connections": [25, 27, 29, 40] + }, + { + "id": 27, + "x": -82.06, + "y": 0.97, + "z": -20.09, + "connections": [26, 28] + }, + { + "id": 28, + "x": -89.41, + "y": 0.54, + "z": -26.27, + "connections": [27] + }, + { + "id": 29, + "x": -82.06, + "y": 1.08, + "z": -11.22, + "connections": [26, 30, 32] + }, + { + "id": 30, + "x": -88.59, + "y": 0.74, + "z": -2.59, + "connections": [29, 31] + }, + { + "id": 31, + "x": -95.82, + "y": 0.45, + "z": 1.02, + "connections": [30] + }, + { + "id": 32, + "x": -90.92, + "y": 0.58, + "z": -14.14, + "connections": [29, 33] + }, + { + "id": 33, + "x": -97.45, + "y": 0.31, + "z": -17.87, + "connections": [32, 34, 36] + }, + { + "id": 34, + "x": -102.82, + "y": 0.14, + "z": -24.4, + "connections": [33, 35] + }, + { + "id": 35, + "x": -108.07, + "y": 0, + "z": -31.52, + "connections": [34] + }, + { + "id": 36, + "x": -102.94, + "y": 0.15, + "z": -14.96, + "connections": [33, 37] + }, + { + "id": 37, + "x": -107.37, + "y": 0.11, + "z": -9.01, + "connections": [36, 38] + }, + { + "id": 38, + "x": -110.75, + "y": 0.08, + "z": -2.59, + "connections": [37, 39] + }, + { + "id": 39, + "x": -116.58, + "y": 0, + "z": -0.38, + "connections": [38] + }, + { + "id": 40, + "x": -76.23, + "y": 1.27, + "z": -22.89, + "connections": [26, 41] + }, + { + "id": 41, + "x": -76.81, + "y": 1.09, + "z": -29.53, + "connections": [40, 42, 47] + }, + { + "id": 42, + "x": -73.43, + "y": 1.08, + "z": -37.23, + "connections": [41, 43] + }, + { + "id": 43, + "x": -71.91, + "y": 1.02, + "z": -42.83, + "connections": [42, 44] + }, + { + "id": 44, + "x": -72.61, + "y": 0.77, + "z": -49.48, + "connections": [43, 45] + }, + { + "id": 45, + "x": -77.51, + "y": 0.43, + "z": -56.36, + "connections": [44] + }, + { + "id": 46, + "x": -64.5, + "y": 2.03, + "z": -25.33, + "connections": [] + }, + { + "id": 47, + "x": -82.6, + "y": 0.64, + "z": -38.22, + "connections": [41, 48] + }, + { + "id": 48, + "x": -87.73, + "y": 0.32, + "z": -45.38, + "connections": [47, 49] + }, + { + "id": 49, + "x": -88.14, + "y": 0.17, + "z": -54.34, + "connections": [48, 50] + }, + { + "id": 50, + "x": -89.12, + "y": 0.09, + "z": -59.31, + "connections": [49, 51] + }, + { + "id": 51, + "x": -92.7, + "y": 0.01, + "z": -63.96, + "connections": [50] + }, + { + "id": 52, + "x": -70.7, + "y": 1.34, + "z": -34.23, + "connections": [] + }, + { + "id": 53, + "x": -23.13, + "y": 6.44, + "z": -4.02, + "connections": [6, 54] + }, + { + "id": 54, + "x": -23.62, + "y": 6.39, + "z": 5.67, + "connections": [53, 55] + }, + { + "id": 55, + "x": -18.16, + "y": 6.37, + "z": 16.59, + "connections": [54, 56, 59, 156] + }, + { + "id": 56, + "x": -14.25, + "y": 6.77, + "z": 11.21, + "connections": [55, 57] + }, + { + "id": 57, + "x": -13.93, + "y": 6.9, + "z": 6.81, + "connections": [56, 58] + }, + { + "id": 58, + "x": -11, + "y": 7.03, + "z": 3.23, + "connections": [57] + }, + { + "id": 59, + "x": -10.67, + "y": 6.41, + "z": 21.39, + "connections": [55, 60] + }, + { + "id": 60, + "x": -1.71, + "y": 6.38, + "z": 24.33, + "connections": [59, 61] + }, + { + "id": 61, + "x": 8.8, + "y": 6.36, + "z": 23.1, + "connections": [60, 62] + }, + { + "id": 62, + "x": 14.42, + "y": 6.42, + "z": 18.95, + "connections": [61, 63, 64, 108] + }, + { + "id": 63, + "x": 2.44, + "y": 7.13, + "z": 3.31, + "connections": [62] + }, + { + "id": 64, + "x": 20.12, + "y": 6.43, + "z": 12.52, + "connections": [62, 65] + }, + { + "id": 65, + "x": 22.48, + "y": 6.49, + "z": 3.88, + "connections": [64, 66] + }, + { + "id": 66, + "x": 21.34, + "y": 6.52, + "z": -6.79, + "connections": [65, 67] + }, + { + "id": 67, + "x": 18.25, + "y": 6.5, + "z": -13.47, + "connections": [66, 68] + }, + { + "id": 68, + "x": 15.23, + "y": 6.54, + "z": -15.99, + "connections": [67, 69, 70, 71] + }, + { + "id": 69, + "x": 5.78, + "y": 6.52, + "z": -21.53, + "connections": [68, 4] + }, + { + "id": 70, + "x": 11.08, + "y": 6.96, + "z": -8.17, + "connections": [68] + }, + { + "id": 71, + "x": 19.39, + "y": 6.07, + "z": -20.63, + "connections": [68, 72, 91] + }, + { + "id": 72, + "x": 21.18, + "y": 5.69, + "z": -24.87, + "connections": [71, 73, 74] + }, + { + "id": 73, + "x": 22.57, + "y": 4.58, + "z": -37.32, + "connections": [72] + }, + { + "id": 74, + "x": 28.76, + "y": 4.96, + "z": -27.8, + "connections": [72, 75, 76] + }, + { + "id": 75, + "x": 36.01, + "y": 4.45, + "z": -26.82, + "connections": [74] + }, + { + "id": 76, + "x": 39.1, + "y": 3.59, + "z": -35.78, + "connections": [74, 77, 78] + }, + { + "id": 77, + "x": 51.07, + "y": 2.37, + "z": -40.58, + "connections": [76] + }, + { + "id": 78, + "x": 39.26, + "y": 2.89, + "z": -45.14, + "connections": [76, 79, 81] + }, + { + "id": 79, + "x": 37.55, + "y": 2.11, + "z": -57.04, + "connections": [78] + }, + { + "id": 80, + "x": 44.58, + "y": 2.21, + "z": -50.17, + "connections": [] + }, + { + "id": 81, + "x": 47.25, + "y": 1.81, + "z": -54.26, + "connections": [78, 82] + }, + { + "id": 82, + "x": 60.2, + "y": 0.9, + "z": -60.53, + "connections": [81, 83, 84] + }, + { + "id": 83, + "x": 75.6, + "y": 0.3, + "z": -63.79, + "connections": [82] + }, + { + "id": 84, + "x": 71.69, + "y": 0.73, + "z": -52.06, + "connections": [82, 85, 86] + }, + { + "id": 85, + "x": 84.72, + "y": 0.41, + "z": -45.14, + "connections": [84] + }, + { + "id": 86, + "x": 72.83, + "y": 0.94, + "z": -43.18, + "connections": [84, 87] + }, + { + "id": 87, + "x": 82.52, + "y": 0.79, + "z": -29.01, + "connections": [86, 88] + }, + { + "id": 88, + "x": 92.95, + "y": 0.47, + "z": -18.1, + "connections": [87, 89] + }, + { + "id": 89, + "x": 100.77, + "y": 0.21, + "z": -16.55, + "connections": [88] + }, + { + "id": 90, + "x": 80.1, + "y": 0.92, + "z": -28.51, + "connections": [] + }, + { + "id": 91, + "x": 31.21, + "y": 5.49, + "z": -15.42, + "connections": [71, 92, 102, 103] + }, + { + "id": 92, + "x": 48.06, + "y": 3.69, + "z": -19.81, + "connections": [91, 93, 95] + }, + { + "id": 93, + "x": 59.71, + "y": 2.45, + "z": -24.13, + "connections": [92] + }, + { + "id": 94, + "x": 56.18, + "y": 3.03, + "z": -15.85, + "connections": [] + }, + { + "id": 95, + "x": 60.85, + "y": 2.78, + "z": -3.28, + "connections": [92, 96, 97] + }, + { + "id": 96, + "x": 68.43, + "y": 2.1, + "z": -2.47, + "connections": [95] + }, + { + "id": 97, + "x": 68.51, + "y": 2.04, + "z": 9.18, + "connections": [95, 98, 99] + }, + { + "id": 98, + "x": 67.86, + "y": 1.98, + "z": 16.59, + "connections": [97] + }, + { + "id": 99, + "x": 91.56, + "y": 0.56, + "z": 13.82, + "connections": [97, 100] + }, + { + "id": 100, + "x": 97.1, + "y": 0.31, + "z": 18.46, + "connections": [99] + }, + { + "id": 101, + "x": 64.61, + "y": 2.41, + "z": 6.58, + "connections": [] + }, + { + "id": 102, + "x": 43.42, + "y": 4.52, + "z": -8.25, + "connections": [91] + }, + { + "id": 103, + "x": 32.83, + "y": 5.63, + "z": -5.24, + "connections": [91, 104] + }, + { + "id": 104, + "x": 32.75, + "y": 5.62, + "z": 6.74, + "connections": [103, 105] + }, + { + "id": 105, + "x": 32.51, + "y": 5.42, + "z": 14.31, + "connections": [104, 106] + }, + { + "id": 106, + "x": 39.02, + "y": 4.65, + "z": 17.98, + "connections": [105, 107] + }, + { + "id": 107, + "x": 44.48, + "y": 4.26, + "z": 14.31, + "connections": [106] + }, + { + "id": 108, + "x": 19.31, + "y": 5.65, + "z": 26.84, + "connections": [62, 109, 131] + }, + { + "id": 109, + "x": 22.49, + "y": 5.23, + "z": 29.86, + "connections": [108, 110, 127] + }, + { + "id": 110, + "x": 32.91, + "y": 3.51, + "z": 42.4, + "connections": [109, 111, 122] + }, + { + "id": 111, + "x": 39.1, + "y": 2.75, + "z": 47.21, + "connections": [110, 112] + }, + { + "id": 112, + "x": 55.64, + "y": 1.54, + "z": 51.12, + "connections": [111, 113, 115, 117] + }, + { + "id": 113, + "x": 61.66, + "y": 1.26, + "z": 49.98, + "connections": [112, 114] + }, + { + "id": 114, + "x": 70.14, + "y": 0.98, + "z": 46.23, + "connections": [113] + }, + { + "id": 115, + "x": 56.45, + "y": 1.31, + "z": 54.86, + "connections": [112] + }, + { + "id": 116, + "x": 54.87, + "y": 1.31, + "z": 56.41, + "connections": [] + }, + { + "id": 117, + "x": 61.42, + "y": 0.86, + "z": 60.39, + "connections": [112, 118] + }, + { + "id": 118, + "x": 60.85, + "y": 0.54, + "z": 70.01, + "connections": [117, 119] + }, + { + "id": 119, + "x": 56.7, + "y": 0.37, + "z": 78.56, + "connections": [118, 120] + }, + { + "id": 120, + "x": 57.11, + "y": 0.24, + "z": 83.2, + "connections": [119] + }, + { + "id": 121, + "x": 43.87, + "y": 1.27, + "z": 66.11, + "connections": [] + }, + { + "id": 122, + "x": 31.12, + "y": 2.64, + "z": 54.13, + "connections": [110, 123, 124] + }, + { + "id": 123, + "x": 25.5, + "y": 2.37, + "z": 60.15, + "connections": [122] + }, + { + "id": 124, + "x": 32.1, + "y": 1.84, + "z": 64.06, + "connections": [122, 125] + }, + { + "id": 125, + "x": 26.07, + "y": 1.22, + "z": 75.79, + "connections": [124, 126] + }, + { + "id": 126, + "x": 26.07, + "y": 1, + "z": 79.54, + "connections": [125] + }, + { + "id": 127, + "x": 31.39, + "y": 4.75, + "z": 27.95, + "connections": [109, 128] + }, + { + "id": 128, + "x": 41.12, + "y": 4.07, + "z": 25.58, + "connections": [127, 129] + }, + { + "id": 129, + "x": 46.63, + "y": 3.54, + "z": 26.12, + "connections": [128, 130] + }, + { + "id": 130, + "x": 53.28, + "y": 2.65, + "z": 32.44, + "connections": [129] + }, + { + "id": 131, + "x": 19.13, + "y": 4.92, + "z": 35.57, + "connections": [108, 132] + }, + { + "id": 132, + "x": 16.75, + "y": 4.05, + "z": 45.62, + "connections": [131, 133] + }, + { + "id": 133, + "x": 11.18, + "y": 3.33, + "z": 54.32, + "connections": [132, 134, 143] + }, + { + "id": 134, + "x": 7.83, + "y": 2.97, + "z": 58.54, + "connections": [133, 135, 139] + }, + { + "id": 135, + "x": 2.7, + "y": 2.73, + "z": 61.4, + "connections": [134, 136] + }, + { + "id": 136, + "x": -2.22, + "y": 2.81, + "z": 60.59, + "connections": [135, 137] + }, + { + "id": 137, + "x": -2.98, + "y": 3.58, + "z": 52.97, + "connections": [136] + }, + { + "id": 139, + "x": 4.05, + "y": 1.58, + "z": 74.79, + "connections": [134, 140] + }, + { + "id": 140, + "x": -0.33, + "y": 1.21, + "z": 80.47, + "connections": [139, 141] + }, + { + "id": 141, + "x": -3.24, + "y": 1.24, + "z": 79.76, + "connections": [140, 142] + }, + { + "id": 142, + "x": -3.41, + "y": 1.73, + "z": 73.01, + "connections": [141] + }, + { + "id": 143, + "x": 11.78, + "y": 0.74, + "z": 87.87, + "connections": [133, 145, 149] + }, + { + "id": 144, + "x": 15.36, + "y": 0.75, + "z": 87.1, + "connections": [] + }, + { + "id": 145, + "x": 7.89, + "y": 0.44, + "z": 94.98, + "connections": [143, 146] + }, + { + "id": 146, + "x": 4.48, + "y": 0.31, + "z": 98.94, + "connections": [145, 147] + }, + { + "id": 147, + "x": -2.22, + "y": 0.27, + "z": 100.07, + "connections": [146, 148] + }, + { + "id": 148, + "x": -3.03, + "y": 0.47, + "z": 94.56, + "connections": [147] + }, + { + "id": 149, + "x": 11.78, + "y": 0.29, + "z": 98.56, + "connections": [143, 150] + }, + { + "id": 150, + "x": 9.61, + "y": 0.05, + "z": 108.88, + "connections": [149, 151] + }, + { + "id": 151, + "x": 5.08, + "y": 0, + "z": 117.04, + "connections": [150, 152] + }, + { + "id": 152, + "x": -0.49, + "y": 0, + "z": 119.26, + "connections": [151, 153] + }, + { + "id": 153, + "x": -5.3, + "y": 0, + "z": 116.93, + "connections": [152] + }, + { + "id": 154, + "x": 17.24, + "y": 0, + "z": 117.06, + "connections": [] + }, + { + "id": 156, + "x": -45.93, + "y": 2.77, + "z": 40.28, + "connections": [55] + }, + { + "id": 157, + "x": -7.58, + "y": 5.97, + "z": -28.56, + "connections": [4, 158] + }, + { + "id": 158, + "x": -17.19, + "y": 2.57, + "z": -60.82, + "connections": [157, 159, 162] + }, + { + "id": 159, + "x": -2.45, + "y": 2.37, + "z": -65.38, + "connections": [158, 160] + }, + { + "id": 160, + "x": 7.4, + "y": 2.46, + "z": -63.99, + "connections": [159, 161] + }, + { + "id": 161, + "x": 24.59, + "y": 2.71, + "z": -56.66, + "connections": [160] + }, + { + "id": 162, + "x": -31.53, + "y": 2.44, + "z": -56.42, + "connections": [158, 163] + }, + { + "id": 163, + "x": -39.67, + "y": 2.4, + "z": -51.61, + "connections": [162, 164] + }, + { + "id": 164, + "x": -49.61, + "y": 2.28, + "z": -44.28, + "connections": [163] + } +] diff --git a/public/sounds/effect/ebike-depart.mp3 b/public/sounds/effect/ebike-depart.mp3 new file mode 100644 index 0000000..be8d682 --- /dev/null +++ b/public/sounds/effect/ebike-depart.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d7e15fbd0f3354918028b7c3c64d475bc43a1c04e49ddbe901ce5da4009636 +size 88980 diff --git a/public/sounds/effect/ebike-panne.mp3 b/public/sounds/effect/ebike-panne.mp3 new file mode 100644 index 0000000..b73c038 --- /dev/null +++ b/public/sounds/effect/ebike-panne.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e932bf066558e36fae41bcd7bd22f864b9e93001b7b3c2526f52bbf14957f3f2 +size 67009 diff --git a/public/sounds/effect/ebike-ralenti.mp3 b/public/sounds/effect/ebike-ralenti.mp3 new file mode 100644 index 0000000..77f8561 --- /dev/null +++ b/public/sounds/effect/ebike-ralenti.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57ab7b73e84e50c1e8e63bf88d2b72dd0a6aa1d9211385366b9bebee8b24729 +size 87855 diff --git a/public/sounds/effect/ebike-roule.mp3 b/public/sounds/effect/ebike-roule.mp3 new file mode 100644 index 0000000..56d50bd --- /dev/null +++ b/public/sounds/effect/ebike-roule.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251fa21bc7e750c75ceba76c2554d2f8422210eb4fc7d1c82feab1f533dad1aa +size 254127 diff --git a/public/sounds/effect/galet-eclatement.mp3 b/public/sounds/effect/galet-eclatement.mp3 new file mode 100644 index 0000000..890f8b1 --- /dev/null +++ b/public/sounds/effect/galet-eclatement.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f3e7b9eba7e6953f003f0f111d5100a6586d6d455f52bf952e5a6b47040af8 +size 33303 diff --git a/public/sounds/effect/galet-miseenplace.mp3 b/public/sounds/effect/galet-miseenplace.mp3 new file mode 100644 index 0000000..4e1f5b7 --- /dev/null +++ b/public/sounds/effect/galet-miseenplace.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa95716082fc138a5c654a130c19dba39c91e5dc41eab637a1e04f76ff32ecad +size 40984 diff --git a/public/sounds/effect/galet-scan.mp3 b/public/sounds/effect/galet-scan.mp3 new file mode 100644 index 0000000..6c83436 --- /dev/null +++ b/public/sounds/effect/galet-scan.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e9cf69c777347371f9c6f3d5ac3d47b5ec318b925f69851c8ca6b063bcc36b +size 106260 diff --git a/public/sounds/effect/generateur-powerdown.mp3 b/public/sounds/effect/generateur-powerdown.mp3 new file mode 100644 index 0000000..d43d2fe --- /dev/null +++ b/public/sounds/effect/generateur-powerdown.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a0d42cb04f7b11f8d5ad83edea89946967e2798e8c2e348df8bd0abf5d216e +size 89175 diff --git a/public/sounds/effect/generateur-powerup.mp3 b/public/sounds/effect/generateur-powerup.mp3 new file mode 100644 index 0000000..0921d7b --- /dev/null +++ b/public/sounds/effect/generateur-powerup.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049cde5639528a1eb627bd64799d39381023f85277ba37a3f3b3422bd630f3e5 +size 135092 diff --git a/public/sounds/effect/lac.mp3 b/public/sounds/effect/lac.mp3 new file mode 100644 index 0000000..2896ba5 --- /dev/null +++ b/public/sounds/effect/lac.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be20a2b013e0cfc4652c82a3d129c344222917cc1c87aabe889db915acdad849 +size 522893 diff --git a/public/sounds/effect/pas-fabrik.mp3 b/public/sounds/effect/pas-fabrik.mp3 new file mode 100644 index 0000000..fb18f38 --- /dev/null +++ b/public/sounds/effect/pas-fabrik.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d216ece017a4b80476352e1d51119161fb479ca6be418a1e03ee5b8183e3b386 +size 44818 diff --git a/public/sounds/effect/pas-gravier.mp3 b/public/sounds/effect/pas-gravier.mp3 new file mode 100644 index 0000000..6ff2fe9 --- /dev/null +++ b/public/sounds/effect/pas-gravier.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acea100b6fa75fb09b03453fe5c33277d53d6d2b9636cd03978d6e7ef165948e +size 40979 diff --git a/public/sounds/effect/reparation-alarme.mp3 b/public/sounds/effect/reparation-alarme.mp3 new file mode 100644 index 0000000..ed20b14 --- /dev/null +++ b/public/sounds/effect/reparation-alarme.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20795d459226c41f76ee1731b094e459de9c8669519a9922077d9c3273953b8 +size 19865 diff --git a/public/sounds/effect/reparation-finie.mp3 b/public/sounds/effect/reparation-finie.mp3 new file mode 100644 index 0000000..5ce5f26 --- /dev/null +++ b/public/sounds/effect/reparation-finie.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaf18c5e17dc5b20171505896566a87021597205525eb3f47839153d763c1fb +size 35224 diff --git a/public/sounds/effect/reparation-uiclick.mp3 b/public/sounds/effect/reparation-uiclick.mp3 new file mode 100644 index 0000000..87f9e03 --- /dev/null +++ b/public/sounds/effect/reparation-uiclick.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e701744a21c9542f02c1d8d7664c52665e69acb974282fe4c77bad5fb85846 +size 14103 diff --git a/public/sounds/effect/talkie-bip.mp3 b/public/sounds/effect/talkie-bip.mp3 new file mode 100644 index 0000000..6cc6cb9 --- /dev/null +++ b/public/sounds/effect/talkie-bip.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb649dcb817676013038abaddf4d3bdb921db88b86b84b9bce5127b1f054d0a2 +size 12939 diff --git a/public/sounds/effect/ui-click.mp3 b/public/sounds/effect/ui-click.mp3 new file mode 100644 index 0000000..479e593 --- /dev/null +++ b/public/sounds/effect/ui-click.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31cde808a0e6f6e4552e477256e7c4c1da1da82ca649f4aacd7aaba5a7684e7 +size 14093 diff --git a/public/sounds/musique/musique-fin.mp3 b/public/sounds/musique/musique-fin.mp3 new file mode 100644 index 0000000..36b56a1 --- /dev/null +++ b/public/sounds/musique/musique-fin.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cdacf228c2c8ba8b66820e94d6d7237a92429d0a03a1c6590fef50e2d76945 +size 2998879 diff --git a/public/sounds/musique/musique-jeu.mp3 b/public/sounds/musique/musique-jeu.mp3 new file mode 100644 index 0000000..9955e44 --- /dev/null +++ b/public/sounds/musique/musique-jeu.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e1598f43a86f71249855464792cf38e38ab6f35aedace1f2e655b8c855ca48 +size 2123810 diff --git a/public/sounds/musique/musique-reparation.mp3 b/public/sounds/musique/musique-reparation.mp3 new file mode 100644 index 0000000..58faa79 --- /dev/null +++ b/public/sounds/musique/musique-reparation.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df05508dc7303b06b3b544f10b5c748ce8dbc60d6bddf44ea33c1ac5d525d10 +size 1273149 diff --git a/public/textures/grass/grass.jpg b/public/textures/grass/grass.jpg new file mode 100644 index 0000000..93b20f0 --- /dev/null +++ b/public/textures/grass/grass.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2581ae7efc473aeffb1ec62bf14726bac7b3af3631865171e82dae4b6485448 +size 38570 diff --git a/public/textures/grass/noise.png b/public/textures/grass/noise.png new file mode 100644 index 0000000..88bd9c3 --- /dev/null +++ b/public/textures/grass/noise.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b89ff8ae978423bc51544fdeee716ee037059b1eedcad137cd26932812b606 +size 213035 diff --git a/scripts/transformMap.cjs b/scripts/transformMap.cjs new file mode 100644 index 0000000..37b8197 --- /dev/null +++ b/scripts/transformMap.cjs @@ -0,0 +1,523 @@ +const fs = require("fs"); +const path = require("path"); + +const INPUT_PATH = path.join(__dirname, "../public/map_raw.json"); +const OUTPUT_PATH = path.join(__dirname, "../public/map.json"); + +const MESH_NAME_MAPPINGS = { + boitesauxlettres: "boiteauxlettres", + pyloneelectrique: "pylone", + eoliennes: "eolienne", + immeuble_1: "immeuble1", + buissons: "buisson", + panneauxcentre: "panneauclassique", + panneauxdomaine: "panneauclassique", + panneaudircentre: "panneaufleche", + panneaudirdomaine: "panneaufleche", + panneaudirfabrik: "panneaufleche", + panneaudirresidences1: "panneaufleche", + panneaudirresidences2: "panneaufleche", + panneauxquartier: "panneauaffichage", +}; + +const IDENTITY_NODE = { + position: [0, 0, 0], + rotation: [0, 0, 0], + scale: [1, 1, 1], +}; +const REPAIR_PYLON_ANCHOR_ID = "repair:pylon"; +const REPAIR_PYLON_FALLBACK_POSITION = [64, 0, -66]; +const MAX_MESH_Y_PLACEMENT_OFFSET = 2; +const RAW_INDEX = { + directionGroup: 5, + fermeGroup: 4798, + energieGroup: 4800, + lafabrikGroup: 4873, + ecoleGroup: 4895, + residenceZoneSources: [830, 874, 892], +}; +const RAW_RANGES = { + directionPrimary: [6, 12], + residenceZone1: [831, 873], + residenceZone2: [875, 891], + residenceZone3: [893, 942], + residenceBikes: [14, 23], + residenceMailboxes: [25, 58], + energyPylones: [61, 96], + vegetationPrimary: [98, 829], + lakePipes: [944, 944], + fields: [946, 4594], + farm: [4595, 4799], + vegetationFarmArea: [4750, 4797], + energy: [4801, 4872], + lafabrik: [4874, 4894], + directionSecondary: [4896, 4897], + vegetationSecondary: [4898, 4997], +}; + +function cloneNode(node) { + return { + ...(node.id ? { id: node.id } : {}), + name: node.name, + type: node.type, + position: node.position, + rotation: node.rotation, + scale: node.scale, + }; +} + +function isOriginPosition(position) { + return position.every((value) => Math.abs(value) < 0.0001); +} + +function hasDistinctPylonTransform(node) { + return ( + node.rotation.some((value) => Math.abs(value) > 0.0001) || + node.scale.some((value) => Math.abs(value - 1) > 0.0001) + ); +} + +function distanceToPosition(node, position) { + return Math.hypot( + node.position[0] - position[0], + node.position[2] - position[2], + ); +} + +function collectMapNodes(root, predicate) { + const results = []; + const stack = [root]; + + while (stack.length > 0) { + const node = stack.pop(); + if (predicate(node)) { + results.push(node); + } + stack.push(...(node.children ?? [])); + } + + return results; +} + +function assignRepairPylonAnchorId(root) { + const pylones = collectMapNodes( + root, + (node) => + node.name === "pylone" && + node.type === "Object3D" && + !isOriginPosition(node.position), + ); + const distinctPylones = pylones.filter(hasDistinctPylonTransform); + const candidates = distinctPylones.length > 0 ? distinctPylones : pylones; + if (candidates.length === 0) return; + + const anchor = [...candidates].sort( + (a, b) => + distanceToPosition(a, REPAIR_PYLON_FALLBACK_POSITION) - + distanceToPosition(b, REPAIR_PYLON_FALLBACK_POSITION), + )[0]; + + anchor.id = REPAIR_PYLON_ANCHOR_ID; +} + +function createGroup(name, sourceNode) { + return { + name, + type: "Object3D", + role: "group", + position: sourceNode?.position ?? IDENTITY_NODE.position, + rotation: sourceNode?.rotation ?? IDENTITY_NODE.rotation, + scale: sourceNode?.scale ?? IDENTITY_NODE.scale, + children: [], + }; +} + +function mapMeshNode(node) { + return { + ...cloneNode(node), + name: MESH_NAME_MAPPINGS[node.name] ?? node.name, + }; +} + +function getOrCreateModelGroup(parent, modelName) { + let group = parent.children.find( + (child) => child.name === modelName && child.type === "Object3D", + ); + + if (!group) { + group = createGroup(modelName); + parent.children.push(group); + } + + return group; +} + +function getRequiredRawNode(rawData, index, label) { + const node = rawData[index]; + if (!node) { + throw new Error(`Missing raw map node for ${label} at index ${index}`); + } + + return node; +} + +function createRenderableObject(objectNode, meshNode) { + const mappedMesh = mapMeshNode(meshNode); + const renderableNode = cloneNode(objectNode ?? meshNode); + + if (objectNode && meshNode) { + const yOffset = Math.abs(objectNode.position[1] - meshNode.position[1]); + if (yOffset <= MAX_MESH_Y_PLACEMENT_OFFSET) { + renderableNode.position = [ + objectNode.position[0], + meshNode.position[1], + objectNode.position[2], + ]; + } + } + + return { + ...renderableNode, + name: mappedMesh.name, + type: "Object3D", + children: [mappedMesh], + }; +} + +function createRenderableContainer(objectNode, meshNodes) { + return { + ...cloneNode(objectNode), + type: "Object3D", + children: meshNodes.map(mapMeshNode), + }; +} + +function addRenderable(parent, objectNode, meshNode) { + const renderable = createRenderableObject(objectNode, meshNode); + getOrCreateModelGroup(parent, renderable.name).children.push(renderable); +} + +function addStandaloneObject(rawData, parent, name) { + const node = rawData.find( + (rawNode) => rawNode?.type === "Object3D" && rawNode.name === name, + ); + + if (!node) return; + + getOrCreateModelGroup(parent, name).children.push(cloneNode(node)); +} + +function addObjectsByRange(rawData, parent, start, end, allowedNames) { + let currentObject = null; + + for (let i = start; i <= end; i++) { + const node = rawData[i]; + + if (node?.type === "Object3D") { + currentObject = node; + continue; + } + + if (node?.type !== "Mesh") continue; + if (allowedNames && !allowedNames.has(node.name)) continue; + + addRenderable(parent, currentObject, node); + } +} + +function addBuildingsByRange(rawData, parent, start, end) { + for (let i = start; i <= end; i++) { + const node = rawData[i]; + if (node?.type !== "Object3D" || node.name !== "immeuble1") continue; + + const meshNodes = []; + for (let childIndex = i + 1; childIndex <= end; childIndex++) { + const childNode = rawData[childIndex]; + + if (childNode?.type === "Object3D") { + if (BUILDING_CHILD_OBJECT_NAMES.has(childNode.name)) continue; + break; + } + + if ( + childNode?.type === "Mesh" && + BUILDING_MESH_NAMES.has(childNode.name) + ) { + meshNodes.push(childNode); + } + } + + if (meshNodes.length > 0) { + getOrCreateModelGroup(parent, node.name).children.push( + createRenderableContainer(node, meshNodes), + ); + } + } +} + +function getNearestGroup(groups, node) { + const [x, , z] = node.position; + + return groups.reduce((nearest, group) => { + const [gx, , gz] = group.position; + const distance = Math.hypot(x - gx, z - gz); + if (!nearest || distance < nearest.distance) { + return { group, distance }; + } + return nearest; + }, null).group; +} + +function createResidenceZones(rawData, residence) { + const zoneSources = RAW_INDEX.residenceZoneSources.map((index) => + getRequiredRawNode(rawData, index, `residence zone ${index}`), + ); + const zones = zoneSources.map((sourceNode, index) => { + const zone = createGroup(`zone${index + 1}_residence`, sourceNode); + residence.children.push(zone); + return zone; + }); + + addBuildingsByRange(rawData, zones[0], ...RAW_RANGES.residenceZone1); + addBuildingsByRange(rawData, zones[1], ...RAW_RANGES.residenceZone2); + addBuildingsByRange(rawData, zones[2], ...RAW_RANGES.residenceZone3); + addObjectsByRange( + rawData, + zones[0], + ...RAW_RANGES.residenceZone1, + RESIDENCE_MESH_NAMES, + ); + addObjectsByRange( + rawData, + zones[1], + ...RAW_RANGES.residenceZone2, + RESIDENCE_MESH_NAMES, + ); + addObjectsByRange( + rawData, + zones[2], + ...RAW_RANGES.residenceZone3, + RESIDENCE_MESH_NAMES, + ); + + for ( + let i = RAW_RANGES.residenceBikes[0]; + i <= RAW_RANGES.residenceBikes[1]; + i++ + ) { + const node = rawData[i]; + if (node?.type === "Mesh" && node.name === "parcebike") { + addRenderable(getNearestGroup(zones, node), null, node); + } + } + + for ( + let i = RAW_RANGES.residenceMailboxes[0]; + i <= RAW_RANGES.residenceMailboxes[1]; + i++ + ) { + const node = rawData[i]; + if (node?.type === "Mesh" && node.name === "boitesauxlettres") { + addRenderable(getNearestGroup(zones, node), null, node); + } + } + + return zones; +} + +const VEGETATION_MESH_NAMES = new Set(["arbre", "sapin", "buissons"]); +const CHAMP_MESH_NAMES = new Set([ + "champdeble", + "champdesoja", + "champsdetournesol", +]); +const FERME_MESH_NAMES = new Set(["buissons", "buisson", "fermeverticale"]); +const RESIDENCE_MESH_NAMES = new Set(["maison1"]); +const BUILDING_CHILD_OBJECT_NAMES = new Set([ + "immeuble", + "immeuble_1", + "immeuble_2", +]); +const BUILDING_MESH_NAMES = new Set(["immeuble_1", "immeuble_2"]); +const ENERGIE_MESH_NAMES = new Set([ + "pyloneelectrique", + "eoliennes", + "panneausolaire", + "generateur", +]); +const DIRECTION_MESH_NAMES = new Set([ + "panneauxcentre", + "panneauxdomaine", + "panneaudircentre", + "panneaudirdomaine", + "panneaudirfabrik", + "panneaudirresidences1", + "panneaudirresidences2", + "panneauxquartier", +]); +const LAFABRIK_MESH_NAMES = new Set(["lafabrik", "maison1"]); +function transformMap() { + console.log("Reading map_raw.json..."); + const rawData = JSON.parse(fs.readFileSync(INPUT_PATH, "utf-8")); + + const sceneRaw = rawData.find( + (node) => node.name === "Scene" && node.type === "Object3D", + ); + const terrainRaw = rawData.find( + (node) => node.name === "terrain" && node.type === "Object3D", + ); + const terrainMesh = rawData.find( + (node) => node.name === "terrain" && node.type === "Mesh", + ); + const blockingRaw = rawData.find( + (node) => node.name === "Neutre" && node.type === "Object3D", + ); + + if (!sceneRaw || !terrainRaw || !terrainMesh || !blockingRaw) { + throw new Error("Missing required Scene, terrain, or Neutre nodes"); + } + + const scene = createGroup("Scene", sceneRaw); + const terrain = createGroup("terrain", terrainRaw); + const blocking = createGroup("blocking", blockingRaw); + const vegetation = createGroup("vegetation"); + const agriculture = createGroup("agriculture"); + const champs = createGroup("champs"); + const ferme = createGroup( + "ferme", + getRequiredRawNode(rawData, RAW_INDEX.fermeGroup, "ferme group"), + ); + const residence = createGroup("residence"); + const energie = createGroup( + "energie", + getRequiredRawNode(rawData, RAW_INDEX.energieGroup, "energie group"), + ); + const direction = createGroup( + "direction", + getRequiredRawNode(rawData, RAW_INDEX.directionGroup, "direction group"), + ); + const lafabrik = createGroup( + "lafabrik", + getRequiredRawNode(rawData, RAW_INDEX.lafabrikGroup, "lafabrik group"), + ); + const ecole = createGroup( + "ecole", + getRequiredRawNode(rawData, RAW_INDEX.ecoleGroup, "ecole group"), + ); + delete ecole.role; + const unclassified = createGroup("unclassified"); + + terrain.children.push(createRenderableObject(terrainRaw, terrainMesh)); + scene.children.push(terrain, blocking); + blocking.children.push( + vegetation, + agriculture, + residence, + energie, + direction, + lafabrik, + ecole, + ); + agriculture.children.push(champs, ferme); + + addObjectsByRange( + rawData, + direction, + ...RAW_RANGES.directionPrimary, + DIRECTION_MESH_NAMES, + ); + addStandaloneObject(rawData, residence, "ebike"); + createResidenceZones(rawData, residence); + addObjectsByRange( + rawData, + energie, + ...RAW_RANGES.energyPylones, + new Set(["pyloneelectrique"]), + ); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationPrimary, + VEGETATION_MESH_NAMES, + ); + addObjectsByRange( + rawData, + agriculture, + ...RAW_RANGES.lakePipes, + new Set(["tuyauxlac"]), + ); + addObjectsByRange(rawData, champs, ...RAW_RANGES.fields, CHAMP_MESH_NAMES); + addObjectsByRange(rawData, ferme, ...RAW_RANGES.farm, FERME_MESH_NAMES); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationFarmArea, + VEGETATION_MESH_NAMES, + ); + addObjectsByRange(rawData, energie, ...RAW_RANGES.energy, ENERGIE_MESH_NAMES); + addBuildingsByRange(rawData, lafabrik, ...RAW_RANGES.lafabrik); + addObjectsByRange( + rawData, + lafabrik, + ...RAW_RANGES.lafabrik, + LAFABRIK_MESH_NAMES, + ); + addObjectsByRange( + rawData, + direction, + ...RAW_RANGES.directionSecondary, + DIRECTION_MESH_NAMES, + ); + addObjectsByRange( + rawData, + vegetation, + ...RAW_RANGES.vegetationSecondary, + VEGETATION_MESH_NAMES, + ); + + for (let i = 0; i < rawData.length; i++) { + const node = rawData[i]; + if (node.type !== "Mesh") continue; + if (node.name === "mc") continue; + if (node.name === "bati-ecole") continue; + + const alreadyClassified = isMeshClassified(scene, node); + if (!alreadyClassified) { + addRenderable(unclassified, null, node); + } + } + + if (unclassified.children.length > 0) { + blocking.children.push(unclassified); + } + + assignRepairPylonAnchorId(scene); + + fs.writeFileSync(OUTPUT_PATH, JSON.stringify(scene, null, 2)); + console.log(`Written hierarchical map to ${OUTPUT_PATH}`); +} + +function isSameTransform(a, b) { + return ( + a.name === (MESH_NAME_MAPPINGS[b.name] ?? b.name) && + JSON.stringify(a.position) === JSON.stringify(b.position) && + JSON.stringify(a.rotation) === JSON.stringify(b.rotation) && + JSON.stringify(a.scale) === JSON.stringify(b.scale) + ); +} + +function isMeshClassified(root, rawMeshNode) { + const stack = [...(root.children ?? [])]; + + while (stack.length > 0) { + const node = stack.pop(); + if (node.type === "Mesh" && isSameTransform(node, rawMeshNode)) { + return true; + } + stack.push(...(node.children ?? [])); + } + + return false; +} + +transformMap(); diff --git a/src/components/debug/scene/DebugHelpers.tsx b/src/components/debug/scene/DebugHelpers.tsx index 17b50ac..c94be16 100644 --- a/src/components/debug/scene/DebugHelpers.tsx +++ b/src/components/debug/scene/DebugHelpers.tsx @@ -6,12 +6,14 @@ import { DEBUG_GRID_SIZE, DEBUG_GRID_Y, } from "@/data/debug/debugConfig"; +import { useSceneMode } from "@/hooks/debug/useSceneMode"; import { Debug } from "@/utils/debug/Debug"; export function DebugHelpers(): React.JSX.Element | null { const debug = Debug.getInstance(); + const sceneMode = useSceneMode(); - if (!debug.active) { + if (!debug.active || sceneMode === "game") { return null; } diff --git a/src/components/docs/DocsDocument.tsx b/src/components/docs/DocsDocument.tsx index ae7cb45..b0e6258 100644 --- a/src/components/docs/DocsDocument.tsx +++ b/src/components/docs/DocsDocument.tsx @@ -6,14 +6,14 @@ interface DocsDocumentProps { title: string; meta: string; content: string; - frContent: string; + frContent?: string; } export function DocsDocument({ title, meta, content, - frContent, + frContent = content, }: DocsDocumentProps): React.JSX.Element { const { language, toggleLanguage } = useDocsLanguage(); const hasAlternateContent = frContent !== content; diff --git a/src/components/ebike/Ebike.tsx b/src/components/ebike/Ebike.tsx new file mode 100644 index 0000000..13cfdce --- /dev/null +++ b/src/components/ebike/Ebike.tsx @@ -0,0 +1,293 @@ +import { useEffect, useRef, useState, useMemo } from "react"; +import * as THREE from "three"; +import { useFrame, useThree } from "@react-three/fiber"; +import { EbikeGPSMap } from "@/components/ebike/EbikeGPSMap"; +import { InteractableObject } from "@/components/three/interaction/InteractableObject"; +import { useLoggedGLTF } from "@/hooks/three/useLoggedGLTF"; +import { useClonedObject } from "@/hooks/three/useClonedObject"; +import { useDebugFolder } from "@/hooks/debug/useDebugFolder"; +import { animateCameraTransformTransition } from "@/world/GameCinematics"; +import { useGameStore } from "@/managers/stores/useGameStore"; +import { PLAYER_EYE_HEIGHT } from "@/data/player/playerConfig"; +import type { Vector3Tuple } from "@/types/three/three"; + +const EBIKE_MODEL_PATH = "/models/ebike/model.gltf"; + +export interface CameraTransform { + position: Vector3Tuple; + rotation: Vector3Tuple; +} + +export const EBIKE_CAMERA_TRANSFORM: CameraTransform = { + position: [-3.5, 6, 0], + rotation: [-10, -90, 0], +}; + +const EBIKE_DROP_PLAYER_TRANSFORM: CameraTransform = { + position: [0, 1.5, -3], + rotation: [0, 0, 0], +}; + +interface EbikeProps { + position: Vector3Tuple; +} + +export function Ebike({ position }: EbikeProps): React.JSX.Element { + const groupRef = useRef(null); + const { scene } = useLoggedGLTF(EBIKE_MODEL_PATH, { + scope: "Ebike", + position: position, + }); + const model = useClonedObject(scene); + const movementMode = useGameStore((state) => state.player.movementMode); + const mainState = useGameStore((state) => state.mainState); + const camera = useThree((state) => state.camera); + + // Map active mainState to target repair zone coordinate + const destPos = useMemo(() => { + switch (mainState) { + case "ebike": + return { x: 8, y: 0, z: -6 }; + case "pylon": + return { x: 64, y: 0, z: -66 }; + case "farm": + return { x: -24, y: 0, z: 42 }; + default: + return undefined; + } + }, [mainState]); + + // Throttled GPS start position to optimize pathfinding A* algorithm execution + const [gpsStartPos, setGpsStartPos] = useState<{ + x: number; + y: number; + z: number; + }>({ + x: position[0], + y: position[1], + z: position[2], + }); + const lastGpsUpdatePos = useRef( + new THREE.Vector3(...position), + ); + + const restingPosition = useRef([ + position[0], + position[1] - PLAYER_EYE_HEIGHT, + position[2], + ]); + const restingRotation = useRef(0); + const forkRef = useRef(null); + + useEffect(() => { + if (model) { + const fork = model.getObjectByName("fourche"); + if (fork) { + forkRef.current = fork; + } + } + }, [model]); + + useEffect(() => { + (window as any).ebikeVisualGroup = groupRef; + (window as any).ebikeParkedPosition = restingPosition.current; + (window as any).ebikeParkedRotation = restingRotation.current; + return () => { + (window as any).ebikeVisualGroup = null; + (window as any).ebikeParkedPosition = null; + (window as any).ebikeParkedRotation = null; + }; + }, []); + + useFrame((_, delta) => { + if (groupRef.current) { + if (movementMode === "ebike") { + restingPosition.current = [ + groupRef.current.position.x, + groupRef.current.position.y, + groupRef.current.position.z, + ]; + restingRotation.current = groupRef.current.rotation.y; + + // Smoothly rotate the front fork ("fourche") up to 15 degrees in its own Z axis + const steerFactor = (window as any).ebikeSteerFactor || 0; + if (forkRef.current) { + // 15 degrees is 0.26 radians + const targetForkRotation = steerFactor * 0.26; + forkRef.current.rotation.z = THREE.MathUtils.lerp( + forkRef.current.rotation.z, + targetForkRotation, + 12 * delta, + ); + } + + // Throttled GPS start position update to prevent performance loss + const currentPos = groupRef.current.position; + if (currentPos.distanceTo(lastGpsUpdatePos.current) > 2.0) { + lastGpsUpdatePos.current.copy(currentPos); + setGpsStartPos({ x: currentPos.x, y: currentPos.y, z: currentPos.z }); + } + } else { + groupRef.current.position.set(...restingPosition.current); + groupRef.current.rotation.set(0, restingRotation.current, 0); + + // Reset fork rotation when parked + if (forkRef.current) { + forkRef.current.rotation.z = 0; + } + } + (window as any).ebikeParkedPosition = restingPosition.current; + (window as any).ebikeParkedRotation = restingRotation.current; + } + }); + + const camPointPos: Vector3Tuple = [ + restingPosition.current[0] + EBIKE_CAMERA_TRANSFORM.position[0], + restingPosition.current[1] + EBIKE_CAMERA_TRANSFORM.position[1], + restingPosition.current[2] + EBIKE_CAMERA_TRANSFORM.position[2], + ]; + const dropPointPos: Vector3Tuple = [ + restingPosition.current[0] + EBIKE_DROP_PLAYER_TRANSFORM.position[0], + restingPosition.current[1] + EBIKE_DROP_PLAYER_TRANSFORM.position[1], + restingPosition.current[2] + EBIKE_DROP_PLAYER_TRANSFORM.position[2], + ]; + + const handleInteract = (): void => { + if (movementMode === "walk") { + const cameraOffset = new THREE.Vector3( + ...EBIKE_CAMERA_TRANSFORM.position, + ); + cameraOffset.applyAxisAngle( + new THREE.Vector3(0, 1, 0), + restingRotation.current, + ); + + const targetCamPos: Vector3Tuple = [ + restingPosition.current[0] + cameraOffset.x, + restingPosition.current[1] + cameraOffset.y, + restingPosition.current[2] + cameraOffset.z, + ]; + + const targetRotation: Vector3Tuple = [ + EBIKE_CAMERA_TRANSFORM.rotation[0], + EBIKE_CAMERA_TRANSFORM.rotation[1] + + THREE.MathUtils.radToDeg(restingRotation.current), + EBIKE_CAMERA_TRANSFORM.rotation[2], + ]; + + animateCameraTransformTransition(targetCamPos, targetRotation, 1, () => { + useGameStore.getState().setPlayerMovementMode("ebike"); + }); + } else { + const currentPos = new THREE.Vector3(); + if (groupRef.current) { + groupRef.current.getWorldPosition(currentPos); + } else { + currentPos.set(...position); + } + + const targetCamPos: Vector3Tuple = [ + currentPos.x + EBIKE_DROP_PLAYER_TRANSFORM.position[0], + currentPos.y + EBIKE_DROP_PLAYER_TRANSFORM.position[1], + currentPos.z + EBIKE_DROP_PLAYER_TRANSFORM.position[2], + ]; + + // Get camera's current rotation in degrees so we keep the exact orientation during dismount + const currentEuler = new THREE.Euler().setFromQuaternion( + camera.quaternion, + "YXZ", + ); + const targetRotation: Vector3Tuple = [ + THREE.MathUtils.radToDeg(currentEuler.x), + THREE.MathUtils.radToDeg(currentEuler.y), + THREE.MathUtils.radToDeg(currentEuler.z), + ]; + + animateCameraTransformTransition(targetCamPos, targetRotation, 1, () => { + useGameStore.getState().setPlayerMovementMode("walk"); + }); + } + }; + + const handleInteractRef = useRef(handleInteract); + handleInteractRef.current = handleInteract; + + const debugRef = useRef({ showCameraPoints: true }); + const debugActions = useRef({ + toggleRide: () => { + handleInteractRef.current(); + }, + }); + + useDebugFolder("Ebike", (folder) => { + folder + .add(debugRef.current, "showCameraPoints") + .name("Show Camera Points") + .onChange((value: boolean) => { + debugRef.current.showCameraPoints = value; + }); + + folder.add(debugActions.current, "toggleRide").name("Monter / Descendre"); + }); + + return ( + <> + + + + + + + + + + {/* Dynamic 3D GPS Dashboard Screen */} + + + + + + {debugRef.current.showCameraPoints && ( + <> + + + + + + + + + + )} + + ); +} diff --git a/src/components/ebike/EbikeGPSMap.tsx b/src/components/ebike/EbikeGPSMap.tsx new file mode 100644 index 0000000..3aa65cd --- /dev/null +++ b/src/components/ebike/EbikeGPSMap.tsx @@ -0,0 +1,497 @@ +import React, { useRef, useEffect, useState, useMemo } from "react"; +import * as THREE from "three"; +import { + findClosestWaypoint, + findWaypointPath, +} from "@/pathfinding/WaypointAStar"; +import type { Waypoint } from "@/pathfinding/types"; +function computeImageSource( + img: HTMLImageElement | HTMLCanvasElement, + baseBounds: { minX: number; maxX: number; minZ: number; maxZ: number }, + bounds: { minX: number; maxX: number; minZ: number; maxZ: number }, +) { + const imgW = img.width; + const imgH = img.height; + + const baseW = baseBounds.maxX - baseBounds.minX; + const baseH = baseBounds.maxZ - baseBounds.minZ; + + if (baseW === 0 || baseH === 0) { + return { sx: 0, sy: 0, sW: imgW, sH: imgH }; + } + + const sx = ((bounds.minX - baseBounds.minX) / baseW) * imgW; + const sy = ((bounds.minZ - baseBounds.minZ) / baseH) * imgH; + const sW = ((bounds.maxX - bounds.minX) / baseW) * imgW; + const sH = ((bounds.maxZ - bounds.minZ) / baseH) * imgH; + + return { sx, sy, sW, sH }; +} + +export interface EbikeGPSMapProps { + /** + * 3D world position of the player/bike (GPS start point) + * If omitted, snaps to [0,0,0] + */ + startPos?: { x: number; y: number; z: number } | undefined; + destPos?: { x: number; y: number; z: number } | undefined; + + /** + * Optional custom URL to the map background texture. + * If not provided, renders a high-tech minimalist neon blueprint map dynamically. + */ + mapImageUrl?: string; + + /** + * Optional explicit bounds for mapping coordinates. + * If omitted, bounds are calculated automatically to perfectly fit the road network! + */ + worldBounds?: { + minX: number; + maxX: number; + minZ: number; + maxZ: number; + }; + + /** + * Width of the 3D plane mesh (default: 1) + */ + width?: number; + + /** + * Height of the 3D plane mesh (default: 1) + */ + height?: number; + + /** + * Optional world position for the GPS screen (defaults to origin) + */ + position?: [number, number, number]; + + /** + * Resolution of the offscreen canvas used for the map texture. + * Higher values yield sharper rendering at the cost of GPU memory. + * Default: 1024 (1024×1024 px) + */ + canvasSize?: number; + + /** + * Zoom level applied to the map view. + * 1 = full world bounds, 2 = 2× zoom-in centred on the player, etc. + * Values < 1 zoom out beyond the calculated world bounds. + * Default: 1 + */ + zoom?: number; +} + +/** + * EbikeGPSMap + * A premium, state-of-the-art 3D GPS navigation screen for the Ebike. + * Loads the road network, runs A* pathfinding, and renders a glowing, animated + * orange path over a sleek high-tech map background. + */ +export const EbikeGPSMap: React.FC = ({ + startPos = { x: 0, y: 0, z: 0 }, + destPos, + mapImageUrl, + worldBounds, + width = 1, + height = 1, + position = [0, 0, 0], + canvasSize = 1024, + zoom = 1, +}) => { + const [waypoints, setWaypoints] = useState([]); + const [mapImage, setMapImage] = useState< + HTMLImageElement | HTMLCanvasElement | null + >(null); + + // Offscreen high-res canvas for crystal clear rendering + const [offscreenCanvas] = useState(() => { + const canvas = document.createElement("canvas"); + canvas.width = canvasSize; + canvas.height = canvasSize; + return canvas; + }); + + // Resize the canvas whenever canvasSize changes + useEffect(() => { + offscreenCanvas.width = canvasSize; + offscreenCanvas.height = canvasSize; + if (textureRef.current) { + textureRef.current.needsUpdate = true; + } + }, [canvasSize, offscreenCanvas]); + + const textureRef = useRef(null); + const animTimeRef = useRef(0); + + // Load waypoints (localStorage with /roadNetwork.json fallback) + useEffect(() => { + const saved = localStorage.getItem("la-fabrik-waypoints"); + if (saved) { + try { + const parsed = JSON.parse(saved); + if (Array.isArray(parsed) && parsed.length > 0) { + setWaypoints(parsed); + return; + } + } catch (e) { + console.error( + "[GPS Component] Error loading local storage waypoints", + e, + ); + } + } + + // Fallback to static roadNetwork.json + fetch("/roadNetwork.json") + .then((res) => { + if (res.ok) return res.json(); + throw new Error("Not found"); + }) + .then((data) => { + if (Array.isArray(data)) { + setWaypoints(data); + } + }) + .catch((err) => { + console.log("[GPS Component] No default road network found.", err); + }); + }, []); + + // Pre-load background map image (standard HTML5 Image loader) + // Since the user's PNG is already transparent, we don't need fetch or pixel manipulation! + useEffect(() => { + if (!mapImageUrl) { + setMapImage(null); + return; + } + + const img = new Image(); + img.onload = () => { + setMapImage(img); + }; + img.onerror = () => { + console.warn( + `[GPS Component] Failed to load map background image from ${mapImageUrl}. Falling back to dynamic vector map.`, + ); + setMapImage(null); + }; + img.src = mapImageUrl; + }, [mapImageUrl]); + + // Determine grid boundaries (before zoom) + const baseBounds = useMemo(() => { + if (worldBounds) return worldBounds; + + if (waypoints.length === 0) { + return { minX: -200, maxX: 200, minZ: -200, maxZ: 200 }; + } + + const xs = waypoints.map((w) => w.x); + const zs = waypoints.map((w) => w.z); + const minX = Math.min(...xs); + const maxX = Math.max(...xs); + const minZ = Math.min(...zs); + const maxZ = Math.max(...zs); + + // Padding (15% to ensure full view breathing room) + const padX = (maxX - minX) * 0.15 || 40; + const padZ = (maxZ - minZ) * 0.15 || 40; + + return { + minX: minX - padX, + maxX: maxX + padX, + minZ: minZ - padZ, + maxZ: maxZ + padZ, + }; + }, [waypoints, worldBounds]); + + // Apply zoom: shrink the view window around the player position + const bounds = useMemo(() => { + const clampedZoom = Math.max(0.1, zoom); + if (clampedZoom === 1) return baseBounds; + + const centerX = startPos.x; + const centerZ = startPos.z; + const halfW = (baseBounds.maxX - baseBounds.minX) / 2 / clampedZoom; + const halfH = (baseBounds.maxZ - baseBounds.minZ) / 2 / clampedZoom; + + return { + minX: centerX - halfW, + maxX: centerX + halfW, + minZ: centerZ - halfH, + maxZ: centerZ + halfH, + }; + }, [baseBounds, zoom, startPos]); + + // Snapped positions + const startPosSnapped = useMemo(() => { + if (waypoints.length === 0) return null; + return findClosestWaypoint(waypoints, startPos); + }, [waypoints, startPos]); + + const destPosSnapped = useMemo(() => { + if (!destPos || waypoints.length === 0) return null; + return findClosestWaypoint(waypoints, destPos); + }, [waypoints, destPos]); + + // Calculated active A* route + const activePath = useMemo(() => { + if (!startPosSnapped || !destPosSnapped || waypoints.length === 0) + return []; + return findWaypointPath(waypoints, startPosSnapped, destPosSnapped); + }, [waypoints, startPosSnapped, destPosSnapped]); + + // Translation helper: 3D world to Canvas pixels + const worldToCanvas = (wx: number, wz: number, canvasSize: number) => { + const { minX, maxX, minZ, maxZ } = bounds; + const px = ((wx - minX) / (maxX - minX)) * canvasSize; + const py = ((wz - minZ) / (maxZ - minZ)) * canvasSize; + return { x: px, y: py }; + }; + + // Draw loop + const draw = () => { + const canvas = offscreenCanvas; + const ctx = canvas.getContext("2d", { + willReadFrequently: true, + alpha: true, + }); + if (!ctx) return; + + const size = canvas.width; + + ctx.clearRect(0, 0, size, size); + + // 1. Draw Map Background (Image or premium blueprint vectors) + if (mapImage) { + const src = computeImageSource(mapImage, baseBounds, bounds); + const sx = Math.max(0, Math.min(mapImage.width, src.sx)); + const sy = Math.max(0, Math.min(mapImage.height, src.sy)); + const sW = Math.max(1, Math.min(mapImage.width - sx, src.sW)); + const sH = Math.max(1, Math.min(mapImage.height - sy, src.sH)); + + ctx.drawImage(mapImage, sx, sy, sW, sH, 0, 0, size, size); + ctx.globalAlpha = 1.0; + } else { + // Dynamic Sci-fi background grid (Background is transparent!) + + // Sci-fi subgrid + ctx.strokeStyle = "rgba(30, 41, 59, 0.4)"; + ctx.lineWidth = 1; + const step = size / 32; + for (let x = 0; x < size; x += step) { + ctx.beginPath(); + ctx.moveTo(x, 0); + ctx.lineTo(x, size); + ctx.stroke(); + } + for (let y = 0; y < size; y += step) { + ctx.beginPath(); + ctx.moveTo(0, y); + ctx.lineTo(size, y); + ctx.stroke(); + } + + // Aesthetic concentric radar topo-rings + ctx.strokeStyle = "rgba(71, 85, 105, 0.06)"; + ctx.lineWidth = 2; + for (let r = size / 6; r < size; r += size / 6) { + ctx.beginPath(); + ctx.arc(size / 2, size / 2, r, 0, 2 * Math.PI); + ctx.stroke(); + } + + // Faint diagonal technical accents + ctx.strokeStyle = "rgba(56, 189, 248, 0.03)"; + ctx.lineWidth = 1; + ctx.beginPath(); + ctx.moveTo(0, 0); + ctx.lineTo(size, size); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(size, 0); + ctx.lineTo(0, size); + ctx.stroke(); + } + + // 2. Draw Active Orange Glowing Path (Neon Highway effect) + if (activePath.length > 1) { + // Pass 1: Wide transparent orange bloom + ctx.beginPath(); + let pt = worldToCanvas(activePath[0]!.x, activePath[0]!.z, size); + ctx.moveTo(pt.x, pt.y); + for (let i = 1; i < activePath.length; i++) { + pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); + ctx.lineTo(pt.x, pt.y); + } + ctx.strokeStyle = "rgba(249, 115, 22, 0.2)"; // Faint bright orange + ctx.lineWidth = 20; + ctx.lineCap = "round"; + ctx.lineJoin = "round"; + ctx.shadowBlur = 30; + ctx.shadowColor = "#f97316"; // Neon Orange + ctx.stroke(); + + // Pass 2: Saturated glow core + ctx.beginPath(); + pt = worldToCanvas(activePath[0]!.x, activePath[0]!.z, size); + ctx.moveTo(pt.x, pt.y); + for (let i = 1; i < activePath.length; i++) { + pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); + ctx.lineTo(pt.x, pt.y); + } + ctx.strokeStyle = "#f97316"; // Vibrant orange + ctx.lineWidth = 8; + ctx.shadowBlur = 12; + ctx.shadowColor = "#ea580c"; + ctx.stroke(); + + // Pass 3: High-intensity white core + ctx.beginPath(); + pt = worldToCanvas(activePath[0]!.x, activePath[0]!.z, size); + ctx.moveTo(pt.x, pt.y); + for (let i = 1; i < activePath.length; i++) { + pt = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); + ctx.lineTo(pt.x, pt.y); + } + ctx.strokeStyle = "#fff7ed"; // Cream white + ctx.lineWidth = 3; + ctx.shadowBlur = 0; // Turn off shadows for the core + ctx.stroke(); + + // 3. Energy Particle Pulse animation tracing the road + const segments: { + start: { x: number; y: number }; + end: { x: number; y: number }; + len: number; + }[] = []; + let totalLen = 0; + for (let i = 0; i < activePath.length - 1; i++) { + const p1 = worldToCanvas(activePath[i]!.x, activePath[i]!.z, size); + const p2 = worldToCanvas( + activePath[i + 1]!.x, + activePath[i + 1]!.z, + size, + ); + const len = Math.sqrt( + Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2), + ); + segments.push({ start: p1, end: p2, len }); + totalLen += len; + } + + if (totalLen > 0) { + const targetLen = totalLen * animTimeRef.current; + let currentLen = 0; + let dotPt = segments[0]!.start; + + for (const seg of segments) { + if (currentLen + seg.len >= targetLen) { + const ratio = (targetLen - currentLen) / seg.len; + dotPt = { + x: seg.start.x + (seg.end.x - seg.start.x) * ratio, + y: seg.start.y + (seg.end.y - seg.start.y) * ratio, + }; + break; + } + currentLen += seg.len; + } + + // Draw multiple glowing pulses along the path + ctx.beginPath(); + ctx.arc(dotPt.x, dotPt.y, 8, 0, 2 * Math.PI); + ctx.fillStyle = "#ffffff"; + ctx.shadowBlur = 15; + ctx.shadowColor = "#f97316"; + ctx.fill(); + ctx.shadowBlur = 0; + } + } + + // 4. Draw Snap Markers (Start and End) + if (destPosSnapped) { + const pt = worldToCanvas(destPosSnapped.x, destPosSnapped.z, size); + const pulseSize = 12 + Math.sin(Date.now() * 0.007) * 4; + + // Pulse ring + ctx.beginPath(); + ctx.arc(pt.x, pt.y, pulseSize, 0, 2 * Math.PI); + ctx.strokeStyle = "rgba(249, 115, 22, 0.4)"; + ctx.lineWidth = 3; + ctx.stroke(); + + // Solid target core + ctx.beginPath(); + ctx.arc(pt.x, pt.y, 6, 0, 2 * Math.PI); + ctx.fillStyle = "#ea580c"; // Deep target orange + ctx.strokeStyle = "#ffffff"; + ctx.lineWidth = 2; + ctx.fill(); + ctx.stroke(); + } + + if (startPosSnapped) { + const pt = worldToCanvas(startPosSnapped.x, startPosSnapped.z, size); + + // Start Marker (Player Arrow/Dot) + ctx.beginPath(); + ctx.arc(pt.x, pt.y, 8, 0, 2 * Math.PI); + ctx.fillStyle = "#0ea5e9"; // Cool cyberpunk sky blue + ctx.strokeStyle = "#ffffff"; + ctx.lineWidth = 2.5; + ctx.fill(); + ctx.stroke(); + + // Tech details + ctx.beginPath(); + ctx.arc(pt.x, pt.y, 3, 0, 2 * Math.PI); + ctx.fillStyle = "#ffffff"; + ctx.fill(); + } + + // 5. Update WebGL Texture + if (textureRef.current) { + textureRef.current.needsUpdate = true; + } + }; + + // 60 FPS animation ticker + useEffect(() => { + let animId: number; + const tick = () => { + animTimeRef.current += 0.004; // Slow, premium sweep speed + if (animTimeRef.current > 1) animTimeRef.current = 0; + + draw(); + + animId = requestAnimationFrame(tick); + }; + animId = requestAnimationFrame(tick); + return () => cancelAnimationFrame(animId); + }, [waypoints, startPos, destPos, bounds, mapImage]); + + return ( + + + + + + + ); +}; diff --git a/src/components/editor/EditorControls.tsx b/src/components/editor/EditorControls.tsx index e9b099d..943984d 100644 --- a/src/components/editor/EditorControls.tsx +++ b/src/components/editor/EditorControls.tsx @@ -8,33 +8,52 @@ import { Lock, MousePointer2, Move3D, + Plus, Redo2, RotateCw, Save, + Trash2, + ScanSearch, Undo2, Unlock, X, } from "lucide-react"; +import { useState } from "react"; import { EditorCinematicManifestPanel } from "@/components/editor/EditorCinematicManifestPanel"; import { EditorDialogueManifestPanel } from "@/components/editor/EditorDialogueManifestPanel"; import { EditorSrtPanel } from "@/components/editor/EditorSrtPanel"; import type { CinematicDefinition } from "@/types/cinematics/cinematics"; import type { MapNode, TransformMode } from "@/types/editor/editor"; +import type { Vector3Tuple } from "@/types/three/three"; interface EditorControlsProps { transformMode: TransformMode; onTransformModeChange: (mode: TransformMode) => void; selectedNodeIndex: number | null; + selectedNodeIndexes: number[]; mapNodes: MapNode[]; nodesCount: number; selectedNodeName: string | null; + selectedNodeScale: Vector3Tuple | null; + lockTerrainSelection: boolean; + onLockTerrainSelectionChange: (locked: boolean) => void; isSelectionLocked: boolean; onSelectionLockToggle: () => void; onClearSelection: () => void; + snapToTerrain: boolean; + onSnapToTerrainToggle: () => void; + onSnapAllToTerrain: () => void; + newNodeName: string; + onNewNodeNameChange: (value: string) => void; + onAddNode: () => void; + onDeleteSelectedNode: () => void; + onSelectedScaleChange: (axis: 0 | 1 | 2, value: number) => void; undoCount: number; redoCount: number; onUndo: () => void; onRedo: () => void; + cameraActionLabel: string; + onCameraAction: () => void; onExportJson: () => void; onSaveToServer?: (() => void | Promise) | undefined; onPlayerMode?: (() => void) | undefined; @@ -50,9 +69,10 @@ const TRANSFORM_OPTIONS = [ const EDITOR_SHORTCUTS = [ ["Click", "Select object"], + ["Shift + Right click", "Toggle multi-selection"], ["T / R / S", "Transform mode"], ["Ctrl Z / Y", "Undo / redo"], - ["Esc", "Deselect"], + ["Esc / X button", "Clear selection"], ["WASD", "Move when locked"], ] as const; @@ -83,20 +103,80 @@ function EditorPanelGroup({ ); } +interface EditorScaleFieldProps { + axis: 0 | 1 | 2; + label: string; + value: number; + onCommit: (axis: 0 | 1 | 2, value: number) => void; +} + +function EditorScaleField({ + axis, + label, + onCommit, + value, +}: EditorScaleFieldProps): React.JSX.Element { + const [draftValue, setDraftValue] = useState(() => + String(Number(value.toFixed(4))), + ); + + const commitDraftValue = (): void => { + const nextValue = Number(draftValue); + if (!draftValue.trim() || Number.isNaN(nextValue)) { + setDraftValue(String(Number(value.toFixed(4)))); + return; + } + + onCommit(axis, nextValue); + }; + + return ( + + ); +} + export function EditorControls({ transformMode, onTransformModeChange, selectedNodeIndex, + selectedNodeIndexes, mapNodes, nodesCount, selectedNodeName, + selectedNodeScale, + lockTerrainSelection, + onLockTerrainSelectionChange, isSelectionLocked, onSelectionLockToggle, onClearSelection, + snapToTerrain, + onSnapToTerrainToggle, + onSnapAllToTerrain, + newNodeName, + onNewNodeNameChange, + onAddNode, + onDeleteSelectedNode, + onSelectedScaleChange, undoCount, redoCount, onUndo, onRedo, + cameraActionLabel, + onCameraAction, onExportJson, onSaveToServer, onPlayerMode, @@ -105,6 +185,10 @@ export function EditorControls({ }: EditorControlsProps): React.JSX.Element { const viewModeLabel = isPlayerMode ? "View locked" : "Lock view"; const jsonPreview = getJsonPreview(mapNodes, selectedNodeIndex); + const selectedNode = + selectedNodeIndex !== null ? mapNodes[selectedNodeIndex] : null; + const selectionCount = selectedNodeIndexes.length; + const transformValues = getTransformValues(selectedNode ?? null); return ( <> @@ -155,7 +239,10 @@ export function EditorControls({ aria-pressed={transformMode === mode} >